In this chapter, I describe the key features that Visual Studio provides for developing ASP.NET Core MVC projects. Table 6-1 summarizes the chapter.
Table 6-1. Chapter Summary
Problem | Solution | Listing |
---|---|---|
Add .NET packages to a project | Edit the dependencies section of the project.json file or use the NuGet tool | 1-6 |
Add JavaScript or CSS packages to a project | Create a bower.json file and add the required packages to the dependencies section. | 7, 8 |
See the effect of view or class changes | Use the iterative development model | 9–11 |
Display detailed messages in the browser | Use developer exception pages | 12 |
Get detailed ... |