diff --git a/LoadOrder/CO/DLC.cs b/LoadOrder/CO/DLC.cs index 8bfa233..931aaf6 100644 --- a/LoadOrder/CO/DLC.cs +++ b/LoadOrder/CO/DLC.cs @@ -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, @@ -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, } } diff --git a/LoadOrder/Shared/SharedUtil.cs b/LoadOrder/Shared/SharedUtil.cs index 3af6bd5..b6f80d5 100644 --- a/LoadOrder/Shared/SharedUtil.cs +++ b/LoadOrder/Shared/SharedUtil.cs @@ -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 obj, string filePath) { var serializer = new XmlSerializer(typeof(T)); diff --git a/Version.props b/Version.props index 1307fea..eae140f 100644 --- a/Version.props +++ b/Version.props @@ -1,5 +1,5 @@ - 1.15.4.* + 1.15.5.* \ No newline at end of file