From 2bea8c56915a4c6e738fc8dc7e386086255b4ae0 Mon Sep 17 00:00:00 2001 From: jakobdyrby Date: Fri, 6 Jun 2014 13:50:39 +0200 Subject: [PATCH] back to const --- src/Umbraco.Core/Constants-Packaging.cs | 82 ++++++++++++------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/src/Umbraco.Core/Constants-Packaging.cs b/src/Umbraco.Core/Constants-Packaging.cs index 0beb034508..5db3d02532 100644 --- a/src/Umbraco.Core/Constants-Packaging.cs +++ b/src/Umbraco.Core/Constants-Packaging.cs @@ -7,47 +7,47 @@ /// public static class Packaging { - public static readonly string UmbPackageNodeName = "umbPackage"; - public static readonly string DataTypesNodeName = "DataTypes"; - public static readonly string PackageXmlFileName = "package.xml"; - public static readonly string UmbracoPackageExtention = ".umb"; - public static readonly string DataTypeNodeName = "DataType"; - public static readonly string LanguagesNodeName = "Languages"; - public static readonly string FilesNodeName = "files"; - public static readonly string StylesheetsNodeName = "Stylesheets"; - public static readonly string TemplatesNodeName = "Templates"; - public static readonly string NameNodeName = "Name"; - public static readonly string TemplateNodeName = "Template"; - public static readonly string AliasNodeNameSmall = "alias"; - public static readonly string AliasNodeNameCapital = "Alias"; - public static readonly string DictionaryItemsNodeName = "DictionaryItems"; - public static readonly string DictionaryItemNodeName = "DictionaryItem"; - public static readonly string MacrosNodeName = "Macros"; - public static readonly string DocumentSetNodeName = "DocumentSet"; - public static readonly string DocumentTypesNodeName = "DocumentTypes"; - public static readonly string DocumentTypeNodeName = "DocumentType"; - public static readonly string FileNodeName = "file"; - public static readonly string OrgNameNodeName = "orgName"; - public static readonly string OrgPathNodeName = "orgPath"; - public static readonly string GuidNodeName = "guid"; - public static readonly string StylesheetNodeName = "styleSheet"; - public static readonly string MacroNodeName = "macro"; - public static readonly string InfoNodeName = "info"; - public static readonly string PackageRequirementsMajorXpath = "./package/requirements/major"; - public static readonly string PackageRequirementsMinorXpath = "./package/requirements/minor"; - public static readonly string PackageRequirementsPatchXpath = "./package/requirements/patch"; - public static readonly string PackageNameXpath = "./package/name"; - public static readonly string PackageVersionXpath = "./package/version"; - public static readonly string PackageUrlXpath = "./package/url"; - public static readonly string PackageLicenseXpath = "./package/license"; - public static readonly string AuthorNameXpath = "./author/name"; - public static readonly string AuthorWebsiteXpath = "./author/website"; - public static readonly string ReadmeXpath = "./readme"; - public static readonly string ControlNodeName = "control"; - public static readonly string ActionNodeName = "Action"; - public static readonly string ActionsNodeName = "Actions"; - public static readonly string UndoNodeAttribute = "undo"; - public static readonly string RunatNodeAttribute = "runat"; + public const string UmbPackageNodeName = "umbPackage"; + public const string DataTypesNodeName = "DataTypes"; + public const string PackageXmlFileName = "package.xml"; + public const string UmbracoPackageExtention = ".umb"; + public const string DataTypeNodeName = "DataType"; + public const string LanguagesNodeName = "Languages"; + public const string FilesNodeName = "files"; + public const string StylesheetsNodeName = "Stylesheets"; + public const string TemplatesNodeName = "Templates"; + public const string NameNodeName = "Name"; + public const string TemplateNodeName = "Template"; + public const string AliasNodeNameSmall = "alias"; + public const string AliasNodeNameCapital = "Alias"; + public const string DictionaryItemsNodeName = "DictionaryItems"; + public const string DictionaryItemNodeName = "DictionaryItem"; + public const string MacrosNodeName = "Macros"; + public const string DocumentSetNodeName = "DocumentSet"; + public const string DocumentTypesNodeName = "DocumentTypes"; + public const string DocumentTypeNodeName = "DocumentType"; + public const string FileNodeName = "file"; + public const string OrgNameNodeName = "orgName"; + public const string OrgPathNodeName = "orgPath"; + public const string GuidNodeName = "guid"; + public const string StylesheetNodeName = "styleSheet"; + public const string MacroNodeName = "macro"; + public const string InfoNodeName = "info"; + public const string PackageRequirementsMajorXpath = "./package/requirements/major"; + public const string PackageRequirementsMinorXpath = "./package/requirements/minor"; + public const string PackageRequirementsPatchXpath = "./package/requirements/patch"; + public const string PackageNameXpath = "./package/name"; + public const string PackageVersionXpath = "./package/version"; + public const string PackageUrlXpath = "./package/url"; + public const string PackageLicenseXpath = "./package/license"; + public const string AuthorNameXpath = "./author/name"; + public const string AuthorWebsiteXpath = "./author/website"; + public const string ReadmeXpath = "./readme"; + public const string ControlNodeName = "control"; + public const string ActionNodeName = "Action"; + public const string ActionsNodeName = "Actions"; + public const string UndoNodeAttribute = "undo"; + public const string RunatNodeAttribute = "runat"; } } } \ No newline at end of file