Created
March 23, 2017 17:33
-
-
Save bcnzer/b56c28b9ee95e88e5aa93a12d5abf330 to your computer and use it in GitHub Desktop.
Sample csproj with a version number
This file contains 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> | |
<TargetFramework>netstandard1.4</TargetFramework> | |
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | |
<Description>I entered a really nice description. This will show up later in my build</Description> | |
<Version>1.2.3.4</Version> | |
</PropertyGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment