Bläddra i källkod

Merge pull request #925 from tig/pre_versioning

new versioning scheme - see Directory.Build.props
Charlie Kindel 4 år sedan
förälder
incheckning
a694704910
1 ändrade filer med 11 tillägg och 3 borttagningar
  1. 11 3
      Terminal.Gui/Directory.Build.props

+ 11 - 3
Terminal.Gui/Directory.Build.props

@@ -1,9 +1,17 @@
 <Project>
 <Project>
 
 
   <PropertyGroup>
   <PropertyGroup>
-    <Version>0.90.3</Version>
-    <AssemblyVersion>0.90.3</AssemblyVersion>
-    <FileVersion>0.90.3</FileVersion>    
+    <!--
+       Uses this guidance: https://docs.microsoft.com/en-us/dotnet/standard/library-guidance/versioning
+       Use major.minor.build.revision
+       Version 
+          - Used for Nuget it shoudl be major.minor.build[-pre].revision where [-pre] indicates it's a pre-release.
+          - Changing Version will cause a new nuget package to get generated and published when 'master' is updated
+       AssemblyVersion & File Version are for the assembly. 
+    -->
+    <Version>1.0.0-pre.1</Version>
+    <AssemblyVersion>1.0.0.1</AssemblyVersion>
+    <FileVersion>1.0.0.1</FileVersion>    
     <Authors>Miguel de Icaza, Charlie Kindel (@tig), @BDisp</Authors>
     <Authors>Miguel de Icaza, Charlie Kindel (@tig), @BDisp</Authors>
   </PropertyGroup>
   </PropertyGroup>