In this section:
This section describes basic Insure++ usage on Windows. Visual Studio must be installed prior to installing Insure++. See Requirements for details.
Video Tutorial for Visual Studio |
Insure++ is called using a Visual Studio configuration. The following process only needs to be performed once for each project you intend to run with Insure.
A new configuration that builds the project with Insure will be created. You can either rebuild and run the program using the IDE or on the command line.
Insra will launch and start reporting bugs. See Viewing Results for information about using Insra.
You can build with msbuild
or devenv
. The syntax is the same for both programs. Open the Visual Studio command prompt (e.g., x64 Native Tools Command Prompt for VS 2019) and run msbuild
or devenv
with an Insure++ configuration (see Creating the Insure++ Configurations), e.g.:
MSBuild -property:SolutionConfiguration=Debug/Insurex64 editor_demo_VS150.sln |
The project will be built using the Insurex64 configuration, which will instrument the code so that Insure can capture debug information.
Run the executable and Insure will launch. See Viewing Results for information about using Insra.
You can invoke Insure++ instead of CL directly on the command line. See Command Line for additional information.