From 150df1659a4bde98ce10b99d53e02897474c11e8 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Thu, 10 Sep 2015 17:57:16 -0700 Subject: [PATCH] Adding NeutralResourcesLanguageAttribute --- .../Properties/AssemblyInfo.cs | 4 +++- src/Microsoft.AspNet.Identity/Properties/AssemblyInfo.cs | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Identity.EntityFramework/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.Identity.EntityFramework/Properties/AssemblyInfo.cs index 025a94598c..b16f6dfb0a 100644 --- a/src/Microsoft.AspNet.Identity.EntityFramework/Properties/AssemblyInfo.cs +++ b/src/Microsoft.AspNet.Identity.EntityFramework/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.Identity/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.Identity/Properties/AssemblyInfo.cs index f5e47b4cd6..12326d7e7c 100644 --- a/src/Microsoft.AspNet.Identity/Properties/AssemblyInfo.cs +++ b/src/Microsoft.AspNet.Identity/Properties/AssemblyInfo.cs @@ -2,6 +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; using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo("Microsoft.AspNet.Identity.Test")] @@ -9,3 +10,4 @@ using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo("Microsoft.AspNet.Identity.EntityFramework.InMemory.Test")] [assembly: InternalsVisibleTo("Microsoft.AspNet.Identity.InMemory.Test")] [assembly: AssemblyMetadata("Serviceable", "True")] +[assembly: NeutralResourcesLanguage("en-us")]