Skip to content

Commit ed5057f

Browse files
author
HolterPhylo
committed
Added back WriteTemplate(NMSTemplate template)
1 parent ddfc4fa commit ed5057f

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

libMBIN/Source/MXML/MXmlFile.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,13 @@ public static MXmlData ReadMXmlDataFromString(string xml)
8686
}
8787
}
8888

89+
/// <summary>
90+
/// Writes the NMSTemplate object to an .mxml file.
91+
/// </summary>
92+
/// <param name="outputpath">The location to write the .mxml file.</param>
93+
/// <param name="hideVersionInfo">If true, version info is not written to the MXML file.</param>
94+
/// <param name="includeTypeInfo">If true, type info is written to the MXML file.</param>
95+
public static string WriteTemplate(NMSTemplate template) => WriteTemplate(template, false, false);
8996
/// <summary>
9097
/// Writes the NMSTemplate object to an .mxml file.
9198
/// </summary>

libMBIN/Source/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public static class Version {
2525
// the Prerelease version should be reset to 1
2626
// When the Release version is incremented:
2727
// the Prerelease version should be reset to 0
28-
internal const string VERSION_STRING = "6.10.0.1";
28+
internal const string VERSION_STRING = "6.11.0.1";
2929

3030
/// <summary>Shorthand for AssemblyVersion.Major</summary>
3131
public static int Major => AssemblyVersion.Major;

0 commit comments

Comments
 (0)