Book Image

Visual Studio 2019 Tricks and Techniques

By : Paul Schroeder, Aaron Cure
Book Image

Visual Studio 2019 Tricks and Techniques

By: Paul Schroeder, Aaron Cure

Overview of this book

Visual Studio 2019 (VS 2019) and Visual Studio Code (VS Code) are powerful professional development tools that help you to develop applications for any platform with ease. Whether you want to create web, mobile, or desktop applications, Microsoft Visual Studio is your one-stop solution. This book demonstrates some of the most sophisticated capabilities of the tooling and shows you how to use the integrated development environment (IDE) more efficiently to be more productive. You’ll begin by gradually building on concepts, starting with the basics. The introductory chapters cover shortcuts, snippets, and numerous optimization tricks, along with debugging techniques, source control integration, and other important IDE features that will help you make your time more productive. With that groundwork in place, more advanced concepts such as the inner workings of project and item templates are covered. You will also learn how to write quality, secure code more efficiently as well as discover how certain Visual Studio features work 'under the hood'. By the end of this Visual Studio book, you’ll have learned how to write more secure code faster than ever using your knowledge of the extensions and processes that make developing successful solutions more enjoyable and repeatable.
Table of Contents (21 chapters)
1
Section 1: Visual Studio IDE Productivity Essentials
9
Section 2: Customizing Project Templates and Beyond
13
Section 3: Leveraging Extensions for the Win

Fixing problems in the template definition

The reason we received a build error in the prior exercise is because, by default, the wizard we used previously to export project templates does not include a <RootNamespace> element in the bundled project file. One terrible option would be to tell users of our template to manually edit the generated .csproj project file to insert a line, such as the following, for the missing element:

<RootNamespace>WPF_Console_Starter1</RootNamespace>

A better option is to tweak our template bundle a bit to avoid the issue altogether, and that is what we will cover in the next exercise.

Time saver

If you prefer to skim the following detailed steps for fixing the template issues, you may simply skip to the next exercise and use the WPF Console Starter Fixed.zip file that is provided in the Completed folder alongside the code for this chapter. It contains the fixes that we walk through in this exercise.

Of course, as long...