-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCodingWithCalvin.MCPServer.Server.csproj
More file actions
27 lines (23 loc) · 1.09 KB
/
CodingWithCalvin.MCPServer.Server.csproj
File metadata and controls
27 lines (23 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<RootNamespace>CodingWithCalvin.MCPServer.Server</RootNamespace>
<AssemblyName>CodingWithCalvin.MCPServer.Server</AssemblyName>
<PublishSingleFile>true</PublishSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ModelContextProtocol" Version="0.8.0-preview.1" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageReference Include="ModelContextProtocol.AspNetCore" Version="0.8.0-preview.1" />
<PackageReference Include="StreamJsonRpc" Version="2.20.20" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CodingWithCalvin.MCPServer.Shared\CodingWithCalvin.MCPServer.Shared.csproj" />
</ItemGroup>
</Project>