Link to C# default NoWarn values (#10828)
parent
0654589615
commit
9d317b9e31
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in New Issue