BotSharp/tests/BotSharp.Plugin.PizzaBot/BotSharp.Plugin.PizzaBot.csproj
2024-01-02 23:07:41 -06:00

31 lines
1 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>$(LangVersion)</LangVersion>
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
<OutputPath>..\..\packages</OutputPath>
</PropertyGroup>
<ItemGroup Condition="$(SolutionName)==PizzaBot">
<PackageReference Include="BotSharp.Core" Version="$(BotSharpVersion)" />
</ItemGroup>
<ItemGroup>
<Compile Remove="documents\**" />
<EmbeddedResource Remove="documents\**" />
<None Remove="documents\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Infrastructure\BotSharp.Core\BotSharp.Core.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy /E /I /D /Y &quot;$(SolutionDir)tests/BotSharp.Plugin.PizzaBot/agents&quot; &quot;$(SolutionDir)src/WebStarter/data/agents&quot;" />
</Target>
</Project>