Directory.Build.props 722 B

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