2022-03-17 17:39:57 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-07-17 02:38:58 +03:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2022-03-17 17:39:57 +02:00
|
|
|
<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>
|