2025-02-26 04:14:37 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<LangVersion>12.0</LangVersion>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2025-03-18 10:43:31 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" />
|
|
|
|
|
<PackageReference Include="Serilog.Extensions.Logging" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.File" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\..\mcpdotnet\src\mcpdotnet\mcpdotnet.csproj" />
|
2025-02-26 04:14:37 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|