In C++ you are able to compile files that are not included in the solution, with c# this is not the case.
Is there a way to keep a file in a project but not have the standard SCCI provider attempt to keep checking in the file?
Essentially what we are wanting to do is to create "by developer" code ability similar to how we code in c++, this allows for us to let our developers do nightly check-ins with pseudo code and by-developer utilities.
#ifdef (TOM)
#include "Tom.h";
#endif
EDIT I don't want to create new configurations in the solution file either, I want these to be as machine specific as possible, without source control bindings to the user on the file/setting.