Directory.Build.props 1.1 KB

1234567891011121314151617181920212223
  1. <Project>
  2. <PropertyGroup>
  3. <!--
  4. This file determines version info for Terminal.Gui
  5. - Uses this guidance: https://docs.microsoft.com/en-us/dotnet/standard/library-guidance/versioning
  6. - Use major.minor.build.revision
  7. - Version
  8. - 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.
  9. - Version should be of the form major.minor.build[-pre].revision where [-pre] indicates it's a pre-release.
  10. - Miguel can hide defunct/old nuget packages.
  11. - AssemblyVersion & FileVersion are for the assembly.
  12. - Use major.minor.build.revision - revision is the same as used in Version
  13. 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.
  14. -->
  15. <Version>1.0.0-pre.6</Version>
  16. <AssemblyVersion>1.0.0.6</AssemblyVersion>
  17. <FileVersion>1.0.0.6</FileVersion>
  18. <Authors>Miguel de Icaza, Charlie Kindel (@tig), @BDisp</Authors>
  19. </PropertyGroup>
  20. </Project>