-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBuildInfo.cs
More file actions
38 lines (37 loc) · 2.05 KB
/
BuildInfo.cs
File metadata and controls
38 lines (37 loc) · 2.05 KB
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
namespace DynamicTrees
{
public static class BuildInfo
{
#region Mandatory
/// <summary>The machine readable name of the mod (no special characters or spaces)</summary>
public const string Name = "DynamicTrees";
/// <summary>Who made the mod</summary>
public const string Author = "Fuar, The Illusion, Jods-Its";
/// <summary>Current version (Using Major.Minor.Build) </summary>
public const string Version = "1.2.2";
/// <summary>Name used on GUI's, like ModSettings</summary>
public const string GUIName = "Dynamic Trees";
/// <summary>The minimum Melon Loader version that your mod requires</summary>
//public const string MelonLoaderVersion = "0.7.2-ci.2388";
#endregion
#region Optional
/// <summary>What the mod does</summary>
public const string Description = null;
/// <summary>Company that made it</summary>
public const string Company = null;
/// <summary>A valid download link</summary>
public const string DownloadLink = null;
/// <summary>Copyright info</summary>
/// <remarks>When updating the year, use the StartYear-CurrentYear format eg(Copyright © 2020-2023)</remarks>
public const string Copyright = "Copyright © 2023-2024";
/// <summary>Trademark info</summary>
public const string Trademark = null;
/// <summary>Product Name (Generally use the Name)</summary>
public const string Product = "ImprovedTrees";
/// <summary>Culture info</summary>
public const string Culture = null;
/// <summary>Priority of your mod. Most of the time you should not need to change this</summary>
public const int Priority = 0;
#endregion
}
}