up vote 1 down vote favorite
share [g+] share [fb]

I've got a really large project I made for myself and rece3ntly a client asked for their own version of it with some modifications. The project name was rather silly and my client wants the source so I figured it'd be best if I renamed all my files from

sillyname.h sillyname.cpp sillyname.dsp

etc.. Unfortunatly after I added everything back together I can't see any way to change the project name itself. Plus now I'm getting this error on compilation.

main.obj : error LNK2001: unresolved external symbol __imp__InitCommonControls@0 Debug/New_Name_Thats_not_so_silly.exe : fatal error LNK1120: 1 unresolved externals Error executing link.exe.

There has to be an easier way to change all this, right?

link|improve this question
Alright It actually compiles fine just the Debug Version doesn't... Strange. – Jack Sep 26 '08 at 21:00
This comment is in response to "where is solution explorer?" Here are some images of where it is: images.google.com/… – que que Sep 26 '08 at 21:08
If only the debug version is bad, then did you try a CLEAN, then rebuild? just one more idea. apologies if you already tried that. :) – que que Sep 26 '08 at 21:09
feedback

4 Answers

Here is a Step by Step on Steve Andrews' blog (he works on Visual Studio at Microsoft)

link|improve this answer
"When you rename a project, most likely you will want to rename the output assembly and/or the root namespace for the project. To do this, right-click on the project node and choose Properties. You can also double-click on the Properties (C#) or My Project (VB) node. " Where is Solution Explorer? – Jack Sep 26 '08 at 20:53
This comment is in response to "where is solution explorer?" maybe a google image search will turn up some helpful screenshot that is recognizable: images.google.com/… – que que Sep 26 '08 at 21:06
If it's not already on screen (looking like que's link) try the menu item "View | Solution Explorer" OR type Ctrl+Alt+L – Ray Hayes Sep 26 '08 at 21:26
feedback

I haven't verified this, but I've done this a number of times and if my memory serves me right, you can actually use the search-and-replace functionality in VS2005 to rename all instances of the string "X" to "Y" in any type of file. Then you need to close the solution and change the project (and any other file with the same name regardless of extension) file name(s).

You will obviously need to do a full rebuild afterwards.

link|improve this answer
Actually this is what I did initially. The worst part is I just found a tool that does this and I'm still getting the same error on compile.. grr – Jack Sep 26 '08 at 20:56
feedback

You can simply rename the .vcproj or .dsp file and then either create a new workspace (sln dsw) and include the renamed project or simply chnage the name inside the sln file (it's just xml) I can't remember the format of the old workspace but it's still text.

You can either manually rename and reinclude all the .cpp of edit the project file and rename them in there.

sorry don't know of refactoring tool that will do all this but there probably is one.

link|improve this answer
feedback

I assume that in addition to the directory in which you now have the totally renamed set of files, I assume that you also still maintain a complete "parallel" set of the original files in some other directory, am I right?

Assuming you have both versions, what I would do (and what I personally have done in the past) is:

Get a file comparison tool like Beyond Compare or DiffMerge and compare the old SLN file and the new SLN file side-by-side. Also do this for each "proj" file and any other "config" type files.

It is possible to edit these files by hand. Usually looking at what is different between two copies will help illuminate what you should do to get the second one working.

You might as well start tinkering with the renamed project by hand, anyway, given that it already isn't working. You can't make it too much worse. And: you might learn some handy tricks about the XML structure of these files.

Even if you do make small mistakes when hand-tweaking this files, I have repeatedly been very impressed by how Visual Studio handles things. Visual Studio will usually tell you exactly where you got it wrong with a message like this:

alt text

link|improve this answer
feedback

Your Answer

 
or
required, but never shown