2023-11-12 14:04:00 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-02-08 23:22:43 +00:00
|
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
2023-11-12 14:04:00 +00:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2025-03-01 20:06:26 +00:00
|
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
2023-11-12 14:04:00 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-03-01 20:06:26 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" />
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
|
|
|
<PackageReference Include="Microsoft.SemanticKernel" />
|
|
|
|
|
<PackageReference Include="Moq" />
|
|
|
|
|
<PackageReference Include="xunit" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio">
|
2023-11-12 14:04:00 +00:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2025-03-01 20:06:26 +00:00
|
|
|
<PackageReference Include="coverlet.collector">
|
2023-11-12 14:04:00 +00:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\Plugins\BotSharp.Plugin.SemanticKernel\BotSharp.Plugin.SemanticKernel.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|