2023-11-12 09:12:34 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.SemanticKernel" Version="1.0.0-beta6" />
|
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>
|
|
|
|
|
<InternalsVisibleTo Include="BotSharp.Plugin.SemanticKernel.UnitTests"/>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-11-12 09:12:34 +00:00
|
|
|
</Project>
|