-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathprintnode-net.csproj
More file actions
30 lines (26 loc) · 1.09 KB
/
printnode-net.csproj
File metadata and controls
30 lines (26 loc) · 1.09 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
<RootNamespace>PrintNodeNet</RootNamespace>
<AssemblyName>PrintNodeNet</AssemblyName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>PrintNode.Net</PackageId>
<Authors>Christian Zachariasen</Authors>
<Company>io7 Software A/S</Company>
<Product>PrintNode.Net</Product>
<Description>A C# library for communicating with the PrintNode API</Description>
<Copyright>io7 Software 2016-2021</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/christianz/printnode-net</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<AssemblyVersion>1.1.2.0</AssemblyVersion>
<FileVersion>1.1.2.0</FileVersion>
<Version>1.1.5</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
<Reference Include="System.Net.Http"></Reference>
</ItemGroup>
</Project>