Files
telegram-bot/modules/Entertainment/Entertainment.csproj
T

23 lines
694 B
XML
Raw Normal View History

2022-01-02 21:56:14 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<AssemblyName>TelegramBot.Entertainment</AssemblyName>
<RootNamespace>West.Entertainment</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Core\Core.csproj" />
<ProjectReference Include="..\ChatManagement\ChatManagement.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Handler" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Delete Files="$(OutDir)\TelegramBot.dll" />
<Delete Files="$(OutDir)\TelegramBot.ChatManagement.dll" />
</Target>
</Project>