-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZibStack.NET.Aop.Polly.csproj
More file actions
29 lines (24 loc) · 1.24 KB
/
ZibStack.NET.Aop.Polly.csproj
File metadata and controls
29 lines (24 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageId>ZibStack.NET.Aop.Polly</PackageId>
<Description>Polly-based resilience aspects for ZibStack.NET.Aop — [PollyRetry] and [HttpRetry] with exponential backoff, exception filtering, named pipelines, and transient HTTP error handling.</Description>
<Authors>$(Authors)</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/MistyKuu/ZibStack.NET</PackageProjectUrl>
<RepositoryUrl>https://github.com/MistyKuu/ZibStack.NET</RepositoryUrl>
<PackageTags>aop;polly;retry;resilience;http;transient;source-generator</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ZibStack.NET.Aop.Abstractions\ZibStack.NET.Aop.Abstractions.csproj" />
<PackageReference Include="Polly.Core" Version="8.5.2" />
<PackageReference Include="Polly.RateLimiting" Version="8.5.2" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>