diff --git a/Main/SEToolbox/SEToolbox/Interop/SpaceEngineersConsts.cs b/Main/SEToolbox/SEToolbox/Interop/SpaceEngineersConsts.cs index de74a847..70ba1685 100644 --- a/Main/SEToolbox/SEToolbox/Interop/SpaceEngineersConsts.cs +++ b/Main/SEToolbox/SEToolbox/Interop/SpaceEngineersConsts.cs @@ -62,7 +62,7 @@ public static Version GetSEVersion() { try { - return new Version(Sandbox.Common.MyFinalBuildConstants.APP_VERSION_STRING.ToString().Replace("_", ".")); + return new Version(VRage.Game.MyFinalBuildConstants.APP_VERSION_STRING.ToString().Replace("_", ".")); } catch { @@ -75,7 +75,7 @@ public static int GetSEVersionInt() try { // Use of Sandbox.Common.MyFinalBuildConstants.APP_VERSION causes the Compiler to hard code in the value from the assembly at the time of compile. - return Int32.Parse(Sandbox.Common.MyFinalBuildConstants.APP_VERSION_STRING.ToString().Replace("_", "")); + return Int32.Parse(VRage.Game.MyFinalBuildConstants.APP_VERSION_STRING.ToString().Replace("_", "")); } catch { diff --git a/Main/SEToolbox/SEToolbox/Properties/AssemblyInfo.cs b/Main/SEToolbox/SEToolbox/Properties/AssemblyInfo.cs index 8a162820..689c4795 100644 --- a/Main/SEToolbox/SEToolbox/Properties/AssemblyInfo.cs +++ b/Main/SEToolbox/SEToolbox/Properties/AssemblyInfo.cs @@ -54,5 +54,5 @@ // First 3 numbers to match the current Space Engineers release. // http://forums.keenswh.com/post/about-change-log-6578819 // Forth number to indicate my own build of SEToolbox to match. Remember to reset it back to 1 every time there is a new release of SpaceEngineers. -[assembly: AssemblyFileVersion("01.125.001.1")] +[assembly: AssemblyFileVersion("01.126.003.1")] diff --git a/Main/SEToolbox/SEToolboxSetup/Product.wxs b/Main/SEToolbox/SEToolboxSetup/Product.wxs index 0331478d..2e80a6f8 100644 --- a/Main/SEToolbox/SEToolboxSetup/Product.wxs +++ b/Main/SEToolbox/SEToolboxSetup/Product.wxs @@ -2,7 +2,7 @@ - + diff --git a/Main/SEToolbox/ToolboxTest/TypeLoaderTests.cs b/Main/SEToolbox/ToolboxTest/TypeLoaderTests.cs index a0e287dd..0d24b723 100644 --- a/Main/SEToolbox/ToolboxTest/TypeLoaderTests.cs +++ b/Main/SEToolbox/ToolboxTest/TypeLoaderTests.cs @@ -41,7 +41,7 @@ public void LoadOthe3r() [TestMethod] public void FindType() { - Type ivms = typeof(Sandbox.ModAPI.IMyVoxelMaps); + Type ivms = typeof(VRage.Game.ModAPI.IMyVoxelMaps); var binPath = @"D:\Program Files (x86)\Steam\steamapps\common\SpaceEngineers\Bin"; @@ -86,7 +86,7 @@ public void FindType() var types = ass.GetTypes(); var myVoxelMapsType = types.Where(p => ivms.IsAssignableFrom(p)).First(); - var myVoxelMaps = Activator.CreateInstance(myVoxelMapsType) as Sandbox.ModAPI.IMyVoxelMaps; + var myVoxelMaps = Activator.CreateInstance(myVoxelMapsType) as VRage.Game.ModAPI.IMyVoxelMaps; //5BCAC68007431E61367F5B2CF24E2D6F.5217D2CFAB7CCD6299A3F53DAEE1DEB1 //public static 6922E99EC72C10627AA239B8167BF7DC A109856086C45CF523B23AFCDDB82F43(byte[] 06D95B424FC4150954FF019440A547AE)