-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDirectory.build.props
38 lines (35 loc) · 1.77 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
<Project>
<PropertyGroup>
<Product>$(AssemblyName) ($(TargetFramework))</Product>
<LangVersion>latest</LangVersion>
<DefaultLanguage>en-US</DefaultLanguage>
<Authors>Dan Siegel</Authors>
<Copyright>© $([System.DateTime]::Now.Year) Dan Siegel</Copyright>
<PackageProjectUrl>ProjectUrlProperty</PackageProjectUrl>
<RepositoryUrl>RepositoryUrlProperty</RepositoryUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
<!-- Root control Version Prefix -->
<VersionPrefix>1.0.0</VersionPrefix>
</PropertyGroup>
<!-- Enables Support for Debugging with UWP -->
<PropertyGroup Condition=" $(TargetFramework.StartsWith('netstandard')) And '$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<!-- CI Helpers -->
<PropertyGroup>
<PackageOutputPath>$([System.IO.Path]::Combine($(MSBuildThisFileDirectory),'Artifacts'))</PackageOutputPath>
<PackageOutputPath Condition=" $(BUILD_ARTIFACTSTAGINGDIRECTORY) != '' ">$(BUILD_ARTIFACTSTAGINGDIRECTORY)</PackageOutputPath>
<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>
<XamarinAndroidSupportSkipVerifyVersions>true</XamarinAndroidSupportSkipVerifyVersions>
</PropertyGroup>
</Project>