forked from modelsbuilder/ModelsBuilder.Original
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolutionInfo.cs
39 lines (32 loc) · 1.17 KB
/
SolutionInfo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyProduct("Umbraco ModelsBuilder")]
[assembly: AssemblyCompany("Umbraco")]
[assembly: AssemblyCopyright("Copyright © Umbraco HQ 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
// versionning
// nuget/semver: major.minor.patch [-xxx]
// assembly: major.minor.patch.build
// nuget sorts the -xxx alphabetically
// nuget assembly
// 1.8.0-alpha001 1.8.0.0
// 1.8.0-alpha002 1.8.0.1
// 1.8.0-alpha 1.8.0.2
// 1.8.0-beta001 1.8.0.3
// 1.8.0-beta002 1.8.0.4
// 1.8.0-beta 1.8.0.5
// 1.8.0 1.8.0.6
// Vsix
// Also need to
// Assembly
[assembly: AssemblyVersion("3.0.10.102")]
[assembly: AssemblyFileVersion("3.0.10.102")]
// NuGet Package
// Note: could not release "1.8.0" because it was depending on pre-release NuGet packages
// for Roslyn, so had to release 1.8.0-final... starting with 2.1.3 Roslyn has a released
// 1.0 version, so now we can release "2.1.3" without the "-final" extension.
[assembly: AssemblyInformationalVersion("3.0.10.102")]
// Do not remove this line.