Is there a way to have an empty Project in Visual Studio 2008 or 2010? I do not mean an empty solution, I mean an empty project in a solution. Basically I have a solution with multiple projects, and I want to add a project to track some static files that are part of the solution but not of any specific project. Adding them as solution files doesn't work because solution folders are not mapped to file system folders and I want to manage hierarchy from Visual Studio.

At the moment I create an empty Visual C# project which works, but I just wonder if there is a "more empty" project.

link|improve this question

What type of files do you want to add ? and do you want to do with them ? – Yassir Dec 3 '09 at 0:14
In my case it's the Sharepoint 14-Hive. Basically I need to mirror the file system (including subfolders) to track any files I add to it. Sometimes, these files are simple graphics or CSS Files and as such not part of any Development Project, but I still like to track them. The main need is to move and rename them and have those changes mirrored in the file system. Also, source control is easier that way for me. – Michael Stum Dec 3 '09 at 0:19
So, what's the actual problem? Why is empty not empty enough? – Hans Passant Dec 3 '09 at 1:49
1  
There is no "Empty Project" in Visual Studio, only "Empty Solution", and solution folders don't work as they do not affect the file system. An "Empty C# Project" still has Compiler Options and the "References" virtual folder, and I was hoping to get rid of them. – Michael Stum Dec 3 '09 at 1:56
feedback

2 Answers

up vote 4 down vote accepted

The Visual C++ project types has an "Empty Project" in the "General" category.

It comes up with several empty folders ("Header Files", "Resource Files", "Source Files") that are just 'filters' (they aren't on the file system). You can just remove them.

It also has all the properties of a C++ project available, so don't put C/C++ files in there unless you want them built (or you exclude them from the build).

Other than that, it's pretty empty.

Probably even closer to an "empty project" is a "Makefile Project" which is also located in the "General" category of the Visual C++ project templates. It also creates the 3 filter folders, along with a readme.txt file that you can delete. It has the advantage that unless you specifically give it commands to run during the build, it won't do a damn thing.

link|improve this answer
The empty C++ project won't do a 'damn' thing either when you go to Project Properties and select Utility under Configuration Type under the General tab. – Abel Feb 2 '10 at 16:17
1  
Shame you can't add folders to the project. I ended up just using an empty C# project because of this – MPritch Feb 11 '10 at 16:58
feedback

Sounds to me like you want a solution folder!

link|improve this answer
3  
Solution Folders to not mirror Directory Hierarchy. If I create a solution folder inside another solution folder and move a file into it, the file does not actually get moved into that folder in the filesystem. – Michael Stum Dec 3 '09 at 0:17
Ah fair, i thought it was likely to simple to to be true, but you never know! – Paul Creasey Dec 3 '09 at 0:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.