Link to C# default NoWarn values (#10828)

pull/10838/head
Scott Addie 2019-02-06 15:59:17 -06:00 committed by GitHub
parent 0654589615
commit 9d317b9e31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ author: zuckerthoben
description: Learn how to add Swashbuckle to your ASP.NET Core web API project to integrate the Swagger UI.
ms.author: scaddie
ms.custom: mvc
ms.date: 12/18/2018
ms.date: 02/06/2019
uid: tutorials/get-started-with-swashbuckle
---
# Get started with Swashbuckle and ASP.NET Core
@ -198,7 +198,7 @@ Enabling XML comments provides debug information for undocumented public types a
warning CS1591: Missing XML comment for publicly visible type or member 'TodoController.GetAll()'
```
To suppress warnings project-wide, define a semicolon-delimited list of warning codes to ignore in the project file. Appending the warning codes to `$(NoWarn);` applies the C# default values too.
To suppress warnings project-wide, define a semicolon-delimited list of warning codes to ignore in the project file. Appending the warning codes to `$(NoWarn);` applies the [C# default values](https://github.com/dotnet/sdk/blob/2eb6c546931b5bcb92cd3128b93932a980553ea1/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.CSharp.props#L16) too.
::: moniker range=">= aspnetcore-2.0"