-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMX.Api.Client.csproj
More file actions
44 lines (40 loc) · 2.24 KB
/
MX.Api.Client.csproj
File metadata and controls
44 lines (40 loc) · 2.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
<RootNamespace>MX.Api.Client</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>MX.Api.Client</PackageId>
<Authors>Fraser Molyneux</Authors>
<Company>Molyneux.IO</Company>
<Product>Molyneux.IO API Abstractions</Product>
<Title>API Abstractions - REST Client Implementation</Title>
<Description>Resilient, authenticated REST API client library for modern .NET (net9/net10) applications. Provides base classes, token management, authentication, retry policies, and standardized error handling for building robust API clients.</Description>
<PackageProjectUrl>https://github.com/frasermolyneux/api-client-abstractions</PackageProjectUrl>
<RepositoryUrl>https://github.com/frasermolyneux/api-client-abstractions</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.17.1" />
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="Polly" Version="8.6.5" />
<PackageReference Include="RestSharp" Version="113.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MX.Api.Abstractions\MX.Api.Abstractions.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>