Created
February 28, 2018 23:49
-
-
Save SimonCropp/cd278223c7a9e3a36c2707b01d4cad5c to your computer and use it in GitHub Desktop.
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> | |
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | |
<Version>2.0</Version> | |
<Version Condition="'$(BUILD_BUILDID)' != ''">$(Version).$(BUILD_BUILDID)</Version> | |
</PropertyGroup> | |
<Target Name="UpdateTFSBuildNumber" BeforeTargets="Build"> | |
<Message Text="##vso[build.updatebuildnumber]$(Version)" Importance="high" /> | |
</Target> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment