Created
September 1, 2017 20:26
-
-
Save GeorgDangl/13e025ea12cec5324138557a31d70f97 to your computer and use it in GitHub Desktop.
Project configuration for continuous development NuGet package deployment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<VersionPrefix>1.4.1</VersionPrefix> | |
<VersionSuffix Condition=" '$(GIT_BRANCH)' == 'origin/dev'">build-$(BUILD_NUMBER)</VersionSuffix> | |
<GeneratePackageOnBuild Condition="'$(Configuration)'=='Release'">True</GeneratePackageOnBuild> | |
<Authors>Georg Dangl</Authors> | |
<TargetFramework>netstandard1.3</TargetFramework> | |
<PackageId>Dangl.Common</PackageId> | |
<PackageProjectUrl>https://github.com/GeorgDangl/Dangl.Common</PackageProjectUrl> | |
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.1</NetStandardImplicitPackageVersion> | |
</PropertyGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment