diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-05 09:50:53 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-05 09:50:53 -0700 |
commit | 2a67db4f550ecdb86e9adb05fb46b42650a375c0 (patch) | |
tree | 2e162a1785075dc76113cfc6f6facb8604c9220e /src/DotNetOpenAuth.OAuth2.Client/OAuth2/ClientStrings.Designer.cs | |
parent | 90ec615c3a45e2b620d4270826aee85eba4f368a (diff) | |
download | DotNetOpenAuth-2a67db4f550ecdb86e9adb05fb46b42650a375c0.zip DotNetOpenAuth-2a67db4f550ecdb86e9adb05fb46b42650a375c0.tar.gz DotNetOpenAuth-2a67db4f550ecdb86e9adb05fb46b42650a375c0.tar.bz2 |
Fixed peverify errors in unified assembly due to two resources sharing a common manifest name.
Related to #112 which reported peverify errors, but this is very unlikely to fix the VerificationException.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2.Client/OAuth2/ClientStrings.Designer.cs')
-rw-r--r-- | src/DotNetOpenAuth.OAuth2.Client/OAuth2/ClientStrings.Designer.cs | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.OAuth2.Client/OAuth2/ClientStrings.Designer.cs b/src/DotNetOpenAuth.OAuth2.Client/OAuth2/ClientStrings.Designer.cs new file mode 100644 index 0000000..9564704 --- /dev/null +++ b/src/DotNetOpenAuth.OAuth2.Client/OAuth2/ClientStrings.Designer.cs @@ -0,0 +1,99 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// This code was generated by a tool. +// Runtime Version:4.0.30319.17614 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// </auto-generated> +//------------------------------------------------------------------------------ + +namespace DotNetOpenAuth.OAuth2 { + using System; + + + /// <summary> + /// A strongly-typed resource class, for looking up localized strings, etc. + /// </summary> + // 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 ClientStrings { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ClientStrings() { + } + + /// <summary> + /// Returns the cached ResourceManager instance used by this class. + /// </summary> + [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("DotNetOpenAuth.OAuth2.ClientStrings", typeof(ClientStrings).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// <summary> + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// </summary> + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// <summary> + /// Looks up a localized string similar to Access token has expired and cannot be automatically refreshed.. + /// </summary> + internal static string AccessTokenRefreshFailed { + get { + return ResourceManager.GetString("AccessTokenRefreshFailed", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized string similar to Authorization has expired.. + /// </summary> + internal static string AuthorizationExpired { + get { + return ResourceManager.GetString("AuthorizationExpired", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized string similar to Unexpected OAuth authorization response received with callback and client state that does not match an expected value.. + /// </summary> + internal static string AuthorizationResponseUnexpectedMismatch { + get { + return ResourceManager.GetString("AuthorizationResponseUnexpectedMismatch", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized string similar to The property {0} must be set before this operation is allowed.. + /// </summary> + internal static string RequiredPropertyNotYetPreset { + get { + return ResourceManager.GetString("RequiredPropertyNotYetPreset", resourceCulture); + } + } + } +} |