2025-03-19 03:07:31 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2025-02-26 04:14:37 +00:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<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" />
|
2025-03-19 03:07:31 +00:00
|
|
|
<PackageReference Include="System.Net.ServerSentEvents" />
|
2025-03-18 10:43:31 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2025-03-21 05:14:19 +00:00
|
|
|
<ProjectReference Include="..\..\..\Ai4c\mcpcsharp-sdk\src\ModelContextProtocol\ModelContextProtocol.csproj" />
|
2025-02-26 04:14:37 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|