From 35092b72eae05083eec47be3449147fb34955070 Mon Sep 17 00:00:00 2001 From: Matt Ellis Date: Tue, 11 Nov 2014 11:29:07 -0800 Subject: [PATCH] Remove unnecessary ValidationStrings.resx file. The resources in ValidationStrings.resx were not used anywhere, so I'm just removing it as well as the coresponding designer support. --- .../src/System.Collections.Immutable.csproj | 22 +-- .../Validation/ValidationStrings.Designer.cs | 100 ------------- .../src/Validation/ValidationStrings.resx | 132 ------------------ 3 files changed, 3 insertions(+), 251 deletions(-) delete mode 100644 src/System.Collections.Immutable/src/Validation/ValidationStrings.Designer.cs delete mode 100644 src/System.Collections.Immutable/src/Validation/ValidationStrings.resx diff --git a/src/System.Collections.Immutable/src/System.Collections.Immutable.csproj b/src/System.Collections.Immutable/src/System.Collections.Immutable.csproj index c90c76d08a58..17b875766c6e 100644 --- a/src/System.Collections.Immutable/src/System.Collections.Immutable.csproj +++ b/src/System.Collections.Immutable/src/System.Collections.Immutable.csproj @@ -1,13 +1,10 @@ - + - - - + --> <_WindowsKitBinPath>C:\Program Files (x86)\Windows Kits\8.1\bin\x86 <_WindowsPhoneKitBinPath>C:\Program Files (x86)\Windows Phone Kits\8.1\bin $(_WindowsKitBinPath)\makepri.exe @@ -16,8 +13,6 @@ $(_WindowsPhoneKitBinPath)\x86\MrmEnvironmentExtDl.dll $(_WindowsPhoneKitBinPath)\x64\MrmEnvironmentExtDl.dll - - 10.0 Debug @@ -119,7 +114,6 @@ - True True @@ -127,22 +121,12 @@ - - Validation\ValidationStrings.resx - True - True - ResXFileCodeGenerator Strings.Designer.cs - - ResXFileCodeGenerator - ValidationStrings.Designer.cs - Validation - @@ -155,4 +139,4 @@ --> - + \ No newline at end of file diff --git a/src/System.Collections.Immutable/src/Validation/ValidationStrings.Designer.cs b/src/System.Collections.Immutable/src/Validation/ValidationStrings.Designer.cs deleted file mode 100644 index cf99c5da1c48..000000000000 --- a/src/System.Collections.Immutable/src/Validation/ValidationStrings.Designer.cs +++ /dev/null @@ -1,100 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.18010 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace Validation { - using System; - using System.Reflection; - - - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class ValidationStrings { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal ValidationStrings() { - } - - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { - get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("System.Collections.Immutable.Validation.ValidationStrings", typeof(ValidationStrings).GetTypeInfo().Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - - /// - /// Looks up a localized string similar to '{0}' must contain at least one element.. - /// - internal static string Argument_EmptyArray { - get { - return ResourceManager.GetString("Argument_EmptyArray", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to '{0}' cannot be an empty string ("") or start with the null character.. - /// - internal static string Argument_EmptyString { - get { - return ResourceManager.GetString("Argument_EmptyString", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to '{0}' cannot contain a null (Nothing in Visual Basic) element.. - /// - internal static string Argument_NullElement { - get { - return ResourceManager.GetString("Argument_NullElement", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The parameter "{0}" cannot consist entirely of white space characters.. - /// - internal static string Argument_Whitespace { - get { - return ResourceManager.GetString("Argument_Whitespace", resourceCulture); - } - } - } -} diff --git a/src/System.Collections.Immutable/src/Validation/ValidationStrings.resx b/src/System.Collections.Immutable/src/Validation/ValidationStrings.resx deleted file mode 100644 index d7db7e858c1a..000000000000 --- a/src/System.Collections.Immutable/src/Validation/ValidationStrings.resx +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - '{0}' must contain at least one element. - - - '{0}' cannot be an empty string ("") or start with the null character. - - - '{0}' cannot contain a null (Nothing in Visual Basic) element. - - - The parameter "{0}" cannot consist entirely of white space characters. - - \ No newline at end of file