b01d576564
* Changed "FilterAnnotation{T}" to work withou type specific sub-classes
* Changed interfaces "IUpdateRouter" and "IHandlersProvider" to match their names more correctly. Before filter validating was on providers, now its router works AS ITS SHOULD BE
42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<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>
|
|
<Version>1.0.3</Version>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.5" />
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\LICENSE">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
<None Include="..\resources\telegrator_nuget.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Telegrator\Telegrator.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|