-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathJenkins.Net.csproj
52 lines (52 loc) · 2.42 KB
/
Jenkins.Net.csproj
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>net40;net45;netstandard2.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>JenkinsNET</RootNamespace>
<PackageId>jenkinsnet</PackageId>
<Authors>null511</Authors>
<Description>C# .NET wrapper for Jenkins HTTP/REST API.</Description>
<Copyright>Copyright 2018</Copyright>
<PackageLicenseUrl>https://raw.githubusercontent.com/null511/Jenkins.NET/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>http://github.com/null511/Jenkins.NET</PackageProjectUrl>
<PackageIconUrl>https://github.com/null511/Jenkins.NET/raw/master/media/icon.png</PackageIconUrl>
<RepositoryUrl>http://github.com/null511/Jenkins.NET</RepositoryUrl>
<PackageTags>jenkins .net automation</PackageTags>
<Company>Joshua Miller</Company>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Version>1.0.4</Version>
<FileVersion>1.0.4</FileVersion>
<AssemblyVersion>1.0.4</AssemblyVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'">
<DefineConstants>NETCORE;NETSTANDARD;NETSTANDARD2_0;NET_ASYNC</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net45'">
<DefineConstants>NETFULL;NET45;NET_ASYNC</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net40'">
<DefineConstants>NET40</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net40|AnyCPU'">
<NoWarn>1591;1701;1702</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net40' or '$(TargetFramework)' == 'net45' ">
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Web" />
<Reference Include="System.Xml.Linq" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
</Project>