2023-11-16 13:12:33 +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>
|
|
|
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
2023-11-12 09:12:34 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-11-16 13:12:33 +00:00
|
|
|
|
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.0.0-beta7" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Memory" Version="1.0.0-beta7" />
|
2023-11-12 14:04:00 +00:00
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Validation" Version="17.6.11" />
|
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>
|
|
|
|
|
|
|
2023-11-12 09:12:34 +00:00
|
|
|
|
</Project>
|