2018-06-29 19:52:40 +02:00
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
using System.Resources;
|
|
|
|
|
|
|
|
|
|
|
|
[assembly: AssemblyCompany("Umbraco")]
|
2019-02-05 13:43:04 +01:00
|
|
|
|
[assembly: AssemblyCopyright("Copyright © Umbraco 2019")]
|
2018-06-29 19:52:40 +02:00
|
|
|
|
[assembly: AssemblyTrademark("")]
|
|
|
|
|
|
[assembly: AssemblyCulture("")]
|
|
|
|
|
|
|
|
|
|
|
|
[assembly: NeutralResourcesLanguage("en-US")]
|
|
|
|
|
|
|
|
|
|
|
|
// versions
|
|
|
|
|
|
// read https://stackoverflow.com/questions/64602/what-are-differences-between-assemblyversion-assemblyfileversion-and-assemblyin
|
2018-05-15 15:15:37 +02:00
|
|
|
|
|
|
|
|
|
|
// note: do NOT change anything here manually, use the build scripts
|
2018-06-29 19:52:40 +02:00
|
|
|
|
|
|
|
|
|
|
// this is the ONLY ONE the CLR cares about for compatibility
|
|
|
|
|
|
// should change ONLY when "hard" breaking compatibility (manual change)
|
|
|
|
|
|
[assembly: AssemblyVersion("8.0.0")]
|
|
|
|
|
|
|
|
|
|
|
|
// these are FYI and changed automatically
|
2019-02-23 14:21:23 +01:00
|
|
|
|
[assembly: AssemblyFileVersion("8.1.0")]
|
|
|
|
|
|
[assembly: AssemblyInformationalVersion("8.1.0")]
|