BotSharp/tests/BotSharp.Plugin.PizzaBot/BotSharp.Plugin.PizzaBot.csproj

21 lines
664 B
XML
Raw Normal View History

2023-08-30 22:40:45 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>$(LangVersion)</LangVersion>
2023-09-21 15:10:24 +00:00
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
<OutputPath>..\..\packages</OutputPath>
2023-08-30 22:40:45 +00:00
</PropertyGroup>
2023-09-21 15:10:24 +00:00
<ItemGroup Condition="$(SolutionName)==PizzaBot">
<PackageReference Include="BotSharp.Core" Version="$(BotSharpVersion)" />
</ItemGroup>
2023-08-30 22:40:45 +00:00
<ItemGroup>
2023-09-21 15:10:24 +00:00
<ProjectReference Include="..\..\src\Infrastructure\BotSharp.Core\BotSharp.Core.csproj" />
2023-08-30 22:40:45 +00:00
</ItemGroup>
</Project>