Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
kianzarrin committed Dec 12, 2022
2 parents 0934e20 + 930080a commit 342689d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
8 changes: 4 additions & 4 deletions LoadOrder/CO/DLC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ public enum DLC {
[DLCInfo("Plazas & Promenades", DLCType.Main)]
PlazasAndPromenadesDLC = 2008400,

//[DLCInfo("Financial Districts", DLCType.Main)]
//FinancialDistrictsDLC = 2148901,
[DLCInfo("Financial Districts", DLCType.Main)]
FinancialDistrictsDLC = 2148901,

[DLCInfo("Pearls From the East", DLCType.Misc)]
OrientalBuildings = 563850,
Expand Down Expand Up @@ -126,7 +126,7 @@ public enum DLC {
[DLCInfo("CCP: Heart of Korea", DLCType.ContentCreator)]
ModderPack14 = 2144480,

//[DLCInfo("CCP: Map Pack 2", DLCType.ContentCreator)]
//ModderPack15 = 2148903,
[DLCInfo("CCP: Map Pack 2", DLCType.ContentCreator)]
ModderPack15 = 2148903,
}
}
9 changes: 2 additions & 7 deletions LoadOrder/Shared/SharedUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,8 @@ internal class SharedUtil {
#endif
internal static XmlWriterSettings Indented => new XmlWriterSettings() { Indent = true };

internal static XmlSerializerNamespaces NoNamespaces {
get {
var ret = new XmlSerializerNamespaces();
ret.Add("", "");
return ret;
}
}
internal static XmlSerializerNamespaces NoNamespaces =>
new XmlSerializerNamespaces(new[] { XmlQualifiedName.Empty });

internal static void Serialize<T>(T obj, string filePath) {
var serializer = new XmlSerializer(typeof(T));
Expand Down
2 changes: 1 addition & 1 deletion Version.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<AssemblyVersion>1.15.4.*</AssemblyVersion>
<AssemblyVersion>1.15.5.*</AssemblyVersion>
</PropertyGroup>
</Project>

0 comments on commit 342689d

Please sign in to comment.