Files
Telegrator/src/Telegrator/Telegrator.csproj
T

50 lines
2.0 KiB
XML
Raw Normal View History

2025-07-24 23:19:59 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2026-03-09 13:10:49 +04:00
<TargetFramework>netstandard2.0</TargetFramework>
2025-07-24 23:19:59 +04:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2026-03-06 23:19:24 +04:00
<LangVersion>latest</LangVersion>
<BaseOutputPath>..\..\bin</BaseOutputPath>
<DocumentationFile>..\..\docs\$(AssemblyName).xml</DocumentationFile>
2025-08-16 13:13:34 +04:00
2025-07-24 23:19:59 +04:00
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
2025-08-16 13:13:34 +04:00
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
2025-07-24 23:19:59 +04:00
<Title>Telegrator : Telegram.Bot mediator framework</Title>
<Version>1.16.9</Version>
2026-03-06 23:19:24 +04:00
<Authors>Rikitav Tim4ik</Authors>
<Company>Rikitav Tim4ik</Company>
2025-07-24 23:19:59 +04:00
<RepositoryUrl>https://github.com/Rikitav/Telegrator</RepositoryUrl>
<PackageTags>telegram;bot;mediator;attributes;aspect;hosting;host;framework;easy;simple;handlers</PackageTags>
2026-03-06 20:16:30 +04:00
<PackageIcon>telegrator_nuget.png</PackageIcon>
2025-08-16 13:13:34 +04:00
<PackageReadmeFile>README.md</PackageReadmeFile>
2025-07-24 23:19:59 +04:00
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<UserSecretsId>b78bc62d-e49f-4ef0-b2de-ff4ceb3971af</UserSecretsId>
2025-07-24 23:19:59 +04:00
</PropertyGroup>
<ItemGroup>
2026-03-06 21:17:04 +04:00
<None Include="..\..\LICENSE" Pack="True" PackagePath="\" />
<None Include="..\..\README.md" Pack="True" PackagePath="\" />
<None Include="..\..\resources\telegrator_nuget.png" Pack="True" PackagePath="\" />
2025-07-24 23:19:59 +04:00
</ItemGroup>
<ItemGroup>
<PackageReference Include="Telegram.Bot" Version="22.9.6.1" />
<PackageReference Include="System.Threading.Channels" Version="10.0.7" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="10.0.7" />
2025-07-24 23:19:59 +04:00
</ItemGroup>
2025-08-16 13:13:34 +04:00
<ItemGroup>
<None Include="..\Telegrator.Analyzers\bin\$(Configuration)\netstandard2.0\Telegrator.Analyzers.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
</ItemGroup>
2025-08-16 13:13:34 +04:00
<ItemGroup>
2026-03-06 21:17:04 +04:00
<ProjectReference Include="..\..\dev\Telegrator.RoslynGenerators\Telegrator.RoslynGenerators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
2025-07-24 23:19:59 +04:00
</ItemGroup>
</Project>