-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLM-Kit.NET.Integrations.SemanticKernel_dev.csproj
More file actions
39 lines (31 loc) · 1.33 KB
/
LM-Kit.NET.Integrations.SemanticKernel_dev.csproj
File metadata and controls
39 lines (31 loc) · 1.33 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net8.0;net9.0;net10.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Version>2026.1.1</Version>
<RootNamespace>LMKit.Integrations.SemanticKernel</RootNamespace>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Configurations>Debug;Release</Configurations>
<SignAssembly>True</SignAssembly>
<AssemblyName>LM-Kit.NET.Integrations.SemanticKernel</AssemblyName>
<Nullable>enable</Nullable>
<AssemblyOriginatorKeyFile>LMKit.Integrations.SemanticKernel.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<SignAssembly>False</SignAssembly>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.68.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Memory" Version="4.6.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LM-Kit.NET\LM-Kit.NET.csproj" />
</ItemGroup>
</Project>