diff --git a/Directory.Build.props b/Directory.Build.props index 0fe657a..9433b81 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -56,9 +56,9 @@ @(Swinfo -> '%(description)') git @(Swinfo -> '%(source)') - $(ModId) - $(Product) - $(Version) + $(ModId) + $(Product) + $(Version) diff --git a/src/SpaceWarp.Core/SpaceWarpPlugin.cs b/src/SpaceWarp.Core/SpaceWarpPlugin.cs index 8718633..cb66ee9 100644 --- a/src/SpaceWarp.Core/SpaceWarpPlugin.cs +++ b/src/SpaceWarp.Core/SpaceWarpPlugin.cs @@ -29,11 +29,10 @@ public sealed class SpaceWarpPlugin : BaseSpaceWarpPlugin { public static SpaceWarpPlugin Instance; - [PublicAPI] public const string ModGuid = "com.github.x606.spacewarp"; - [PublicAPI] public const string ModName = "Space Warp"; - [PublicAPI] public const string ModVer = MyPluginInfo.PLUGIN_VERSION; // TODO: Don't hard code this, but I don't know much msbuild stuff so @munix wil have to do that, - // and @munix is really lazy to do it right now but he definitely will at some point :P - + [PublicAPI] public const string ModGuid = MyPluginInfo.PLUGIN_GUID; + [PublicAPI] public const string ModName = MyPluginInfo.PLUGIN_NAME; + [PublicAPI] public const string ModVer = MyPluginInfo.PLUGIN_VERSION; + internal ScriptEnvironment GlobalLuaState; internal new static ManualLogSource Logger;