diff --git a/gen/DocumentFormat.OpenXml.Generator.Models/Editor/TextWriterExtensions.cs b/gen/DocumentFormat.OpenXml.Generator.Models/Editor/TextWriterExtensions.cs index 65c4e13cf..830a79ddb 100644 --- a/gen/DocumentFormat.OpenXml.Generator.Models/Editor/TextWriterExtensions.cs +++ b/gen/DocumentFormat.OpenXml.Generator.Models/Editor/TextWriterExtensions.cs @@ -29,6 +29,7 @@ public static void WriteFileHeader(this TextWriter writer) writer.WriteLine(Line2); writer.WriteLine(); writer.WriteLine("#nullable enable"); + writer.WriteLine("#pragma warning disable CS0618"); writer.WriteLine(); } diff --git a/gen/DocumentFormat.OpenXml.Generator.Models/Generators/Elements/DataModelWriterExtensions.cs b/gen/DocumentFormat.OpenXml.Generator.Models/Generators/Elements/DataModelWriterExtensions.cs index 64a214cc8..ffe188e0a 100644 --- a/gen/DocumentFormat.OpenXml.Generator.Models/Generators/Elements/DataModelWriterExtensions.cs +++ b/gen/DocumentFormat.OpenXml.Generator.Models/Generators/Elements/DataModelWriterExtensions.cs @@ -15,10 +15,12 @@ public static class DataModelWriterExtensions { public static class AttributeStrings { + public const string ObsoleteClassWarn = "[Obsolete(\"Unused class, will be removed in a future version.\", false)]"; public const string ObsoletePropertyWarn = "[Obsolete(\"Unused property, will be removed in a future version.\", false)]"; public const string ObsoletePropertyError = "[Obsolete(\"Unused property, will be removed in a future version.\", true)]"; public const string ObsoleteAttributeWarn = "[Obsolete(\"Unused attribute, will be removed in a future version.\", false)]"; public const string ObsoleteAttributeError = "[Obsolete(\"Unused attribute, will be removed in a future version.\", true)]"; + public const string ObsoleteChildWarn = "[Obsolete(\"Obsolete child element, will be removed in a future version.\", false)]"; public const string EditorBrowsableAlways = "[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Always)] "; public const string EditorBrowsableAdvanced = "[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)] "; public const string EditorBrowsableNever = "[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] "; @@ -30,6 +32,18 @@ public static class AttributeStrings AttributeStrings.EditorBrowsableNever, ]; + private static readonly List ObsoleteClassErrorList = + [ + AttributeStrings.ObsoleteClassWarn, + AttributeStrings.EditorBrowsableNever, + ]; + + private static readonly List ObsoleteChildWarnList = + [ + AttributeStrings.ObsoleteChildWarn, + AttributeStrings.EditorBrowsableNever, + ]; + // Use this dictionary to add attributes like ObsoleteAttribute or other directives to classes, child elements or attributes. private static readonly Dictionary>> _attributeData = new Dictionary>>() @@ -117,6 +131,36 @@ public static class AttributeStrings }, } }, + { + "xlpda:CT_PivotCacheDynamicArray/xlpda:pivotCacheDynamicArray", + new Dictionary>() + { + { + "xlpda:CT_PivotCacheDynamicArray/xlpda:pivotCacheDynamicArray", + ObsoleteClassErrorList + }, + } + }, + { + "xprd:CT_PivotCacheRichInfo/xprd:richInfo", + new Dictionary>() + { + { + "xprd:CT_PivotCacheRichInfo/xprd:richInfo", + ObsoleteClassErrorList + }, + } + }, + { + "x:CT_PivotCacheDefinitionExtension/x:ext", + new Dictionary>() + { + { + "xprd:CT_PivotCacheRichInfo/xprd:richInfo", + ObsoleteChildWarnList + }, + } + }, }; public static bool GetDataModelSyntax(this IndentedTextWriter writer, OpenXmlGeneratorServices services, SchemaNamespace model) diff --git a/generated/DocumentFormat.OpenXml.Framework/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Namespaces.g.cs b/generated/DocumentFormat.OpenXml.Framework/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Namespaces.g.cs index 0db6afa2b..128a06bf7 100644 --- a/generated/DocumentFormat.OpenXml.Framework/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Namespaces.g.cs +++ b/generated/DocumentFormat.OpenXml.Framework/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Namespaces.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using System.Collections.Generic; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_PresentationDocument_IPartFactoryFeature.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_PresentationDocument_IPartFactoryFeature.g.cs index 8bac42c65..96da6832b 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_PresentationDocument_IPartFactoryFeature.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_PresentationDocument_IPartFactoryFeature.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Features; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_PresentationDocument_IRootElementFeature.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_PresentationDocument_IRootElementFeature.g.cs index b0268413c..743574101 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_PresentationDocument_IRootElementFeature.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_PresentationDocument_IRootElementFeature.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Features; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_PresentationDocument_ITypedPartFactoryFeature.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_PresentationDocument_ITypedPartFactoryFeature.g.cs index 9ecf06913..baada41a7 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_PresentationDocument_ITypedPartFactoryFeature.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_PresentationDocument_ITypedPartFactoryFeature.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Features; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_SpreadsheetDocument_IPartFactoryFeature.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_SpreadsheetDocument_IPartFactoryFeature.g.cs index 554595f47..9614ef8bf 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_SpreadsheetDocument_IPartFactoryFeature.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_SpreadsheetDocument_IPartFactoryFeature.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Features; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_SpreadsheetDocument_IRootElementFeature.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_SpreadsheetDocument_IRootElementFeature.g.cs index ecc67ed7d..132c2deb7 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_SpreadsheetDocument_IRootElementFeature.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_SpreadsheetDocument_IRootElementFeature.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Features; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_SpreadsheetDocument_ITypedPartFactoryFeature.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_SpreadsheetDocument_ITypedPartFactoryFeature.g.cs index f105c2568..a9d457e22 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_SpreadsheetDocument_ITypedPartFactoryFeature.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_SpreadsheetDocument_ITypedPartFactoryFeature.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Features; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_WordprocessingDocument_IPartFactoryFeature.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_WordprocessingDocument_IPartFactoryFeature.g.cs index 883d65317..e9f38abfd 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_WordprocessingDocument_IPartFactoryFeature.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_WordprocessingDocument_IPartFactoryFeature.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Features; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_WordprocessingDocument_IRootElementFeature.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_WordprocessingDocument_IRootElementFeature.g.cs index ddd365d32..02b84c123 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_WordprocessingDocument_IRootElementFeature.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_WordprocessingDocument_IRootElementFeature.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Features; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_WordprocessingDocument_ITypedPartFactoryFeature.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_WordprocessingDocument_ITypedPartFactoryFeature.g.cs index 22e3dc5a5..a00c10b95 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_WordprocessingDocument_ITypedPartFactoryFeature.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Package_WordprocessingDocument_ITypedPartFactoryFeature.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Features; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_AlternativeFormatImportPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_AlternativeFormatImportPart.g.cs index 0095e8d90..26856b95f 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_AlternativeFormatImportPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_AlternativeFormatImportPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CalculationChainPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CalculationChainPart.g.cs index 95115e2fc..fe2cd5e7d 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CalculationChainPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CalculationChainPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CellMetadataPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CellMetadataPart.g.cs index 015a64e60..a4bf1dcae 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CellMetadataPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CellMetadataPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartColorStylePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartColorStylePart.g.cs index ee219913e..b816d4697 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartColorStylePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartColorStylePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartDrawingPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartDrawingPart.g.cs index efa6a8c26..42b6b844b 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartDrawingPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartDrawingPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartPart.g.cs index 20fe11498..1e8ce7da2 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartStylePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartStylePart.g.cs index 701f9e795..605ce35c9 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartStylePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartStylePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartsheetPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartsheetPart.g.cs index 151314bc7..64b26ac4c 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartsheetPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ChartsheetPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CommentAuthorsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CommentAuthorsPart.g.cs index b1f30d1e0..be628e066 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CommentAuthorsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CommentAuthorsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ConnectionsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ConnectionsPart.g.cs index 43fecef9a..62f00e196 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ConnectionsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ConnectionsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ControlPropertiesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ControlPropertiesPart.g.cs index 463591966..f665867a0 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ControlPropertiesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ControlPropertiesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CoreFilePropertiesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CoreFilePropertiesPart.g.cs index 049ac6266..8d49ac54d 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CoreFilePropertiesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CoreFilePropertiesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomDataPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomDataPart.g.cs index dd3cf6d5a..317117444 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomDataPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomDataPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomDataPropertiesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomDataPropertiesPart.g.cs index 24b89b201..e87e0e0da 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomDataPropertiesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomDataPropertiesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomFilePropertiesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomFilePropertiesPart.g.cs index bd698cca2..0dcf646a5 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomFilePropertiesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomFilePropertiesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomPropertyPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomPropertyPart.g.cs index d364f6c96..aa800ca85 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomPropertyPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomPropertyPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomXmlMappingsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomXmlMappingsPart.g.cs index 4b4c0ba26..25e45bf19 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomXmlMappingsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomXmlMappingsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomXmlPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomXmlPart.g.cs index de27a4929..29960662a 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomXmlPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomXmlPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomXmlPropertiesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomXmlPropertiesPart.g.cs index d330c626e..2c0848e98 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomXmlPropertiesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomXmlPropertiesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomizationPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomizationPart.g.cs index cb7a0f7b2..163947c16 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomizationPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_CustomizationPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramColorsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramColorsPart.g.cs index ff0eec94b..da7bf1f3d 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramColorsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramColorsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramDataPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramDataPart.g.cs index 71d566213..8b57b1b5f 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramDataPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramDataPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramLayoutDefinitionPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramLayoutDefinitionPart.g.cs index d1fe6f145..b2a45f29f 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramLayoutDefinitionPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramLayoutDefinitionPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramPersistLayoutPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramPersistLayoutPart.g.cs index 40a532fce..300eccaa7 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramPersistLayoutPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramPersistLayoutPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramStylePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramStylePart.g.cs index 990f799d8..638fa4613 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramStylePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DiagramStylePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DialogsheetPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DialogsheetPart.g.cs index 44366b8c0..9c627a9b9 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DialogsheetPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DialogsheetPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DigitalSignatureOriginPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DigitalSignatureOriginPart.g.cs index b19202dcb..8e57a07c6 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DigitalSignatureOriginPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DigitalSignatureOriginPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DocumentSettingsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DocumentSettingsPart.g.cs index 1b6107b71..d9972784f 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DocumentSettingsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DocumentSettingsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DocumentTasksPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DocumentTasksPart.g.cs index efbe7ad3d..eff442ed4 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DocumentTasksPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DocumentTasksPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DrawingsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DrawingsPart.g.cs index f507fb664..40554cfb8 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DrawingsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_DrawingsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedControlPersistenceBinaryDataPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedControlPersistenceBinaryDataPart.g.cs index b6726f41a..d467d1136 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedControlPersistenceBinaryDataPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedControlPersistenceBinaryDataPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedControlPersistencePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedControlPersistencePart.g.cs index 58203749f..76256a05c 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedControlPersistencePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedControlPersistencePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedObjectPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedObjectPart.g.cs index 128f45558..e493bbc27 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedObjectPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedObjectPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedPackagePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedPackagePart.g.cs index 552b9b4e1..f8de91a0e 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedPackagePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EmbeddedPackagePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EndnotesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EndnotesPart.g.cs index 5d79c36a6..cf285b3e0 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EndnotesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_EndnotesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExcelAttachedToolbarsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExcelAttachedToolbarsPart.g.cs index 65e762865..8af163678 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExcelAttachedToolbarsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExcelAttachedToolbarsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExtendedChartPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExtendedChartPart.g.cs index b53f54028..18e02a8c3 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExtendedChartPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExtendedChartPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExtendedFilePropertiesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExtendedFilePropertiesPart.g.cs index ccf97eed3..293f989de 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExtendedFilePropertiesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExtendedFilePropertiesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExternalWorkbookPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExternalWorkbookPart.g.cs index 76da2423f..e34ea849a 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExternalWorkbookPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ExternalWorkbookPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FeaturePropertyBagsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FeaturePropertyBagsPart.g.cs index dd6610a39..502817ae7 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FeaturePropertyBagsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FeaturePropertyBagsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FontPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FontPart.g.cs index 2e9e90740..048d8c42c 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FontPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FontPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FontTablePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FontTablePart.g.cs index 927e97bff..bd4041e7d 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FontTablePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FontTablePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FooterPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FooterPart.g.cs index 3e156d08a..b74fa88cb 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FooterPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FooterPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FootnotesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FootnotesPart.g.cs index 7ee444de7..569f5afd8 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FootnotesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_FootnotesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_GlossaryDocumentPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_GlossaryDocumentPart.g.cs index b28e01ca4..23554526e 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_GlossaryDocumentPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_GlossaryDocumentPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_HandoutMasterPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_HandoutMasterPart.g.cs index b8e418a4b..9098df601 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_HandoutMasterPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_HandoutMasterPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_HeaderPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_HeaderPart.g.cs index 6db50cfb7..246aaec2d 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_HeaderPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_HeaderPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ImagePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ImagePart.g.cs index 6e8b2ea67..04795fa4a 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ImagePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ImagePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_InternationalMacroSheetPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_InternationalMacroSheetPart.g.cs index fc3bb832a..f837106c4 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_InternationalMacroSheetPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_InternationalMacroSheetPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_LabelInfoPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_LabelInfoPart.g.cs index 509f4e4df..45ae2a349 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_LabelInfoPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_LabelInfoPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_LegacyDiagramTextInfoPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_LegacyDiagramTextInfoPart.g.cs index 704ac2bee..2d9ad9026 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_LegacyDiagramTextInfoPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_LegacyDiagramTextInfoPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_LegacyDiagramTextPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_LegacyDiagramTextPart.g.cs index 4bce2f139..5ab50b92b 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_LegacyDiagramTextPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_LegacyDiagramTextPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_MacroSheetPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_MacroSheetPart.g.cs index 1a195a47a..bbed2ac04 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_MacroSheetPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_MacroSheetPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_MailMergeRecipientDataPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_MailMergeRecipientDataPart.g.cs index 8587e364f..10acaac6c 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_MailMergeRecipientDataPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_MailMergeRecipientDataPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_MainDocumentPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_MainDocumentPart.g.cs index 460c3a651..7c4334add 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_MainDocumentPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_MainDocumentPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_Model3DReferenceRelationshipPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_Model3DReferenceRelationshipPart.g.cs index a0145517b..60631cb91 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_Model3DReferenceRelationshipPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_Model3DReferenceRelationshipPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NamedSheetViewsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NamedSheetViewsPart.g.cs index 018966d21..6836ed259 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NamedSheetViewsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NamedSheetViewsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NotesMasterPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NotesMasterPart.g.cs index a722462e7..6526d60a0 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NotesMasterPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NotesMasterPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NotesSlidePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NotesSlidePart.g.cs index 208aa7545..1a7cbbef1 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NotesSlidePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NotesSlidePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NumberingDefinitionsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NumberingDefinitionsPart.g.cs index 98ff0a7ff..c3d6ee8b1 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NumberingDefinitionsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_NumberingDefinitionsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PivotTableCacheDefinitionPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PivotTableCacheDefinitionPart.g.cs index 3cdbd3364..81df775c0 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PivotTableCacheDefinitionPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PivotTableCacheDefinitionPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PivotTableCacheRecordsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PivotTableCacheRecordsPart.g.cs index fdbbba056..4b8d8a4b4 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PivotTableCacheRecordsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PivotTableCacheRecordsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PivotTablePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PivotTablePart.g.cs index f7cf5bf66..a93d9163e 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PivotTablePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PivotTablePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PowerPointAuthorsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PowerPointAuthorsPart.g.cs index 60d0b73a0..bc872aafb 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PowerPointAuthorsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PowerPointAuthorsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PowerPointCommentPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PowerPointCommentPart.g.cs index c9f4d15d4..be9bd7bfe 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PowerPointCommentPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PowerPointCommentPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PresentationDocument.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PresentationDocument.g.cs index 36cef8fea..cb11ddd08 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PresentationDocument.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PresentationDocument.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PresentationPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PresentationPart.g.cs index af39c3d5e..79ac94261 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PresentationPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PresentationPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PresentationPropertiesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PresentationPropertiesPart.g.cs index e1988c977..7b79dcf78 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PresentationPropertiesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_PresentationPropertiesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_QueryTablePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_QueryTablePart.g.cs index aca2affec..56ef892ae 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_QueryTablePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_QueryTablePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_QuickAccessToolbarCustomizationsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_QuickAccessToolbarCustomizationsPart.g.cs index da0cb700a..734bc535f 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_QuickAccessToolbarCustomizationsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_QuickAccessToolbarCustomizationsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdArrayPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdArrayPart.g.cs index 7ac723818..b96252c34 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdArrayPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdArrayPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValuePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValuePart.g.cs index a6d411439..8c0800e1e 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValuePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValuePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValueStructurePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValueStructurePart.g.cs index 534117005..9743f91b2 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValueStructurePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValueStructurePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValueTypesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValueTypesPart.g.cs index 44c083571..15979dbc5 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValueTypesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValueTypesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValueWebImagePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValueWebImagePart.g.cs index 3e702ec55..271d98116 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValueWebImagePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdRichValueWebImagePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdSupportingPropertyBagPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdSupportingPropertyBagPart.g.cs index a33b61176..f8fa5c47a 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdSupportingPropertyBagPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdSupportingPropertyBagPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdSupportingPropertyBagStructurePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdSupportingPropertyBagStructurePart.g.cs index 97448646b..feeb9afe7 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdSupportingPropertyBagStructurePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RdSupportingPropertyBagStructurePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RibbonAndBackstageCustomizationsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RibbonAndBackstageCustomizationsPart.g.cs index f233c1b7f..3ca361483 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RibbonAndBackstageCustomizationsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RibbonAndBackstageCustomizationsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RibbonExtensibilityPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RibbonExtensibilityPart.g.cs index 65992df90..c83b19d5b 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RibbonExtensibilityPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RibbonExtensibilityPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RichStylesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RichStylesPart.g.cs index 7e0697c77..0ac598f5a 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RichStylesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_RichStylesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SharedStringTablePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SharedStringTablePart.g.cs index 44f544962..ce1dc4122 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SharedStringTablePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SharedStringTablePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SingleCellTablePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SingleCellTablePart.g.cs index b7e5b5883..af778ed5e 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SingleCellTablePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SingleCellTablePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlicerCachePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlicerCachePart.g.cs index 989fb933d..722d9c22a 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlicerCachePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlicerCachePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlicersPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlicersPart.g.cs index 890679d57..c53b3f7b9 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlicersPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlicersPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideCommentsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideCommentsPart.g.cs index 9aed13ccb..2f3bdaeb5 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideCommentsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideCommentsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideLayoutPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideLayoutPart.g.cs index 7c8d4ad13..1260ae967 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideLayoutPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideLayoutPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideMasterPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideMasterPart.g.cs index e4cdbebed..398957a06 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideMasterPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideMasterPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlidePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlidePart.g.cs index e867c7586..5fd23a9b4 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlidePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlidePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideSyncDataPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideSyncDataPart.g.cs index 3cee145fe..442a7747e 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideSyncDataPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SlideSyncDataPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SpreadsheetDocument.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SpreadsheetDocument.g.cs index d896552de..d88d3ed25 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SpreadsheetDocument.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SpreadsheetDocument.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SpreadsheetPrinterSettingsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SpreadsheetPrinterSettingsPart.g.cs index c9f62699f..34bd9cc68 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SpreadsheetPrinterSettingsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_SpreadsheetPrinterSettingsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_StyleDefinitionsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_StyleDefinitionsPart.g.cs index d9be88748..1d6ecec26 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_StyleDefinitionsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_StyleDefinitionsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_StylesWithEffectsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_StylesWithEffectsPart.g.cs index 057a759a2..c123f3ba4 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_StylesWithEffectsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_StylesWithEffectsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TableDefinitionPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TableDefinitionPart.g.cs index f58bd9eb2..4fabb2e68 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TableDefinitionPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TableDefinitionPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TableStylesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TableStylesPart.g.cs index a1099adb2..4b7921dc6 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TableStylesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TableStylesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ThemeOverridePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ThemeOverridePart.g.cs index 472fbb879..15721144d 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ThemeOverridePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ThemeOverridePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ThemePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ThemePart.g.cs index 2f8c067e3..88176c858 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ThemePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ThemePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ThumbnailPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ThumbnailPart.g.cs index a8877cb30..7f6498005 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ThumbnailPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ThumbnailPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TimeLineCachePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TimeLineCachePart.g.cs index 5f78e7679..0a003969e 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TimeLineCachePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TimeLineCachePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TimeLinePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TimeLinePart.g.cs index 6d0125de2..5088871e6 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TimeLinePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_TimeLinePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_UserDefinedTagsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_UserDefinedTagsPart.g.cs index 73c0dcbbd..9d4f49d66 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_UserDefinedTagsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_UserDefinedTagsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VbaDataPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VbaDataPart.g.cs index db4cf9a6c..b6b060aad 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VbaDataPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VbaDataPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VbaProjectPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VbaProjectPart.g.cs index e1e185f5d..4d820092c 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VbaProjectPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VbaProjectPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ViewPropertiesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ViewPropertiesPart.g.cs index e37cde333..661cda165 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ViewPropertiesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_ViewPropertiesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VmlDrawingPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VmlDrawingPart.g.cs index b559d34f2..5c455d8f0 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VmlDrawingPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VmlDrawingPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VolatileDependenciesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VolatileDependenciesPart.g.cs index a7c98b942..d3efbe6c1 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VolatileDependenciesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_VolatileDependenciesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WebExTaskpanesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WebExTaskpanesPart.g.cs index 8502f50c4..c6a3274e8 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WebExTaskpanesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WebExTaskpanesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WebExtensionPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WebExtensionPart.g.cs index c50f7f58e..f272d99e7 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WebExtensionPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WebExtensionPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WebSettingsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WebSettingsPart.g.cs index 348206495..62934d6c6 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WebSettingsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WebSettingsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordAttachedToolbarsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordAttachedToolbarsPart.g.cs index 1843098f4..7ce8783e0 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordAttachedToolbarsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordAttachedToolbarsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordCommentsExtensiblePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordCommentsExtensiblePart.g.cs index d3cb7eead..19f953b54 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordCommentsExtensiblePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordCommentsExtensiblePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingCommentsExPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingCommentsExPart.g.cs index 4c69cb9b9..645a9a89e 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingCommentsExPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingCommentsExPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingCommentsIdsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingCommentsIdsPart.g.cs index 5e2943cbb..03f322a68 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingCommentsIdsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingCommentsIdsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingCommentsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingCommentsPart.g.cs index cd2af1c13..8627a6e79 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingCommentsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingCommentsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingDocument.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingDocument.g.cs index 9545d0599..d902f0ece 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingDocument.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingDocument.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingPeoplePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingPeoplePart.g.cs index 19eecc9a4..c3108a73f 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingPeoplePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingPeoplePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingPrinterSettingsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingPrinterSettingsPart.g.cs index 9ae68511e..599a4517c 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingPrinterSettingsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WordprocessingPrinterSettingsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookPart.g.cs index cb494af27..cec0410ef 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookPersonPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookPersonPart.g.cs index f1f25d22a..94a42fe25 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookPersonPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookPersonPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookRevisionHeaderPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookRevisionHeaderPart.g.cs index 9aafb0425..504a5320e 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookRevisionHeaderPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookRevisionHeaderPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookRevisionLogPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookRevisionLogPart.g.cs index 17cfbc723..5c7b62b9e 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookRevisionLogPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookRevisionLogPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookStylesPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookStylesPart.g.cs index 55eb96efb..ddb668e5c 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookStylesPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookStylesPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookUserDataPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookUserDataPart.g.cs index 54e6cbffa..f12808a18 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookUserDataPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorkbookUserDataPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetCommentsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetCommentsPart.g.cs index bd9be75c5..daf1e4a58 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetCommentsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetCommentsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetPart.g.cs index 482b263ab..f9d8f657d 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetSortMapPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetSortMapPart.g.cs index 1ac193d8e..3794f1503 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetSortMapPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetSortMapPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetThreadedCommentsPart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetThreadedCommentsPart.g.cs index f37c15418..89f6fce55 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetThreadedCommentsPart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_WorksheetThreadedCommentsPart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_XmlSignaturePart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_XmlSignaturePart.g.cs index 4d51891ba..e154397a1 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_XmlSignaturePart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/Part_XmlSignaturePart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml.Features; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_excel.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_excel.g.cs index 5931ba94b..b6f6ddc2c 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_excel.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_excel.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_office.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_office.g.cs index 018a2ee59..e9168487d 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_office.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_office.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_powerpoint.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_powerpoint.g.cs index 97a0478a4..2e1585113 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_powerpoint.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_powerpoint.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_word.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_word.g.cs index 8b65ba211..7d8a72239 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_word.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_office_word.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_vml.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_vml.g.cs index 974b3c99d..88411a49e 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_vml.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas-microsoft-com_vml.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_ink_2010_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_ink_2010_main.g.cs index 822fc7315..a13adc060 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_ink_2010_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_ink_2010_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_01_customui.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_01_customui.g.cs index 54287dba3..d87435d1f 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_01_customui.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_01_customui.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_activeX.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_activeX.g.cs index dd87f1747..7e1f470f0 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_activeX.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_activeX.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_coverPageProps.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_coverPageProps.g.cs index 1145e662b..97f12aa57 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_coverPageProps.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_coverPageProps.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_customDocumentInformationPanel.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_customDocumentInformationPanel.g.cs index 1356b6f19..1960b3c79 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_customDocumentInformationPanel.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_customDocumentInformationPanel.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_contentType.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_contentType.g.cs index 035e3adbb..12581496b 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_contentType.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_contentType.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_customXsn.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_customXsn.g.cs index 2d643054c..77c0ec141 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_customXsn.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_customXsn.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_longProperties.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_longProperties.g.cs index 2295bef31..9f6a4cec5 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_longProperties.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_longProperties.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_properties_metaAttributes.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_properties_metaAttributes.g.cs index 4acffbc20..2eca51bf5 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_properties_metaAttributes.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2006_metadata_properties_metaAttributes.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2009_07_customui.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2009_07_customui.g.cs index 2de2a9ca2..b4f3d7bbf 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2009_07_customui.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2009_07_customui.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2019_extlst.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2019_extlst.g.cs index 2cd71f916..4a3df4e0b 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2019_extlst.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2019_extlst.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2020_mipLabelMetadata.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2020_mipLabelMetadata.g.cs index 2fb9b338d..4b5910a65 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2020_mipLabelMetadata.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_2020_mipLabelMetadata.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2007_8_2_chart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2007_8_2_chart.g.cs index 053da302f..7cde3e1a8 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2007_8_2_chart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2007_8_2_chart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2008_diagram.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2008_diagram.g.cs index 5b245aca2..f5c3abfd9 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2008_diagram.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2008_diagram.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_chartDrawing.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_chartDrawing.g.cs index e56e5379a..4975fa080 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_chartDrawing.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_chartDrawing.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_compatibility.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_compatibility.g.cs index 3b681023c..8105b61b6 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_compatibility.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_compatibility.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_diagram.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_diagram.g.cs index 9b2f0b0df..83a2563fb 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_diagram.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_diagram.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_main.g.cs index 0a7040cb1..b5edfd63b 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_picture.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_picture.g.cs index ea40f5cea..8593d257f 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_picture.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_picture.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_slicer.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_slicer.g.cs index ee0488213..894f304cd 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_slicer.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2010_slicer.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_chart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_chart.g.cs index 1930955f7..89302aef6 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_chart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_chart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_chartStyle.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_chartStyle.g.cs index 40240c7b8..154cda476 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_chartStyle.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_chartStyle.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_main.g.cs index efbb44e2d..794f8a845 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_timeslicer.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_timeslicer.g.cs index 372ba9f6d..e6394c907 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_timeslicer.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2012_timeslicer.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2013_main_command.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2013_main_command.g.cs index 9c9e01855..fcb11c3cc 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2013_main_command.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2013_main_command.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_chart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_chart.g.cs index 9d59219b2..849b6cf81 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_chart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_chart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_chart_ac.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_chart_ac.g.cs index c81c71e4e..90c79593f 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_chart_ac.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_chart_ac.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing.Charts; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_chartex.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_chartex.g.cs index 6c9999dd6..aafb377e8 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_chartex.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_chartex.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_main.g.cs index 9fb3f97f0..79d07932a 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2014_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_11_diagram.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_11_diagram.g.cs index 92ec954bc..4cbaadc08 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_11_diagram.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_11_diagram.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_11_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_11_main.g.cs index 8e0e899fa..2482198f5 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_11_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_11_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_12_diagram.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_12_diagram.g.cs index eed3ec52d..08d08230e 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_12_diagram.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_12_diagram.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_SVG_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_SVG_main.g.cs index f1a7238a2..9f2ac6400 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_SVG_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_SVG_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_ink.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_ink.g.cs index 82eba9bfe..2055efb42 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_ink.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2016_ink.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2017_03_chart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2017_03_chart.g.cs index cef6382b7..8a8fccab1 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2017_03_chart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2017_03_chart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2017_decorative.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2017_decorative.g.cs index d5cb2e14a..99e3a2aa1 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2017_decorative.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2017_decorative.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2017_model3d.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2017_model3d.g.cs index c8fc81226..7226af9e7 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2017_model3d.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2017_model3d.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_animation.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_animation.g.cs index 3a2ab2b08..47b15aa19 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_animation.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_animation.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_animation_model3d.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_animation_model3d.g.cs index 476511492..34cd1af15 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_animation_model3d.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_animation_model3d.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_hyperlinkcolor.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_hyperlinkcolor.g.cs index 907fdf919..5c9642d1a 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_hyperlinkcolor.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_hyperlinkcolor.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_sketchyshapes.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_sketchyshapes.g.cs index d7c5dbf93..e4028c026 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_sketchyshapes.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2018_sketchyshapes.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2020_classificationShape.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2020_classificationShape.g.cs index ab0718034..38b0d3cb2 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2020_classificationShape.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2020_classificationShape.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2021_livefeed.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2021_livefeed.g.cs index f91b6c42f..bf2cbbffb 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2021_livefeed.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2021_livefeed.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2021_oembed.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2021_oembed.g.cs index 9b802711f..36c48881b 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2021_oembed.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2021_oembed.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2021_scriptlink.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2021_scriptlink.g.cs index 088ede783..a1adfcbcd 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2021_scriptlink.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2021_scriptlink.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2022_imageformula.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2022_imageformula.g.cs index 266f53560..ca824d0fe 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2022_imageformula.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_drawing_2022_imageformula.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_excel_2006_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_excel_2006_main.g.cs index 065805f9f..9a9bfbd79 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_excel_2006_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_excel_2006_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_excel_2010_spreadsheetDrawing.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_excel_2010_spreadsheetDrawing.g.cs index b35915d8e..677673e12 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_excel_2010_spreadsheetDrawing.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_excel_2010_spreadsheetDrawing.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2010_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2010_main.g.cs index 30e0bd9f3..4a54d7611 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2010_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2010_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2012_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2012_main.g.cs index 75ac59fd7..5f6fb349a 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2012_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2012_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2012_roamingSettings.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2012_roamingSettings.g.cs index 1ce9f609b..5067b3737 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2012_roamingSettings.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2012_roamingSettings.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2013_main_command.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2013_main_command.g.cs index 684478e1e..502ebd506 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2013_main_command.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2013_main_command.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2015_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2015_main.g.cs index 56b10b787..4aec0e79b 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2015_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2015_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2017_10_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2017_10_main.g.cs index edd94baa4..e310a14e9 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2017_10_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2017_10_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2017_3_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2017_3_main.g.cs index 76910f292..594faa27c 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2017_3_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2017_3_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2018_4_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2018_4_main.g.cs index f1162b1db..db01ece2e 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2018_4_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2018_4_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2018_8_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2018_8_main.g.cs index 8d0006cab..d4d3ccce6 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2018_8_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2018_8_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2019_12_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2019_12_main.g.cs index f95e38b47..672c25123 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2019_12_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2019_12_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2019_9_main_command.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2019_9_main_command.g.cs index 67fb4877b..bc13e7982 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2019_9_main_command.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2019_9_main_command.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2020_02_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2020_02_main.g.cs index 28d644ada..f01fafe3e 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2020_02_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2020_02_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2021_06_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2021_06_main.g.cs index aa2ceb404..6d537a202 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2021_06_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2021_06_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2022_03_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2022_03_main.g.cs index e9772f8b6..85722f9e6 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2022_03_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2022_03_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2022_08_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2022_08_main.g.cs index 2d8f61265..9a2e72156 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2022_08_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2022_08_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2023_02_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2023_02_main.g.cs index 75f06e08c..ea09bbad8 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2023_02_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_powerpoint_2023_02_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2009_9_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2009_9_main.g.cs index e95a6c285..30b8c8ce0 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2009_9_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2009_9_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2010_11_ac.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2010_11_ac.g.cs index dc9774df5..0c1641428 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2010_11_ac.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2010_11_ac.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2010_11_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2010_11_main.g.cs index f16744961..7abd6fa2d 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2010_11_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2010_11_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2011_1_ac.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2011_1_ac.g.cs index 6b5de520a..58f98d4f5 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2011_1_ac.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2011_1_ac.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2014_11_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2014_11_main.g.cs index cae89e12e..98d0e9ddf 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2014_11_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2014_11_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2014_revision.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2014_revision.g.cs index 57906b797..29c25a699 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2014_revision.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2014_revision.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2016_pivotdefaultlayout.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2016_pivotdefaultlayout.g.cs index 5adb68b36..e03a1d00d 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2016_pivotdefaultlayout.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2016_pivotdefaultlayout.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2017_dynamicarray.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2017_dynamicarray.g.cs index 494a1e78c..0fccec08c 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2017_dynamicarray.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2017_dynamicarray.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2017_richdata.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2017_richdata.g.cs index 346026b02..477a28ec7 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2017_richdata.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2017_richdata.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2017_richdata2.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2017_richdata2.g.cs index 4528db988..368f8e9a1 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2017_richdata2.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2017_richdata2.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2018_calcfeatures.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2018_calcfeatures.g.cs index d497f1f9c..62cbf8419 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2018_calcfeatures.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2018_calcfeatures.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2018_threadedcomments.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2018_threadedcomments.g.cs index 5896dc8fe..53238b689 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2018_threadedcomments.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2018_threadedcomments.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2019_extlinksprops.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2019_extlinksprops.g.cs index 66f59fd77..58b30d728 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2019_extlinksprops.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2019_extlinksprops.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2019_namedsheetviews.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2019_namedsheetviews.g.cs index cd5f73c58..8aac76d26 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2019_namedsheetviews.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2019_namedsheetviews.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_pivotNov2020.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_pivotNov2020.g.cs index ab135bd57..dcb05f4b5 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_pivotNov2020.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_pivotNov2020.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_richdatawebimage.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_richdatawebimage.g.cs index 791037ad1..8738e6272 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_richdatawebimage.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_richdatawebimage.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_richvaluerefresh.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_richvaluerefresh.g.cs index 743387cc2..1ecab0efe 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_richvaluerefresh.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_richvaluerefresh.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_threadedcomments2.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_threadedcomments2.g.cs index aa7b8954a..e734760c1 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_threadedcomments2.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2020_threadedcomments2.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2021_extlinks2021.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2021_extlinks2021.g.cs index 244b4e107..d90ea28fd 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2021_extlinks2021.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2021_extlinks2021.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_featurepropertybag.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_featurepropertybag.g.cs index 4561e2db2..f3e93adc4 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_featurepropertybag.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_featurepropertybag.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_pivotRichData.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_pivotRichData.g.cs index 5c1775993..7ea45a06e 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_pivotRichData.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_pivotRichData.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; @@ -21,6 +22,8 @@ namespace DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotRichData /// This class is available in Microsoft365 and above. /// When the object is serialized out as xml, it's qualified name is xprd:richInfo. /// + [Obsolete("Unused class, will be removed in a future version.", false)] + [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public partial class PivotCacheRichInfo : OpenXmlLeafElement { #pragma warning disable CS0109 diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_pivotVersionInfo.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_pivotVersionInfo.g.cs index c6475c80b..d810e7c2f 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_pivotVersionInfo.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_pivotVersionInfo.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_richvaluerel.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_richvaluerel.g.cs index c19b6ae0c..f973b94bf 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_richvaluerel.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2022_richvaluerel.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_dataSourceVersioning.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_dataSourceVersioning.g.cs index a51921001..a9e2fd4fe 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_dataSourceVersioning.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_dataSourceVersioning.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_externalCodeService.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_externalCodeService.g.cs index 6592df52f..d5078c5b3 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_externalCodeService.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_externalCodeService.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_msForms.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_msForms.g.cs index 4db9ea193..5b497eba4 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_msForms.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_msForms.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_pivot2023Calculation.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_pivot2023Calculation.g.cs index e3839f4fa..d4553fcae 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_pivot2023Calculation.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2023_pivot2023Calculation.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2024_pivotAutoRefresh.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2024_pivotAutoRefresh.g.cs index 5837d19b5..76325b622 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2024_pivotAutoRefresh.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2024_pivotAutoRefresh.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2024_pivotDynamicArrays.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2024_pivotDynamicArrays.g.cs index 3297d8019..3276731c3 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2024_pivotDynamicArrays.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2024_pivotDynamicArrays.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; @@ -21,6 +22,8 @@ namespace DocumentFormat.OpenXml.Office.SpreadSheetML.Y2024.PivotDynamicArrays /// This class is available in Microsoft365 and above. /// When the object is serialized out as xml, it's qualified name is xlpda:pivotCacheDynamicArray. /// + [Obsolete("Unused class, will be removed in a future version.", false)] + [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public partial class PivotCacheDynamicArray : OpenXmlLeafElement { #pragma warning disable CS0109 diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2024_workbookCompatibilityVersion.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2024_workbookCompatibilityVersion.g.cs index d07e3458a..ced4d954f 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2024_workbookCompatibilityVersion.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2024_workbookCompatibilityVersion.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2025_externalCodeService2.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2025_externalCodeService2.g.cs index 0d72a9429..e39ef78e5 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2025_externalCodeService2.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2025_externalCodeService2.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2025_pivotDataSource.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2025_pivotDataSource.g.cs index 571779c9e..257507b08 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2025_pivotDataSource.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_spreadsheetml_2025_pivotDataSource.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_tasks_2019_documenttasks.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_tasks_2019_documenttasks.g.cs index 15bfbf7ba..6457067b8 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_tasks_2019_documenttasks.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_tasks_2019_documenttasks.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_thememl_2012_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_thememl_2012_main.g.cs index 52591bfe2..07e06fd33 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_thememl_2012_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_thememl_2012_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_webextensions_taskpanes_2010_11.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_webextensions_taskpanes_2010_11.g.cs index 105cf08eb..97df256cf 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_webextensions_taskpanes_2010_11.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_webextensions_taskpanes_2010_11.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_webextensions_webextension_2010_11.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_webextensions_webextension_2010_11.g.cs index 10ad55126..308faa5cb 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_webextensions_webextension_2010_11.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_webextensions_webextension_2010_11.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2006_wordml.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2006_wordml.g.cs index 832765846..dec46a4a4 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2006_wordml.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2006_wordml.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordml.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordml.g.cs index 515ccba15..7b56db018 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordml.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordml.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingCanvas.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingCanvas.g.cs index 18057e65d..2a4c4b350 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingCanvas.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingCanvas.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingDrawing.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingDrawing.g.cs index 8e00107fa..4ef0ea514 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingDrawing.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingDrawing.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingGroup.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingGroup.g.cs index ad15ef7b2..1efc3a86f 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingGroup.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingGroup.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingShape.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingShape.g.cs index 167c67c26..9e856e4f0 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingShape.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2010_wordprocessingShape.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2012_wordml.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2012_wordml.g.cs index 93fc0e154..c34b21063 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2012_wordml.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2012_wordml.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2012_wordprocessingDrawing.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2012_wordprocessingDrawing.g.cs index 1b17d504b..fd7125ffb 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2012_wordprocessingDrawing.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2012_wordprocessingDrawing.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2015_wordml_symex.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2015_wordml_symex.g.cs index 60dba8ff5..016d0bc89 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2015_wordml_symex.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2015_wordml_symex.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2016_wordml_cid.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2016_wordml_cid.g.cs index a66b8ffa4..a9f4b4c48 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2016_wordml_cid.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2016_wordml_cid.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2018_wordml.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2018_wordml.g.cs index 2662e3927..5adb52822 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2018_wordml.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2018_wordml.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2018_wordml_cex.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2018_wordml_cex.g.cs index 1fa1a8a6a..b20579ddc 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2018_wordml_cex.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2018_wordml_cex.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2020_oembed.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2020_oembed.g.cs index c809da8e0..a71fcc54c 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2020_oembed.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_microsoft_com_office_word_2020_oembed.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_chart.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_chart.g.cs index 8c29c40e6..5fe667f37 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_chart.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_chart.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_chartDrawing.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_chartDrawing.g.cs index b62458915..eada09672 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_chartDrawing.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_chartDrawing.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_compatibility.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_compatibility.g.cs index 1179af841..7a178c897 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_compatibility.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_compatibility.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_diagram.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_diagram.g.cs index 906a9bf9c..5a65bfa55 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_diagram.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_diagram.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_lockedCanvas.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_lockedCanvas.g.cs index 563d4b86a..ce012ab75 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_lockedCanvas.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_lockedCanvas.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_main.g.cs index 1c2d45a59..59d17210c 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_picture.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_picture.g.cs index f3d2abe0f..0c2cca7a1 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_picture.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_picture.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_spreadsheetDrawing.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_spreadsheetDrawing.g.cs index 11c1d5fa9..8f16c14d2 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_spreadsheetDrawing.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_spreadsheetDrawing.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_wordprocessingDrawing.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_wordprocessingDrawing.g.cs index 1881b6a6a..1b86300c9 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_wordprocessingDrawing.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_drawingml_2006_wordprocessingDrawing.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_bibliography.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_bibliography.g.cs index 2dce0fe80..9fa10fc69 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_bibliography.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_bibliography.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_characteristics.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_characteristics.g.cs index 5c5e66d53..973613c0c 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_characteristics.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_characteristics.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_custom-properties.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_custom-properties.g.cs index 232ce53d6..46c8346d1 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_custom-properties.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_custom-properties.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_customXml.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_customXml.g.cs index 10c25d56d..699fab896 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_customXml.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_customXml.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_docPropsVTypes.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_docPropsVTypes.g.cs index 61647199a..78dd2d4c5 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_docPropsVTypes.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_docPropsVTypes.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_extended-properties.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_extended-properties.g.cs index e5bc9724f..4bb216ade 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_extended-properties.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_extended-properties.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_math.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_math.g.cs index 9984b7147..6ffc6db67 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_math.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_officeDocument_2006_math.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_presentationml_2006_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_presentationml_2006_main.g.cs index 15efa8d47..574a8e0f4 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_presentationml_2006_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_presentationml_2006_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_schemaLibrary_2006_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_schemaLibrary_2006_main.g.cs index 60b2a5df6..52c6043f2 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_schemaLibrary_2006_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_schemaLibrary_2006_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_spreadsheetml_2006_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_spreadsheetml_2006_main.g.cs index bdd368f24..eb0c91d40 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_spreadsheetml_2006_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_spreadsheetml_2006_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Drawing; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_wordprocessingml_2006_main.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_wordprocessingml_2006_main.g.cs index bdeca0071..9737e8a87 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_wordprocessingml_2006_main.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/schemas_openxmlformats_org_wordprocessingml_2006_main.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.CustomXmlSchemaReferences; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/www_w3_org_2003_04_emma.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/www_w3_org_2003_04_emma.g.cs index b110502fc..d92418542 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/www_w3_org_2003_04_emma.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/www_w3_org_2003_04_emma.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/www_w3_org_2003_InkML.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/www_w3_org_2003_InkML.g.cs index b68f3a29f..5c0cc9678 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/www_w3_org_2003_InkML.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/www_w3_org_2003_InkML.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.EMMA; diff --git a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/www_w3_org_XML_1998_namespace.g.cs b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/www_w3_org_XML_1998_namespace.g.cs index f0f0f6b3d..e2439a285 100644 --- a/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/www_w3_org_XML_1998_namespace.g.cs +++ b/generated/DocumentFormat.OpenXml/DocumentFormat.OpenXml.Generator/DocumentFormat.OpenXml.Generator.OpenXmlGenerator/www_w3_org_XML_1998_namespace.g.cs @@ -4,6 +4,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. #nullable enable +#pragma warning disable CS0618 using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Framework;