Visual Studio 1 Solution and 3 Projects, can you separate them later?

0

I'm using Visual Studio 2015. In it I realized that I can have 1 Solution and as many projects as I want (in this case I'm creating 3).

After ready, can I export the .EXE separately?

How to do it?

Note: I could not do a better title for the question.

    
asked by anonymous 12.12.2016 / 00:11

1 answer

1

The idea is just this. The solution is a way of grouping a set of projects that make sense to work together, what matters even from the technical point of view and not only organization is the project. Each project will generate a unit of code, it can be a .exe , a .dll or even a .lib in some rare cases. So the projects are even independent.

Just do not put all your projects in one solution if they are not related.

Documentation .

Some ways to structure the solution .

    
12.12.2016 / 00:51