4bee73ba26
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
643 B
XML
21 lines
643 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ModelContextProtocol" Version="1.1.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.6" />
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.6" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="appsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|