diff --git a/Directory.Build.props b/Directory.Build.props index 692dda23a..8213eb34b 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -2,7 +2,7 @@ - 0.1.1.27 + 0.1.2.0 Copyright © Aptivi 2018 - 2024 Aptivi Nitrocid @@ -22,8 +22,8 @@ in the N-KS API. Don't forget to document it in the GitBook instance so the mod developers are aware of the breaking changes! --> - 3.0.26 - 52 + 3.0.27 + 0 $(NitrocidModAPIVersionMajor).$(NitrocidModAPIVersionChangeset) diff --git a/public/Nitrocid.Templates/templates/KSMod/KSMod.csproj b/public/Nitrocid.Templates/templates/KSMod/KSMod.csproj index b2206367e..95e6c75f5 100644 --- a/public/Nitrocid.Templates/templates/KSMod/KSMod.csproj +++ b/public/Nitrocid.Templates/templates/KSMod/KSMod.csproj @@ -5,7 +5,7 @@ - + diff --git a/public/Nitrocid.Templates/templates/KSMod/ModName.cs b/public/Nitrocid.Templates/templates/KSMod/ModName.cs index 3df36259a..dfbba9e74 100644 --- a/public/Nitrocid.Templates/templates/KSMod/ModName.cs +++ b/public/Nitrocid.Templates/templates/KSMod/ModName.cs @@ -10,7 +10,7 @@ public class ModName : IMod public string Name { get; set; } = "My Mod"; public string Version { get; set; } = "1.0.0"; - public Version MinimumSupportedApiVersion => new(3, 0, 26, 52); + public Version MinimumSupportedApiVersion => new(3, 0, 27, 0); public ReadOnlyDictionary PubliclyAvailableFunctions => null;