Skip to content
This repository was archived by the owner on Apr 11, 2020. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions known-issues-vs2017.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,3 +219,34 @@ In Core projects, item templates such as "npm Configuration File", "Bower Config

* #### Workaround:
Edit the supplied file name before or after creating the file.


### Full Scaffolding setting the wrong Layout file

When using the full scaffolding, the following files are created in the **Views** folder.
* Views
* Shared
* Error.cshtml
* Layout.cshtml
* \_ViewImports.cshtml
* \_ViewStart.cshtml

The \_ViewStart.cshtml generated, references the wrong layout file
```
@{
Layout = "_Layout";
}
```

Instead of

```
@{
Layout = "Layout";
}
```