This repository has been archived by the owner on Jul 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Directory.build.props
42 lines (38 loc) · 2.18 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
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Product>$(AssemblyName) ($(TargetFramework))</Product>
<DefaultLanguage>en-US</DefaultLanguage>
<Authors>Dan Siegel</Authors>
<Copyright>© $([System.DateTime]::Now.Year) Dan Siegel</Copyright>
<PackageIconUrl>http://prismlibrary.github.io/images/prism-logo-graphic-128.png</PackageIconUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/dansiegel/Prism.Plugin.PageDialogs/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/dansiegel/Prism.Plugin.PageDialogs</PackageProjectUrl>
<RepositoryUrl>https://github.com/dansiegel/Prism.Plugin.PageDialogs.git</RepositoryUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
<!-- Root control Version Prefix -->
<VersionPrefix>1.1.0</VersionPrefix>
</PropertyGroup>
<!-- CI Helpers -->
<PropertyGroup>
<PackageOutputPath>$(MSBuildThisFileDirectory)/Artifacts</PackageOutputPath>
<PackageOutputPath Condition=" $(BUILD_ARTIFACTSTAGINGDIRECTORY) != '' ">$(BUILD_ARTIFACTSTAGINGDIRECTORY)</PackageOutputPath>
<IsPackable>true</IsPackable>
<IsPackable Condition=" $(ProjectName.Contains('Sample')) ">false</IsPackable>
<IsPackable Condition=" $(ProjectName.Contains('Test')) ">false</IsPackable>
<GeneratePackageOnBuild>$(IsPackable)</GeneratePackageOnBuild>
<IS_PREVIEW Condition=" $(IS_PREVIEW) == '' ">false</IS_PREVIEW>
<IS_RELEASE Condition=" $(IS_RELEASE) == '' ">false</IS_RELEASE>
<VersionPrefix Condition=" $(BUILD_BUILDNUMBER) != '' ">$(VersionPrefix).$(BUILD_BUILDNUMBER)</VersionPrefix>
<VersionSuffix>ci</VersionSuffix>
<VersionSuffix Condition=" $(IS_PREVIEW) ">pre</VersionSuffix>
<VersionSuffix Condition=" $(IS_RELEASE) "></VersionSuffix>
</PropertyGroup>
<PropertyGroup>
<!-- Nuget source link -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
</Project>