From f38d6a4fedccd425a5cf08206ecbfaa4167dbe4b Mon Sep 17 00:00:00 2001 From: Saty <5752427+SatyPardus@users.noreply.github.com> Date: Fri, 7 Jul 2023 16:51:05 +0200 Subject: [PATCH] Fixing modinfo.json for SRML --- SRMP/SRMP.csproj | 13 +++---------- SRMP/modinfo.json | 16 ++++++++-------- SRMP/modinfo.tt | 33 --------------------------------- 3 files changed, 11 insertions(+), 51 deletions(-) delete mode 100644 SRMP/modinfo.tt diff --git a/SRMP/SRMP.csproj b/SRMP/SRMP.csproj index 677c9da..bbc4bc6 100644 --- a/SRMP/SRMP.csproj +++ b/SRMP/SRMP.csproj @@ -496,10 +496,6 @@ - - TextTemplatingFileGenerator - modinfo.json - TextTemplatingFileGenerator AssemblyInfo.cs @@ -514,14 +510,11 @@ - - True - True - modinfo.tt - - + + + diff --git a/SRMP/modinfo.json b/SRMP/modinfo.json index 4ff9176..4f5b233 100644 --- a/SRMP/modinfo.json +++ b/SRMP/modinfo.json @@ -1,9 +1,9 @@ -{ - "id": "srmp", - "name": "Slime Rancher Multiplayer", - "version": "0.0.1510", - "author": "SatyPardus", - "dependencies": [ +{ + "id": "srmp", + "name": "Slime Rancher Multiplayer", + "version": "0.0.1510", + "author": "SatyPardus", + "dependencies": [ - ] -} + ] +} \ No newline at end of file diff --git a/SRMP/modinfo.tt b/SRMP/modinfo.tt deleted file mode 100644 index 9cbd4b5..0000000 --- a/SRMP/modinfo.tt +++ /dev/null @@ -1,33 +0,0 @@ -<#@ template debug="true" hostspecific="true" language="C#" #> -<#@ output extension=".json" #> -<#@ import namespace="System.IO" #> -<#@ import namespace="System.Text.RegularExpressions" #> -<# - string output = File.ReadAllText("F:/GitHub/srmp-reloaded/SRMP/Properties/AssemblyInfo.cs"); - Regex pattern = new Regex("AssemblyVersion\\(\"(?\\d+)\\.(?\\d+)\\.(?\\d+)\\.(?\\d+)\"\\)"); - MatchCollection matches = pattern.Matches(output); - if( matches.Count == 1 ) - { - major = Convert.ToInt32(matches[0].Groups["major"].Value); - minor = Convert.ToInt32(matches[0].Groups["minor"].Value); - build = Convert.ToInt32(matches[0].Groups["build"].Value); - revision = Convert.ToInt32(matches[0].Groups["revision"].Value); - } -#> - -{ - "id": "srmp", - "name": "Slime Rancher Multiplayer", - "version": "0.0.<#= this.build #>", - "author": "SatyPardus", - "dependencies": [ - - ] -} - -<#+ - int major = 0; - int minor = 0; - int revision = 0; - int build = 0; -#> \ No newline at end of file