forked from zapadi/redmine-net-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
39 lines (32 loc) · 1.73 KB
/
Directory.Build.props
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
<Project>
<Import Project="version.props" />
<PropertyGroup Label="Package">
<Authors>Adrian Popescu</Authors>
<Description>Redmine Api is a .NET rest client for Redmine.</Description>
<Company>p.adi</Company>
<Copyright>Adrian Popescu, 2011 - $([System.DateTime]::Now.Year.ToString()) </Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageId Condition="'$(Sign)' == '' OR '$(Sign)' == 'false'">redmine-api</PackageId>
<PackageId Condition="'$(Sign)' == 'true'">redmine-api-signed</PackageId>
<PackageIconUrl>https://raw.githubusercontent.com/zapadi/redmine-net-api/master/logo.png</PackageIconUrl>
<PackageIcon>logo.png</PackageIcon>
<PackageLicense>LICENSE</PackageLicense>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/zapadi/redmine-net-api</PackageProjectUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageTags>Redmine; REST; API; Client; .NET; Adrian Popescu; </PackageTags>
<Product>Redmine .NET API Client</Product>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/zapadi/redmine-net-api</RepositoryUrl>
<Summary>...</Summary>
<Title>Redmine .NET API Client</Title>
</PropertyGroup>
<PropertyGroup>
<!-- <DebugType>embedded</DebugType>-->
<!-- <NoPackageAnalysis>true</NoPackageAnalysis>-->
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageOutputPath>$(SolutionDir)/artifacts</PackageOutputPath>
</PropertyGroup>
<Import Project="signing.props" />
<Import Project="releasenotes.props" />
</Project>