-
-
Notifications
You must be signed in to change notification settings - Fork 250
/
Copy path_manifest.tt
42 lines (42 loc) · 1.62 KB
/
_manifest.tt
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
40
41
42
<#@ template debug="false" hostspecific="true" language="C#" #>
<#@ assembly name="System.Core" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="System.IO" #>
<#@ import namespace="System.Text.RegularExpressions" #>
<#@ output extension=".json" #>
<#
string appVersion = Regex.Match(File.ReadAllText(Host.ResolvePath("Properties/AssemblyInfo.cs")), "AssemblyFileVersion\\(\"([^\"]*)\"").Groups[1].Value;
#>
{
"format": "1.0",
"modules":{
"ARK Smart Breeding": {
"Id": "ARK Smart Breeding",
"Category": "main",
"version": "<#= appVersion #>"
},
"SpeciesColorImages": {
"Id": "SpeciesColorImages",
"Category": "Species Images",
"Name": "Species Images",
"Author": "cadaei, Myrmecoleon, coldino, Shen",
"Description": "Download this package to have a visualization for the colors of creatures (~25 MB), uncheck if you don't want to download these files.",
"Url": "https://github.com/cadon/ARKStatsExtractor/raw/master/speciesImages/speciesImages.zip",
"LocalPath": "images/speciesImages",
"IsFolder": true,
"Selectable": true,
"version": "2025.04.08"
},
"NamePatternTemplates": {
"Id": "NamePatternTemplates",
"Category": "Name Pattern Templates",
"Name": "Name Pattern Templates",
"Description": "Templates for naming patterns",
"Url": "https://github.com/cadon/ARKStatsExtractor/raw/master/json/namePatternTemplates.json",
"LocalPath": "json/namePatternTemplates.json",
"version": "2024.8.3"
}
}
}