start working on custom chat handlers

This commit is contained in:
2024-05-29 00:28:17 +03:00
parent 920148e05b
commit 621ce7fbce
7 changed files with 154 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>TelegramBot.CustomChatAddOns</AssemblyName>
<RootNamespace>Kruzya.TelegramBot.CustomChatAddOns</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" />
</ItemGroup>
</Project>