2025-07-24 23:19:59 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2025-08-16 13:13:34 +04:00
|
|
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
|
|
|
<PackageProjectUrl></PackageProjectUrl>
|
|
|
|
|
<Title>Telegrator : Telegram.Bot mediator framework</Title>
|
|
|
|
|
<PackageIcon>telegrator_nuget.png</PackageIcon>
|
|
|
|
|
<RepositoryUrl>https://github.com/Rikitav/Telegrator</RepositoryUrl>
|
|
|
|
|
<PackageTags>telegram;bot;mediator;attributes;aspect;hosting;host;framework;easy;simple;handlers</PackageTags>
|
|
|
|
|
<EnableNETAnalyzers>True</EnableNETAnalyzers>
|
|
|
|
|
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
|
|
|
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
|
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
2025-08-19 06:38:56 +04:00
|
|
|
<Version>1.15.4</Version>
|
2025-07-24 23:19:59 +04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Telegrator.Hosting\Telegrator.Hosting.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-07-28 20:35:48 +04:00
|
|
|
<None Include="..\LICENSE">
|
|
|
|
|
<Pack>True</Pack>
|
|
|
|
|
<PackagePath>\</PackagePath>
|
|
|
|
|
</None>
|
|
|
|
|
<None Include="..\resources\telegrator_nuget.png">
|
|
|
|
|
<Pack>True</Pack>
|
|
|
|
|
<PackagePath>\</PackagePath>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="README.md">
|
|
|
|
|
<Pack>True</Pack>
|
|
|
|
|
<PackagePath>\</PackagePath>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Telegram.Bot.AspNetCore" Version="22.5.0" />
|
2025-07-24 23:19:59 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|