-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresilient-http-client.csproj
More file actions
27 lines (24 loc) · 1.23 KB
/
Copy pathresilient-http-client.csproj
File metadata and controls
27 lines (24 loc) · 1.23 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>ResilientHttp</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>VukTheBeast.ResilientHttp.Client</PackageId>
<Authors>Vuk Manic</Authors>
<Company>Vuk Manic</Company>
<Description>A small, reusable .NET 8 library that wraps Flurl with Polly-based retry and timeout policies. Designed for SOLID and high cohesion: interface-driven, configurable options, and DI-friendly.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/VukTheBeast/resilient-http-client</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>1.0.0</Version>
<PackageTags>flurl;polly;resilient;http;client</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Flurl.Http" Version="4.0.0" />
<PackageReference Include="Polly" Version="7.2.4" />
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="8.0.8" />
<PackageReference Include="Polly.Contrib.WaitAndRetry" Version="1.1.1" />
</ItemGroup>
</Project>