Visual Studio 1 Solution and 3 Projects, is it possible to separate them later?

Asked

Viewed 71 times

-1

I am 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 am creating 3).

After ready, I can export the . EXE separately?

How to do?

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

  • What you call exporting?

  • generate the EXE for the client

  • I want to generate 1 EXE for each project

1 answer

2


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

Just don’t put all your projects in a single solution if they have no relationship between them.

Documentation.

Some ways to structure the solution.

  • and how do I generate the EXE separately?

  • 1

    If you have separate projects, build will generate separate executables. Have you tried this? It’s the default. You can choose which ones you want to generate or not: https://i.stack.Imgur.com/Bc3qw.png

  • thanks, I’m learning yet. ^^

Browser other questions tagged

You are not signed in. Login or sign up in order to post.