-
Notifications
You must be signed in to change notification settings - Fork 0
/
SemanticKernelFromLocalToCloud.csproj
27 lines (23 loc) · 1.13 KB
/
SemanticKernelFromLocalToCloud.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.2" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.0-rc.2.24473.5" />
<PackageReference Include="Microsoft.KernelMemory.Abstractions" Version="0.79.241014.2" />
<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.79.241014.2" />
<PackageReference Include="Microsoft.SemanticKernel" Version="1.22.0" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.Google" Version="1.22.0-alpha" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.Ollama" Version="1.22.0-alpha" />
<PackageReference Include="Microsoft.SemanticKernel.Core" Version="1.22.0" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>