19 lines
680 B
XML
19 lines
680 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PublishAot>true</PublishAot>
|
|
<AssemblyName>mcp-stdio-server</AssemblyName>
|
|
<Description>Example MCP server using stdio transport (MCP 2025-06-18)</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.*" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.*" />
|
|
<PackageReference Include="ModelContextProtocol" Version="1.*-*" />
|
|
</ItemGroup>
|
|
|
|
</Project> |