Improve web.config transform content (#6647)

pull/6622/merge
Luke Latham 2018-05-29 20:47:33 -05:00 committed by Rick Anderson
parent a5928a33e1
commit 82a7af93b1
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ The IIS Integration Middleware, which configures Forwarded Headers Middleware, a
### web.config file
The *web.config* file configures the [ASP.NET Core Module](xref:fundamentals/servers/aspnet-core-module). Creating, transforming, and publishing *web.config* is handled by the .NET Core Web SDK (`Microsoft.NET.Sdk.Web`). The SDK is set at the top of the project file:
The *web.config* file configures the [ASP.NET Core Module](xref:fundamentals/servers/aspnet-core-module). Creating, transforming, and publishing the *web.config* file is handled by an MSBuild target (`_TransformWebConfig`) when the project is published. This target is present in the Web SDK targets (`Microsoft.NET.Sdk.Web`). The SDK is set at the top of the project file:
```xml
<Project Sdk="Microsoft.NET.Sdk.Web">