forked from TerrariaPrismTeam/Prism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SharedAssemblyInfo.cs
31 lines (28 loc) · 971 Bytes
/
SharedAssemblyInfo.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
using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Terraria Prism Team")]
[assembly: AssemblyProduct("Prism")]
[assembly: AssemblyCopyright("Copyright © Terraria Prism Team 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid(AssemblyInfo.GUID)]
#if DEV_BUILD
[assembly: AssemblyVersion(AssemblyInfo.DEV_BUILD_VERSION)]
#else
[assembly: AssemblyVersion(AssemblyInfo.VERSION)]
#endif
[assembly: AssemblyFileVersion(AssemblyInfo.VERSION)]
static partial class AssemblyInfo
{
public const string GUID = "fa53dc38-9b2b-45d3-818e-3e60f69143f6";
public const string VERSION = "1.0.0.0";
public const string TERRARIA_VERSION = "1.3.0.8";
internal const string DEV_BUILD_VERSION = "0.0.0.0";
}
static partial class GitInfo
{
public const string REPO = "Prism";
public const string BRANCH = "develop";
}