You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
775 B
XML
23 lines
775 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.AI" Version="9.6.0" />
|
|
<PackageReference Include="Microsoft.SemanticKernel" Version="1.58.0" />
|
|
<PackageReference Include="Microsoft.SemanticKernel.Connectors.Ollama" Version="1.58.0-alpha" />
|
|
<PackageReference Include="OllamaSharp" Version="5.2.3" />
|
|
<PackageReference Include="OllamaSharp.ModelContextProtocol" Version="5.2.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\McpStudy.Core\McpStudy.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|