forked from MrChurros/VanillaTradersRework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModMetadata.cs
More file actions
33 lines (21 loc) · 1.03 KB
/
Copy pathModMetadata.cs
File metadata and controls
33 lines (21 loc) · 1.03 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
using SPTarkov.Server.Core.Models.Spt.Mod;
namespace VanillaTradersRework;
public record ModMetadata : AbstractModMetadata
{
public override string ModGuid { get; init; } =
"com.ricardoschurhaus.vanillatradersrework";
public override string Name { get; init; } =
"Vanilla Traders Rework";
public override string Author { get; init; } =
"Ricardo Schurhaus";
public override SemanticVersioning.Version Version { get; init; } =
new(1, 0, 2);
public override string Url { get; init; } = "";
public override string License { get; init; } = "MIT";
public override SemanticVersioning.Range SptVersion { get; init; } =
new("~4.0.0");
public override List<string> Contributors { get; init; } = new();
public override List<string> Incompatibilities { get; init; } = new();
public override Dictionary<string, SemanticVersioning.Range> ModDependencies { get; init; } = new();
public override bool? IsBundleMod { get; init; } = false;
}