2025-07-24 23:19:59 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2026-03-06 20:16:30 +04:00
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
2025-07-24 23:19:59 +04:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2026-03-06 20:16:30 +04:00
|
|
|
<LangVersion>latest</LangVersion>
|
2026-03-06 23:19:24 +04:00
|
|
|
<RootNamespace>Telegrator</RootNamespace>
|
2026-03-06 20:16:30 +04:00
|
|
|
<BaseOutputPath>..\..\bin</BaseOutputPath>
|
|
|
|
|
<DocumentationFile>..\..\docs\$(AssemblyName).xml</DocumentationFile>
|
|
|
|
|
|
|
|
|
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
|
|
|
<EnableNETAnalyzers>True</EnableNETAnalyzers>
|
|
|
|
|
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
|
|
|
|
|
|
|
|
|
|
<Title>Telegrator.Hosting.Web</Title>
|
2026-03-09 13:10:49 +04:00
|
|
|
<Version>1.16.5</Version>
|
2026-03-06 20:16:30 +04:00
|
|
|
<Authors>Rikitav Tim4ik</Authors>
|
|
|
|
|
<Company>Rikitav Tim4ik</Company>
|
|
|
|
|
<RepositoryUrl>https://github.com/Rikitav/Telegrator</RepositoryUrl>
|
|
|
|
|
<PackageTags>telegram;bot;mediator;attributes;aspect;hosting;host;framework;easy;simple;handlers</PackageTags>
|
|
|
|
|
|
|
|
|
|
<PackageIcon>telegrator_nuget.png</PackageIcon>
|
|
|
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
|
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
2025-07-24 23:19:59 +04:00
|
|
|
</PropertyGroup>
|
2026-03-06 20:16:30 +04:00
|
|
|
|
2025-07-24 23:19:59 +04:00
|
|
|
<ItemGroup>
|
2026-03-06 20:16:30 +04:00
|
|
|
<ProjectReference Include="..\Telegrator.Hosting\Telegrator.Hosting.csproj" />
|
2025-07-28 20:35:48 +04:00
|
|
|
</ItemGroup>
|
2026-03-07 23:22:40 +04:00
|
|
|
|
2025-07-28 20:35:48 +04:00
|
|
|
<ItemGroup>
|
|
|
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
2026-03-07 23:22:40 +04:00
|
|
|
<PackageReference Include="Telegram.Bot.AspNetCore" Version="22.5.0" />
|
2025-07-28 20:35:48 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-03-07 23:22:40 +04:00
|
|
|
<None Include=".\README.md" Pack="True" PackagePath="\" />
|
|
|
|
|
<None Include="..\..\LICENSE" Pack="True" PackagePath="\" />
|
|
|
|
|
<None Include="..\..\resources\telegrator_nuget.png" Pack="True" PackagePath="\" />
|
2025-07-24 23:19:59 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|