Files
Umbraco-CMS/src/SolutionInfo.cs

20 lines
743 B
C#
Raw Normal View History

using System.Reflection;
using System.Resources;
[assembly: AssemblyCompany("Umbraco")]
2017-06-27 16:35:06 +02:00
[assembly: AssemblyCopyright("Copyright © Umbraco 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
2017-05-19 21:47:41 +02:00
[assembly: NeutralResourcesLanguage("en-US")]
2017-06-28 19:25:29 +02:00
// versions
// read https://stackoverflow.com/questions/64602/what-are-differences-between-assemblyversion-assemblyfileversion-and-assemblyin
// this is the ONLY ONE the CLR cares about for compatibility
// should change ONLY when "hard" breaking compatibility (manual change)
2017-06-27 16:35:06 +02:00
[assembly: AssemblyVersion("8.0.0")]
2017-06-28 19:25:29 +02:00
// these are FYI and changed automatically
[assembly: AssemblyFileVersion("8.0.0")]
[assembly: AssemblyInformationalVersion("8.0.0-alpha0021")]