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