Files
Telegrator/src/Telegrator.Hosting/Telegrator.Hosting.csproj
T

45 lines
1.6 KiB
XML
Raw Normal View History

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</Title>
<Version>1.16.9</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-07 23:22:40 +04:00
<ItemGroup>
<ProjectReference Include="..\Telegrator\Telegrator.csproj" />
</ItemGroup>
2025-07-24 23:19:59 +04:00
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.7" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.7" />
2025-07-24 23:19:59 +04:00
</ItemGroup>
2026-03-06 20:16:30 +04:00
<ItemGroup>
2026-03-07 23:22:40 +04:00
<None Include=".\README.md" Pack="True" PackagePath="\" />
2026-03-06 21:17:04 +04:00
<None Include="..\..\LICENSE" Pack="True" PackagePath="\" />
<None Include="..\..\resources\telegrator_nuget.png" Pack="True" PackagePath="\" />
2026-03-06 20:16:30 +04:00
</ItemGroup>
2025-07-24 23:19:59 +04:00
</Project>