How can I create a project file (VS 2008) that has only some data files and does not have inline output?
I can create an empty project and add my data files (which are copied to the output folder) to it, but it creates the EmptyProject.dll file after assembly. I want only my data files in the output directory, and not some empty DLL or EXE.
I want the data files to be the only ones in this project, as the project will be used in several solutions.
Our application is C #. All our usual code projects are C #.
Data files are schemas (XSD). I want these schemes to be in the output folder, but I do not want them to be included in an existing project. I need a project called Schemes that has nothing but XSD files and does nothing but copy XSD files to the output folder. I would like this to be in the project file, so that the same schema project can be referenced in several solutions.
visual studio
Nascared
source share