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