Move fun commands to separate module.

This commit is contained in:
West14
2022-01-02 21:56:14 +02:00
parent d2077df114
commit 8d3e24295b
10 changed files with 126 additions and 93 deletions
@@ -0,0 +1,22 @@
<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>