Skip to content

Commit 271b0e1

Browse files
Fix Nuget package name for MCP server (#18880)
###### Microsoft Reviewers: [Open in CodeFlow](https://microsoft.github.io/open-pr/?codeflow=https://github.com/Azure/bicep/pull/18880)
1 parent a2b8290 commit 271b0e1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/Bicep.McpServer/Bicep.McpServer.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net10.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
7+
<AssemblyName>Azure.Bicep.McpServer</AssemblyName>
8+
<RootNamespace>Bicep.McpServer</RootNamespace>
79
<Nullable>enable</Nullable>
810
<EnableNuget>true</EnableNuget>
911
<InvariantGlobalization>true</InvariantGlobalization>

src/vscode-bicep/src/language/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { bicepLanguageId } from "./constants";
1212

1313
const dotnetRuntimeVersion = "10.0";
1414
const packagedServerPath = "bicepLanguageServer/Bicep.LangServer.dll";
15-
const packagedMcpServerPath = "bicepMcpServer/Bicep.McpServer.dll";
15+
const packagedMcpServerPath = "bicepMcpServer/Azure.Bicep.McpServer.dll";
1616
const extensionId = "ms-azuretools.vscode-bicep";
1717
const dotnetAcquisitionExtensionSetting = "dotnetAcquisitionExtension";
1818
const existingDotnetPathSetting = "existingDotnetPath";

0 commit comments

Comments
 (0)