alap
alap

Reputation: 647

Project with multiple DLL output

Problem

I have to convert legacy code to Visual Studio 2010 projects/solution system. Is it possible to generate multiple .dll files from the same project? The idea would be not to create more projects then needed. After creation I could just include the header files or load it at run ...

Upvotes: 0

Views: 934

Answers (1)

SketchyLizard
SketchyLizard

Reputation: 56

Each Project will create one DLL so you would need one Project per DLL. You could have them all in the same Solution though.

Upvotes: 2

Related Questions