Skip to content

Commit 7ee723f

Browse files
committed
Update namespaces to Microsoft.Mcp.Core
1 parent 6cae57c commit 7ee723f

File tree

400 files changed

+708
-434
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

400 files changed

+708
-434
lines changed

AzureMcp.sln

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 17
4-
VisualStudioVersion = 17.0.31903.59
3+
# Visual Studio Version 18
4+
VisualStudioVersion = 18.0.11205.157 d18.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "core", "core", "{FBF56CC3-7AE6-AD2D-3F14-7F97FD322CD6}"
77
EndProject
@@ -558,6 +558,7 @@ EndProject
558558
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{50124EEC-97B0-320E-80D4-8464D7692B22}"
559559
EndProject
560560
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.Mcp.Tools.AzureAIBestPractices.UnitTests", "tools\Azure.Mcp.Tools.AzureAIBestPractices\tests\Azure.Mcp.Tools.AzureAIBestPractices.UnitTests\Azure.Mcp.Tools.AzureAIBestPractices.UnitTests.csproj", "{BE8CFF4C-E536-43DB-9D01-001E9A052D37}"
561+
EndProject
561562
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{319B94CD-694C-16E8-9E3A-9577B99158DD}"
562563
EndProject
563564
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.Mcp.Server.UnitTests", "servers\Azure.Mcp.Server\tests\Azure.Mcp.Server.UnitTests\Azure.Mcp.Server.UnitTests.csproj", "{ADF14627-FCB5-4BD3-B65F-DDCC3A3F727C}"

core/Azure.Mcp.Core/src/Areas/Group/Commands/GroupListCommand.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
// Licensed under the MIT License.
33

44
using Azure.Mcp.Core.Areas.Group.Options;
5-
using Azure.Mcp.Core.Commands;
65
using Azure.Mcp.Core.Commands.Subscription;
76
using Azure.Mcp.Core.Models.Option;
87
using Azure.Mcp.Core.Models.ResourceGroup;
98
using Azure.Mcp.Core.Services.Azure.ResourceGroup;
109
using Microsoft.Extensions.Logging;
10+
using Microsoft.Mcp.Core.Commands;
11+
using Microsoft.Mcp.Core.Models.Command;
1112

1213
namespace Azure.Mcp.Core.Areas.Group.Commands;
1314

core/Azure.Mcp.Core/src/Areas/Group/GroupSetup.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
// Licensed under the MIT License.
33

44
using Azure.Mcp.Core.Areas.Group.Commands;
5-
using Azure.Mcp.Core.Commands;
65
using Microsoft.Extensions.DependencyInjection;
6+
using Microsoft.Mcp.Core.Areas;
7+
using Microsoft.Mcp.Core.Commands;
78

89
namespace Azure.Mcp.Core.Areas.Group;
910

core/Azure.Mcp.Core/src/Areas/Server/Commands/Discovery/CommandGroupServerProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT License.
33

44
using Azure.Mcp.Core.Areas.Server.Options;
5-
using Azure.Mcp.Core.Commands;
5+
using Microsoft.Mcp.Core.Commands;
66
using ModelContextProtocol.Client;
77

88
namespace Azure.Mcp.Core.Areas.Server.Commands.Discovery;

core/Azure.Mcp.Core/src/Areas/Server/Commands/Discovery/ConsolidatedToolDiscoveryStrategy.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
using System.Reflection;
55
using System.Text.Json;
6-
using Azure.Mcp.Core.Areas;
76
using Azure.Mcp.Core.Areas.Server.Models;
87
using Azure.Mcp.Core.Areas.Server.Options;
98
using Azure.Mcp.Core.Commands;
@@ -12,6 +11,8 @@
1211
using Microsoft.Extensions.DependencyInjection;
1312
using Microsoft.Extensions.Logging;
1413
using Microsoft.Extensions.Options;
14+
using Microsoft.Mcp.Core.Areas;
15+
using Microsoft.Mcp.Core.Commands;
1516

1617
namespace Azure.Mcp.Core.Areas.Server.Commands.Discovery;
1718

core/Azure.Mcp.Core/src/Areas/Server/Commands/Discovery/ConsolidatedToolServerProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT License.
33

44
using Azure.Mcp.Core.Areas.Server.Options;
5-
using Azure.Mcp.Core.Commands;
5+
using Microsoft.Mcp.Core.Commands;
66
using ModelContextProtocol.Client;
77

88
namespace Azure.Mcp.Core.Areas.Server.Commands.Discovery;

core/Azure.Mcp.Core/src/Areas/Server/Commands/Discovery/McpServerMetadata.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33

4-
using Azure.Mcp.Core.Commands;
4+
using Microsoft.Mcp.Core.Commands;
55
using ModelContextProtocol.Client;
66

77
namespace Azure.Mcp.Core.Areas.Server.Commands.Discovery;

core/Azure.Mcp.Core/src/Areas/Server/Commands/Runtime/McpRuntime.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
using System.Text.Json.Nodes;
66
using Azure.Mcp.Core.Areas.Server.Commands.ToolLoading;
77
using Azure.Mcp.Core.Areas.Server.Options;
8-
using Azure.Mcp.Core.Helpers;
98
using Azure.Mcp.Core.Models.Option;
109
using Azure.Mcp.Core.Services.Telemetry;
1110
using Microsoft.Extensions.Logging;
1211
using Microsoft.Extensions.Options;
12+
using Microsoft.Mcp.Core.Commands;
13+
using Microsoft.Mcp.Core.Helpers;
1314
using ModelContextProtocol.Protocol;
1415

1516
namespace Azure.Mcp.Core.Areas.Server.Commands.Runtime;

core/Azure.Mcp.Core/src/Areas/Server/Commands/ServiceInfoCommand.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
using Azure.Mcp.Core.Configuration;
66
using Microsoft.Extensions.Logging;
77
using Microsoft.Extensions.Options;
8+
using Microsoft.Mcp.Core.Commands;
9+
using Microsoft.Mcp.Core.Models.Command;
810

911
namespace Azure.Mcp.Core.Areas.Server.Commands;
1012

core/Azure.Mcp.Core/src/Areas/Server/Commands/ServiceStartCommand.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
using System.Net;
77
using Azure.Mcp.Core.Areas.Server.Models;
88
using Azure.Mcp.Core.Areas.Server.Options;
9-
using Azure.Mcp.Core.Commands;
109
using Azure.Mcp.Core.Helpers;
1110
using Azure.Mcp.Core.Services.Azure;
1211
using Azure.Mcp.Core.Services.Azure.Authentication;
@@ -22,6 +21,9 @@
2221
using Microsoft.Extensions.Logging;
2322
using Microsoft.Extensions.Options;
2423
using Microsoft.Identity.Web;
24+
using Microsoft.Mcp.Core.Commands;
25+
using Microsoft.Mcp.Core.Extensions;
26+
using Microsoft.Mcp.Core.Models.Command;
2527
using OpenTelemetry;
2628
using OpenTelemetry.Logs;
2729
using OpenTelemetry.Metrics;

0 commit comments

Comments
 (0)