-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFluentHttpClient.csproj
More file actions
57 lines (50 loc) · 2.54 KB
/
Copy pathFluentHttpClient.csproj
File metadata and controls
57 lines (50 loc) · 2.54 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
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0;net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<AnalysisLevel>latest</AnalysisLevel>
<PackageId>FluentHttpClient</PackageId>
<Description>Fluent extensions for HttpClient.</Description>
<PackageTags>fluent httpclient rest http api web client</PackageTags>
<Authors>Scott Offen</Authors>
<Copyright>© 2021 - $([System.DateTime]::Now.ToString('yyyy')) Scott Offen</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/scottoffen/fluenthttpclient</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://scottoffen.github.io/fluenthttpclient/</PackageProjectUrl>
<PackageIcon>fluenthttpclient.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<EnablePackageValidation>true</EnablePackageValidation>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IsAotCompatible>true</IsAotCompatible>
<PublishAot>false</PublishAot>
<TrimMode>link</TrimMode>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>FluentHttpClient.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Text.Json" Version="[4.6.0,)" PrivateAssets="All" />
<PackageReference Include="System.Text.Encodings.Web" Version="[4.7.2,)" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
<PackageReference Include="System.Text.Json" Version="[6.0.10,)" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\fluenthttpclient.png" Pack="true" PackagePath="\" />
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="FluentHttpClient.snk" />
</ItemGroup>
</Project>