2024-05-28 15:45:13 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2023-11-12 09:12:34 +00:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2023-11-13 15:11:49 +00:00
|
|
|
<LangVersion>$(LangVersion)</LangVersion>
|
|
|
|
|
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
|
|
|
|
|
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
|
2024-01-16 17:38:45 +00:00
|
|
|
<GenerateDocumentationFile>$(GeneratePackageOnBuild)</GenerateDocumentationFile>
|
2024-01-22 02:39:42 +00:00
|
|
|
<OutputPath>$(SolutionDir)packages</OutputPath>
|
2023-11-12 09:12:34 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-05-28 15:45:13 +00:00
|
|
|
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.13.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Memory" Version="1.13.0-alpha" />
|
2023-11-19 13:34:13 +00:00
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Validation" Version="17.8.8" />
|
2023-11-12 09:12:34 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-11-12 14:04:00 +00:00
|
|
|
<ItemGroup>
|
2023-11-13 15:11:49 +00:00
|
|
|
<InternalsVisibleTo Include="BotSharp.Plugin.SemanticKernel.UnitTests" />
|
2023-11-12 14:04:00 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-01-30 11:04:22 +00:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="packages\" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-11-12 09:12:34 +00:00
|
|
|
</Project>
|