Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
Added missing namespaces to the templates
Browse files Browse the repository at this point in the history
  • Loading branch information
Malware committed Jul 22, 2018
1 parent d5b1e8c commit 57f8011
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions Source/ExtensionClass/Class.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
using VRage.Collections;
using VRage.Game.Components;
using VRage.Game.ModAPI.Ingame;
using VRage.Game.ModAPI.Ingame.Utilities;
using VRage.Game.ObjectBuilders.Definitions;
using VRage.Game;
using VRageMath;
Expand Down
1 change: 1 addition & 0 deletions Source/IngameScriptTemplate/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
using VRage.Collections;
using VRage.Game.Components;
using VRage.Game.ModAPI.Ingame;
using VRage.Game.ModAPI.Ingame.Utilities;
using VRage.Game.ObjectBuilders.Definitions;
using VRage.Game;
using VRageMath;
Expand Down
4 changes: 2 additions & 2 deletions Source/MDK/MDKPackage.GeneratedInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public partial class MDKPackage
/// <summary>
/// The current package version
/// </summary>
public static readonly Version Version = new Version("1.1.11");
public static readonly Version Version = new Version("1.1.12");

/// <summary>
/// The required IDE version
Expand All @@ -18,7 +18,7 @@ public partial class MDKPackage
/// <summary>
/// Determines whether this version is a prerelease version
/// </summary>
public const bool IsPrerelease = false;
public const bool IsPrerelease = true;

/// <summary>
/// Gets the help page navigation URL
Expand Down
2 changes: 1 addition & 1 deletion Source/MDK/other.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Other>
<IsPrerelease>False</IsPrerelease>
<IsPrerelease>True</IsPrerelease>
<HelpPageUrl>https://github.com/malware-dev/MDK-SE/wiki</HelpPageUrl>
<ReleasePageUrl>https://github.com/malware-dev/MDK-SE/releases</ReleasePageUrl>
<IssuesPageUrl>https://github.com/malware-dev/MDK-SE/issues</IssuesPageUrl>
Expand Down
6 changes: 3 additions & 3 deletions Source/MDK/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="MDK.Morten Aune Lyrstad.e02b602e-3099-44a5-88c6-cb30cab978f6" Version="1.1.11" Language="en-US" Publisher="Morten Aune Lyrstad" />
<Identity Id="MDK.Morten Aune Lyrstad.e02b602e-3099-44a5-88c6-cb30cab978f6" Version="1.1.12" Language="en-US" Publisher="Morten Aune Lyrstad" />
<DisplayName>MDK/SE</DisplayName>
<Description xml:space="preserve">A toolkit to help with ingame script (programmable block) development for Keen Software House's space sandbox Space Engineers.

Expand All @@ -26,8 +26,8 @@ Space Engineers is trademarked to Keen Software House. This toolkit is fan-made,
<Asset Type="Microsoft.VisualStudio.Assembly" d:Source="Project" d:ProjectName="MDK" Path="|MDK|" AssemblyName="|MDK;AssemblyName|" />
<Asset Type="Microsoft.VisualStudio.Assembly" d:Source="Project" d:ProjectName="MDKWhitelistExtractor" Path="|MDKWhitelistExtractor|" AssemblyName="|MDKWhitelistExtractor;AssemblyName|" />
<Asset Type="Microsoft.VisualStudio.Assembly" d:Source="Project" d:ProjectName="MDKUtilities" Path="|MDKUtilities|" AssemblyName="|MDKUtilities;AssemblyName|" />
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="MDKAnalyzer" d:VsixSubPath="Analyzers" Path="|MDKAnalyzer|"/>
<Asset Type="Microsoft.VisualStudio.Analyzer" d:Source="Project" d:ProjectName="MDKAnalyzer" d:VsixSubPath="Analyzers" Path="|MDKAnalyzer|"/>
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="MDKAnalyzer" d:VsixSubPath="Analyzers" Path="|MDKAnalyzer|" />
<Asset Type="Microsoft.VisualStudio.Analyzer" d:Source="Project" d:ProjectName="MDKAnalyzer" d:VsixSubPath="Analyzers" Path="|MDKAnalyzer|" />
</Assets>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,16.0)" DisplayName="Visual Studio core editor" />
Expand Down
2 changes: 1 addition & 1 deletion Source/MDKServices/ProjectScriptInfo.GeneratedInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ partial class ProjectScriptInfo
/// <summary>
/// The current package version this utility assembly targets
/// </summary>
public static readonly Version TargetPackageVersion = new Version("1.1.11");
public static readonly Version TargetPackageVersion = new Version("1.1.12");
}
}
1 change: 1 addition & 0 deletions Source/UtilityClass/Class.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
using VRage.Collections;
using VRage.Game.Components;
using VRage.Game.ModAPI.Ingame;
using VRage.Game.ModAPI.Ingame.Utilities;
using VRage.Game.ObjectBuilders.Definitions;
using VRage.Game;
using VRageMath;
Expand Down

0 comments on commit 57f8011

Please sign in to comment.