From 5bf429d212abe987c5b9c2308ebfc844157557a6 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Thu, 10 Sep 2015 16:41:24 -0700 Subject: [PATCH] Adding NeutralResourcesLanguageAttribute --- .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 3 ++- .../Properties/AssemblyInfo.cs | 4 +++- .../Properties/AssemblyInfo.cs | 3 ++- 6 files changed, 13 insertions(+), 6 deletions(-) diff --git a/src/Microsoft.AspNet.Cryptography.Internal/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.Cryptography.Internal/Properties/AssemblyInfo.cs index 7b1f473f6f..5f65cef6e8 100644 --- a/src/Microsoft.AspNet.Cryptography.Internal/Properties/AssemblyInfo.cs +++ b/src/Microsoft.AspNet.Cryptography.Internal/Properties/AssemblyInfo.cs @@ -1,8 +1,8 @@ // Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -using System; using System.Reflection; +using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; @@ -16,3 +16,4 @@ using System.Runtime.InteropServices; [assembly: InternalsVisibleTo("Microsoft.AspNet.DataProtection.Abstractions.Test")] [assembly: InternalsVisibleTo("Microsoft.AspNet.DataProtection.Test")] [assembly: AssemblyMetadata("Serviceable", "True")] +[assembly: NeutralResourcesLanguage("en-US")] diff --git a/src/Microsoft.AspNet.Cryptography.KeyDerivation/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.Cryptography.KeyDerivation/Properties/AssemblyInfo.cs index 1e3c9f69aa..19dcc92ab2 100644 --- a/src/Microsoft.AspNet.Cryptography.KeyDerivation/Properties/AssemblyInfo.cs +++ b/src/Microsoft.AspNet.Cryptography.KeyDerivation/Properties/AssemblyInfo.cs @@ -1,9 +1,10 @@ // Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -using System; using System.Reflection; +using System.Resources; using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo("Microsoft.AspNet.Cryptography.KeyDerivation.Test")] [assembly: AssemblyMetadata("Serviceable", "True")] +[assembly: NeutralResourcesLanguage("en-US")] diff --git a/src/Microsoft.AspNet.DataProtection.Abstractions/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.DataProtection.Abstractions/Properties/AssemblyInfo.cs index 19e5fabbbb..c1bee7c37f 100644 --- a/src/Microsoft.AspNet.DataProtection.Abstractions/Properties/AssemblyInfo.cs +++ b/src/Microsoft.AspNet.DataProtection.Abstractions/Properties/AssemblyInfo.cs @@ -1,10 +1,11 @@ // Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -using System; using System.Reflection; +using System.Resources; using System.Runtime.CompilerServices; // for unit testing [assembly: InternalsVisibleTo("Microsoft.AspNet.DataProtection.Abstractions.Test")] [assembly: AssemblyMetadata("Serviceable", "True")] +[assembly: NeutralResourcesLanguage("en-US")] diff --git a/src/Microsoft.AspNet.DataProtection.Extensions/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.DataProtection.Extensions/Properties/AssemblyInfo.cs index ff8e404744..f1012ed502 100644 --- a/src/Microsoft.AspNet.DataProtection.Extensions/Properties/AssemblyInfo.cs +++ b/src/Microsoft.AspNet.DataProtection.Extensions/Properties/AssemblyInfo.cs @@ -1,9 +1,10 @@ // Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -using System; using System.Reflection; +using System.Resources; using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo("Microsoft.AspNet.DataProtection.Extensions.Test")] [assembly: AssemblyMetadata("Serviceable", "True")] +[assembly: NeutralResourcesLanguage("en-US")] diff --git a/src/Microsoft.AspNet.DataProtection.SystemWeb/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.DataProtection.SystemWeb/Properties/AssemblyInfo.cs index 025a94598c..3f4a3b62e0 100644 --- a/src/Microsoft.AspNet.DataProtection.SystemWeb/Properties/AssemblyInfo.cs +++ b/src/Microsoft.AspNet.DataProtection.SystemWeb/Properties/AssemblyInfo.cs @@ -2,5 +2,7 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Reflection; +using System.Resources; -[assembly: AssemblyMetadata("Serviceable", "True")] \ No newline at end of file +[assembly: AssemblyMetadata("Serviceable", "True")] +[assembly: NeutralResourcesLanguage("en-US")] diff --git a/src/Microsoft.AspNet.DataProtection/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.DataProtection/Properties/AssemblyInfo.cs index 08f1c43511..a859f1608f 100644 --- a/src/Microsoft.AspNet.DataProtection/Properties/AssemblyInfo.cs +++ b/src/Microsoft.AspNet.DataProtection/Properties/AssemblyInfo.cs @@ -1,11 +1,12 @@ // Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -using System; using System.Reflection; +using System.Resources; using System.Runtime.CompilerServices; // for unit testing [assembly: InternalsVisibleTo("Microsoft.AspNet.DataProtection.Test")] [assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")] [assembly: AssemblyMetadata("Serviceable", "True")] +[assembly: NeutralResourcesLanguage("en-US")]