Files
McpServerCSharp/ConsoleEchoMcpServer/ConsoleEchoMcpServer.csproj

16 lines
463 B
XML
Raw Permalink Normal View History

2025-11-13 09:48:15 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
2025-11-13 16:07:34 +08:00
<TargetFramework>net9.0</TargetFramework>
2025-11-13 09:48:15 +08:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
2025-11-13 16:07:34 +08:00
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0" />
2025-11-13 09:48:15 +08:00
<PackageReference Include="ModelContextProtocol" Version="0.4.0-preview.3" />
</ItemGroup>
</Project>