From 9ab9a330ed56455ed1ecc85768e2f2b9b6ccbef5 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Thu, 10 Sep 2015 18:26:46 -0700 Subject: [PATCH] Adding NeutralResourcesLanguageAttribute --- .../Properties/AssemblyInfo.cs | 4 ++++ src/Microsoft.AspNet.Razor.Runtime/Properties/AssemblyInfo.cs | 4 +++- src/Microsoft.AspNet.Razor/Properties/AssemblyInfo.cs | 2 ++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Razor.Runtime.Precompilation/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.Razor.Runtime.Precompilation/Properties/AssemblyInfo.cs index 1dbf5603d7..7aa9708cf8 100644 --- a/src/Microsoft.AspNet.Razor.Runtime.Precompilation/Properties/AssemblyInfo.cs +++ b/src/Microsoft.AspNet.Razor.Runtime.Precompilation/Properties/AssemblyInfo.cs @@ -1,6 +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.Reflection; +using System.Resources; using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo("Microsoft.AspNet.Razor.Runtime.Precompilation.Test")] +[assembly: NeutralResourcesLanguage("en-us")] +[assembly: AssemblyMetadata("Serviceable", "True")] diff --git a/src/Microsoft.AspNet.Razor.Runtime/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.Razor.Runtime/Properties/AssemblyInfo.cs index ef7ad48c67..c928d1c023 100644 --- a/src/Microsoft.AspNet.Razor.Runtime/Properties/AssemblyInfo.cs +++ b/src/Microsoft.AspNet.Razor.Runtime/Properties/AssemblyInfo.cs @@ -2,7 +2,9 @@ // 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: AssemblyMetadata("Serviceable", "True")] -[assembly: InternalsVisibleTo("Microsoft.AspNet.Razor.Runtime.Test")] \ No newline at end of file +[assembly: InternalsVisibleTo("Microsoft.AspNet.Razor.Runtime.Test")] +[assembly: NeutralResourcesLanguage("en-us")] \ No newline at end of file diff --git a/src/Microsoft.AspNet.Razor/Properties/AssemblyInfo.cs b/src/Microsoft.AspNet.Razor/Properties/AssemblyInfo.cs index 76531b6add..1c15a5cb3a 100644 --- a/src/Microsoft.AspNet.Razor/Properties/AssemblyInfo.cs +++ b/src/Microsoft.AspNet.Razor/Properties/AssemblyInfo.cs @@ -2,7 +2,9 @@ // 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.Razor.Test")] [assembly: AssemblyMetadata("Serviceable", "True")] +[assembly: NeutralResourcesLanguage("en-us")] \ No newline at end of file