Add `AssemblyCompany`, `AssemblyCopyright` and `AssemblyProduct` attributes to the assembly.

This commit is contained in:
N. Taylor Mullen 2016-04-04 16:25:47 -07:00
parent 687fd72efd
commit a140440196
1 changed files with 4 additions and 1 deletions

View File

@ -6,4 +6,7 @@ using System.Resources;
using System.Runtime.CompilerServices;
[assembly: AssemblyMetadata("Serviceable", "True")]
[assembly: NeutralResourcesLanguage("en-us")]
[assembly: NeutralResourcesLanguage("en-us")]
[assembly: AssemblyCompany("Microsoft Corporation.")]
[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")]
[assembly: AssemblyProduct("Microsoft ASP.NET Core")]