Skip to content

Instantly share code, notes, and snippets.

@GeorgDangl
Created September 1, 2017 20:26
Show Gist options
  • Save GeorgDangl/13e025ea12cec5324138557a31d70f97 to your computer and use it in GitHub Desktop.
Save GeorgDangl/13e025ea12cec5324138557a31d70f97 to your computer and use it in GitHub Desktop.
Project configuration for continuous development NuGet package deployment
<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