Skip to content

Commit 369fbea

Browse files
committed
Fix NuGetPackageVerifier warnings
1 parent 1c665df commit 369fbea

2 files changed

Lines changed: 18 additions & 1 deletion

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Copyright (c) .NET Foundation. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3+
4+
using System.Reflection;
5+
using System.Resources;
6+
using System.Runtime.CompilerServices;
7+
8+
[assembly: AssemblyMetadata("Serviceable", "True")]
9+
[assembly: NeutralResourcesLanguage("en-us")]
10+
[assembly: AssemblyCompany("Microsoft Corporation.")]
11+
[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")]
12+
[assembly: AssemblyProduct("Microsoft Visual Studio")]

src/Microsoft.VisualStudio.Web.BrowserLink.Loader/project.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
{
22
"version": "14.0.0-*",
3+
"description": "A middleware that supports creating a communication channel between the development environment and one or more web browsers.",
34
"buildOptions": {
45
"warningsAsErrors": true,
5-
"keyFile": "../../tools/Key.snk"
6+
"keyFile": "../../tools/Key.snk",
7+
"xmlDoc": true,
8+
"nowarn": [
9+
"CS1591"
10+
]
611
},
712
"dependencies": {
813
"Microsoft.AspNetCore.Http.Abstractions": "1.0.0-*",

0 commit comments

Comments
 (0)