In Visual Studio 2008 project properties, Application tab, I can set the Output type to Windows Application, Console Application, or Class Library. I have a project that I want to build as a stand-alone tool (console app) and be available to a couple other tools I'm working on as a class library.
The VS GUI only lets me choose one or the other, and building the proj twice all the time is inconvenient.
How can I set it up to build both output types in a single build job? Do I write some custom MSBuild .targets file or what?
Create Unit Teststo generate a test project, it'll turn out slightly differently depending on whether the main project was set to Console App or Class Lib at the time, so that switching the main proj back & forth will alternately break the build of the test proj. Lame. – East of Nowhere Mar 17 '10 at 23:00