|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>net8.0</TargetFramework> |
| 4 | + <TargetFrameworks>net9.0;net8.0;net7.0;net6.0;</TargetFrameworks> |
| 5 | + <LangVersion>12.0</LangVersion> |
| 6 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 7 | + <PackageId>TgBotPlay.WebAPI</PackageId> |
| 8 | + <Authors>Mohammad Mahdi Nazari</Authors> |
| 9 | + <Company>IPdotSetAF</Company> |
| 10 | + <Description>A comprehensive WebAPI integration library for Telegram Bot development with support for both polling and webhook modes, health checks, and flexible configuration options.</Description> |
| 11 | + <PackageProjectUrl>https://github.com/IPdotSetAF/TgBotPlay.WebAPI</PackageProjectUrl> |
| 12 | + <RepositoryUrl>https://github.com/IPdotSetAF/TgBotPlay.WebAPI</RepositoryUrl> |
| 13 | + <RepositoryType>git</RepositoryType> |
| 14 | + <PackageLicenseExpression>LGPL-2.1-or-later</PackageLicenseExpression> |
| 15 | + <PackageTags>telegram;bot;webapi;aspnetcore;polling;webhook</PackageTags> |
| 16 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 17 | + <PackageIcon>logo.jpg</PackageIcon> |
| 18 | + <Copyright>IPdotSetAF © 2025</Copyright> |
| 19 | + <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
| 20 | + <IncludeSymbols>true</IncludeSymbols> |
| 21 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 22 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 23 | + <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(PackageId).xml</DocumentationFile> |
| 24 | + <NoWarn>$(NoWarn);1591</NoWarn> |
| 25 | + </PropertyGroup> |
| 26 | + |
| 27 | + <PropertyGroup> |
5 | 28 | <ImplicitUsings>enable</ImplicitUsings> |
6 | 29 | <Nullable>enable</Nullable> |
7 | 30 | </PropertyGroup> |
|
10 | 33 | <PackageReference Include="Telegram.Bot.AspNetCore" Version="22.*" /> |
11 | 34 | </ItemGroup> |
12 | 35 |
|
| 36 | + <ItemGroup> |
| 37 | + <None Include="../../README.md" Pack="true" PackagePath="\" /> |
| 38 | + <None Include="../../logo/logo.jpg" Pack="true" PackagePath="\" /> |
| 39 | + </ItemGroup> |
| 40 | + |
13 | 41 | </Project> |
0 commit comments