25 lines
849 B
XML
25 lines
849 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<PackageId>BotPages.Telegram</PackageId>
|
|
<Product>BotPages</Product>
|
|
<Version>0.1.0</Version>
|
|
<Authors>FrigaT</Authors>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<Description>Адаптер для Telegram Bot API. Работает поверх BotPages.Core.</Description>
|
|
<Copyright>Copyright © 2025 FrigaT</Copyright>
|
|
<RepositoryUrl>https://git.frigat.duckdns.org/FrigaT/BotPages</RepositoryUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Telegram.Bot" Version="22.7.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\BotPages.Core\BotPages.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|