Walkthrough: Building an Application
Note
This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
By completing this walkthrough, you’ll become more familiar with several options that you can configure when you build applications with Visual Studio. You’ll create a custom build configuration, hide certain warning messages, and increase build output information, among other tasks, for a sample application.
This topic contains the following sections:
Install the Sample Application
Create a Custom Build Configuration
Display Additional Build Details in the Output Window
To install the sample application
On the menu bar, choose Tools, Extensions and Updates.
Choose the Online category, and then choose the Samples Gallery category.
Specify
Introduction
in the search box to find the sample.In the results list, choose either Introduction to Building WPF Applications (Visual C#) or Introduction to Building WPF Applications (Visual Basic).
Choose the Download button, and then choose the Close button.
The Introduction to Building WPF Applications sample appears in the New Project dialog box.
To create a solution for the sample application
Open the New Project dialog box.
In the Installed category, choose the Samples category to display the Introduction to Building WPF Applications sample.
Name the solution
IntroWPFcsharp
for Visual C#.OR
Name the solution
IntroWPFvb
for Visual Basic.Choose the OK button.
Create a Custom Build Configuration
When you create a solution, debug and release build configurations and their default platform targets are defined for the solution automatically. You can then customize these configurations or create your own. Build configurations specify the build type. Build platforms specify the operating system that an application targets for that configuration. For more information, see Understanding Build Configurations, Understanding Build Platforms, and Debug and Release Project Configurations.
You can change or create configurations and platform settings by using the Configuration Manager dialog box. In this procedure, you’ll create a build configuration for testing.
To create a build configuration
Open the Configuration Manager dialog box.
In the Active solution configuration list, choose New.
In the New Solution Configuration dialog box, name the new configuration
Test
, copy settings from the existing Debug configuration, and then choose the OK button.In the Active solution platform list, choose New.
In the New Solution Platform dialog box, choose x64, and don’t copy settings from the x86 platform.
Choose the OK button.
The active solution configuration has been changed to Test with the active solution platform set to x64.
You can quickly verify or change the active solution configuration by using the Solution Configurations list on the Standard toolbar.
Build the Application
Next, you’ll build the solution with the custom build configuration.
To build the solution
On the menu bar, choose Build, Build Solution.
The Output window displays the results of the build. The build succeeded, but several warning messages were generated.
Figure 1: Visual Basic warnings
Figure 2: Visual C# warnings
Hide Compiler Warnings
You can temporarily hide certain warning messages during a build rather than have them clutter up the build output.
To hide a specific Visual C# warning
In Solution Explorer, choose the top-level project node.
On the menu bar, choose View, Property Pages.
The Project Designer opens.
Choose the Build page and then, in the Suppress warnings box, specify the warning number
1762
.For more information, see Build Page, Project Designer (C#).
Build the solution.
The Output window displays only summary information for the build.
To suppress all Visual Basic build warnings
In Solution Explorer, choose the top-level project node.
On the menu bar, choose View, Property Pages.
The Project Designer opens.
On the Compile page, select the Disable all warnings check box.
For more information, see Configuring Warnings in Visual Basic.
Build the solution.
The Output window displays only summary information for the build.
For more information, see How to: Suppress Compiler Warnings.
Display Additional Build Details in the Output Window
You can change how much information about the build process appears in the Output window. Build verbosity is usually set to Minimal, which means that the Output window displays only a summary of the build process along with any high priority warnings or errors. You can display more information about the build by using the Options Dialog Box, Projects and Solutions, Build and Run.
Important
If you display more information, the build will take longer to complete.
To change the amount of information in the Output window
Open the Options dialog box.
Choose the Projects and Solutions category, and then choose the Build and Run page.
In the MSBuild project build output verbosity list, choose Normal, and then choose the OK button.
On the menu bar, choose Build, Clean Solution.
Build the solution, and then review the information in the Output window.
The build information includes the time that the build started (located at the beginning), the order in which files were processed, and the amount of time that the process took to complete (located at the end). This information also includes the actual compiler syntax that Visual Studio runs during the build.
For example, in the Visual C# build, the /nowarn option lists the warning code, 1762, that you specified earlier in this topic, along with three other warnings.
In the Visual Basic build, /nowarn doesn’t include specific warnings to exclude, so no warnings appear.
Tip
You can search the contents of the Output window if you display the Find dialog box by choosing the Ctrl+F keys.
For more information, see How to: View, Save, and Configure Build Log Files.
Create a Release Build
You can build a version of the sample application that’s optimized for shipping it. For the release build, you’ll specify that the executable is copied to a network share before the build is kicked off.
For more information, see How to: Change the Build Output Directory and Building and Cleaning Projects and Solutions in Visual Studio.
To specify a release build for Visual Basic
Open the Project Designer.
Choose the Compile page.
In the Configuration list, choose Release.
In the Platform list, choose x86.
In the Build output path box, specify a network path.
For example, you can specify \\myserver\builds.
Important
A message box might appear, warning you that the network share that you’ve specified might not be a trusted location. If you trust the location that you’ve specified, choose the OK button in the message box.
Build the application.
To specify a release build for Visual C#
Open the Project Designer.
Choose the Build page.
In the Configuration list, choose Release.
In the Platform list, choose x86.
In the Output path box, specify a network path.
For example, you could specify \\myserver\builds.
Important
A message box might appear, warning you that the network share that you’ve specified might not be a trusted location. If you trust the location that you’ve specified, choose the OK button in the message box.
Build the application.
The executable file is copied to the network path that you specified. Its path would be \\myserver\builds\FileName.exe.
Congratulations: you’ve successfully completed this walkthrough.