October 2016
Intermediate to advanced
452 pages
9h 47m
English
In order to compile and run code from Visual Studio, it must be done from within a project.
In this recipe, we will identify how to create an actual executable running program from Visual Studio. We will do so by creating a project in Visual Studio to host, organize, and compile the code.
In Visual Studio, each group of code is contained within something called a
Project. A Project is a buildable conglomerate of code and assets that produce either an executable (.exe runnable) or a library (.lib, or .dll). A group of Projects can be collected together into something called a
Solution. Let's start by constructing a Visual Studio Solution and Project for a ...
Read now
Unlock full access