updated readmes; bumped nuget version

This commit is contained in:
Charlie Kindel
2020-10-01 09:23:38 -07:00
parent 0c966e661c
commit dd92a07fb0
6 changed files with 89 additions and 51 deletions

View File

@@ -2,16 +2,21 @@
<PropertyGroup>
<!--
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.
This file determines version info for Terminal.Gui
- Uses this guidance: https://docs.microsoft.com/en-us/dotnet/standard/library-guidance/versioning
- Use major.minor.build.revision
- Version
- Used for Nuget. Changing it will cause a new nuget package to be generated when a PR is merged to master as part of CI/CD.
- Version should be of the form major.minor.build[-pre].revision where [-pre] indicates it's a pre-release.
- Miguel can hide defunct/old nuget packages.
- AssemblyVersion & FileVersion are for the assembly.
- Use major.minor.build.revision - revision is the same as used in Version
e.g. If AssemblyVersion is 1.2.3.4, Version could be EITHER 1.2.3.4 or 1.2.3-pre.4 depending on whether it's a pre-release or not.
-->
<Version>1.0.0-pre.1</Version>
<AssemblyVersion>1.0.0.1</AssemblyVersion>
<FileVersion>1.0.0.1</FileVersion>
<Version>1.0.0-pre.2</Version>
<AssemblyVersion>1.0.0.2</AssemblyVersion>
<FileVersion>1.0.0.2</FileVersion>
<Authors>Miguel de Icaza, Charlie Kindel (@tig), @BDisp</Authors>
</PropertyGroup>