-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFluent.Client.csproj
More file actions
36 lines (32 loc) · 994 Bytes
/
Fluent.Client.csproj
File metadata and controls
36 lines (32 loc) · 994 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0;net8.0;net472;net481</TargetFrameworks>
<Product>Fluent.Client</Product>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageTags>http;client</PackageTags>
</PropertyGroup>
<ItemGroup Condition="'$(GeneratePackageOnBuild)' == 'true'">
<None
Include="$(RepositoryDirectory)/src/Fluent.Client/README.md"
Pack="true"
PackagePath="\README.md"
Visible="True"
/>
</ItemGroup>
<ItemGroup>
<Reference
Include="System.Net.Http"
Condition="'$(TargetFramework)' == 'net472' OR '$(TargetFramework)' == 'net481'"
/>
</ItemGroup>
<ItemGroup>
<PackageReference
Include="System.Text.Json"
VersionOverride="6.0.11"
Condition="'$(TargetFramework)' == 'net472' OR '$(TargetFramework)' == 'net481'"
/>
</ItemGroup>
<ItemGroup>
<Using Include="System.Diagnostics.CodeAnalysis" />
</ItemGroup>
</Project>