[debug-tools] Module init.

This commit is contained in:
West14
2022-03-17 17:35:56 +02:00
parent c1008e1040
commit 7a1d34d040
5 changed files with 71 additions and 2 deletions
+18
View File
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>TelegramBot.DebugTools</AssemblyName>
<RootNamespace>West.TelegramBot.DebugTools</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Core\Core.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Delete Files="$(OutDir)\TelegramBot.dll" />
</Target>
</Project>