-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDotNet.RestApi.Client.csproj
More file actions
52 lines (42 loc) · 1.89 KB
/
DotNet.RestApi.Client.csproj
File metadata and controls
52 lines (42 loc) · 1.89 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;netcoreapp3.0;netstandard2.1;</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<Authors>Wallsmedia Ltd</Authors>
<Company>Wallsmedia Ltd</Company>
<Product></Product>
<Description>Dot NET Core REST API simple client.</Description>
<Copyright> $([System.DateTime]::Now.ToString('yyyy')) © Wallsmedia LTD. All rights reserved.</Copyright>
<PackageLicenseUrl></PackageLicenseUrl>
<PackageProjectUrl>https://github.com/Wallsmedia/DotNet.RestApi.Client</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Wallsmedia/DotNet.RestApi.Client.git</RepositoryUrl>
<PackageReleaseNotes>Singed assembly. Release: netstandard2.1;netcoreapp3.0;netcoreapp3.1; includes gzip response support; async extensions;</PackageReleaseNotes>
<PackageTags>rest http client gzip web service restapi restweb</PackageTags>
<Version>3.1.0</Version>
<AssemblyVersion>3.1.0</AssemblyVersion>
<FileVersion>3.1.0</FileVersion>
<OutputType>Library</OutputType>
</PropertyGroup>
<PropertyGroup>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../../build/Key.snk</AssemblyOriginatorKeyFile>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration) == 'Release'">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageOutputPath>../../.nupkgs</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE.txt">
<Visible>false</Visible>
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>