Rename project folder in Visual studio and Team foundation server - visual-studio

My Visual Studio 2013 solution has a project "Test". I can rename it in solution explorer, but I also want to rename the project folder in disk and also reflect the change in Source Control(TFS). How can I easily do this?
Thank you

#CodeCaster, Thank you. Based on your advice, I have done some quick experiment, and worked it out. First step is rename the folder name in TFS; the new folder will appear in local workspace and all contents of the folder moved to this new folder. The old folder stays there with rest content which not belong to source control. You can delete it manually.
Or
Using TFS Power Tools to rename from Explorer.

I followed those steps to preserve the version history of the files inside of TFS:
Rename/move project file (.csproj) in source control explorer in VS (alternatively, this also works from within VS Solution explorer, simply select "rename")
Rename/move project folder in source control explorer in VS
now the project should be unavailable in VS, solution also gets closed
remove project from VS
add project (new path) to VS
fix project references in other projects
adjust namespaces if desired
adjust assembly name and default namespace in project settings
Don't know of an easier way. Was searching for this myself, and this should be the way to go.

I think you can rename it from the TFS Database.
Try going into tbl_Project of the Tfs_DefaultCollection Database, which you can find on the SQL Server Instance used by tfs. You can know which one is that by going into the TFS Console, click on Application Tier, then find the details of the Server under the Data Tier Summary. Run an update query against the project you want to rename.. I haven't tested this but just assuming it should work (some educated guess)..

I am using TFS 2015 Express and rename project is grayed out.
You can still rename the project using the TFS Site for the project.
Here is a link that shows how to do it.
https://www.visualstudio.com/en-us/docs/setup-admin/rename-team-project

I was facing a similar issue while trying to rename a folder in Visual Studio 2015.This is what I tried.
Right click on the project file
Open with Notepad
This will generate your current solution file
Change the occurences of your prev file name. (Find and Replace with the desired name)
Save it and close
Change solution explorer name and rename the folder to your desired name.
This should work.

Related

Is it possible to rename a project in Visual Studio such that its folder name is also renamed?

Let's assume we're working on a project called MyProject.
I'd like to be able to change its name to MyProject2 AND have its folder name also renamed to MyProject2.
Is this possible from Visual Studio? If not, how to make this happen "outside" it?
Rename your project to your new name. It will change the .csproj file automatically which in 2010 is the name of the project. Close Visual Studio. Rename the directory.
Open your solution file to change directory now. Your solution file will point to the new project but will reference the wrong directory.
Before:
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Stackoverflow_4560662_Rename", "Stackoverflow_4560662\Stackoverflow_4560662_Rename.csproj", "{7CCD10BF-48BA-44E2-B071-D4ED8067ACA1}"
After
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Stackoverflow_4560662_Rename", "Stackoverflow_4560662_Rename\Stackoverflow_4560662_Rename.csproj", "{7CCD10BF-48BA-44E2-B071-D4ED8067ACA1}"
Notice the two parts
"Stackoverflow_4560662\Stackoverflow_4560662_Rename.csproj" becomes
"Stackoverflow_4560662_Rename\Stackoverflow_4560662_Rename.csproj"
This is the only way I've been able to rename a directory for a project. I hope someone finds a better answer.
Following may be one solution
Close the solution.
Rename the folders outside Visual Studio.
Open the solution, ignoring the warnings.
Go through all unavailable projects.
Set the property 'File Path' to the new location.
Reload the project.
In case you didn't rename the project, rename it (F2).
Check answer
How do I rename a Project Folder from within Visual Studio?
I'm pretty much a novice at this stuff but I had the same issue, my resolution was to just copy and paste my code into a new project and save it using the new name I needed. Probably not the best method but it's simple and it works.
Not sure if this helps anybody but all I did was rename the solution and associated folders etc.
Unfortunately when you open it says it can't find your project(s).
To get around this I opened the solution itself in a text editor (notepad++) and renamed where it finds the Project . . . and it works.
Andy
Assuming you're talking about a single VB.NET project in a solution.
AFAIK, You're not supposed to rename the 'My Project' folder, that's the VS default name for all VB.NET project.
Just select the project/solution in VS Solution Explorer and Click F2 to simply rename it.

Visual Studio and TortoiseHg: folder not visible in VS

I created a C# project and added it to source control (mercurial). I can edit files in VS, commit it and push it using TortoiseHg. It goes to the server. When some one pulls they get the files.
In my visual studio I added a folder and a file inside that folder. I used TortoiseHg and it saw the new file in the new folder. I committed it and pushed it.
However, now someone pulled the latest code from the server - and they got the new file (it is visible through windows explorer), but when they open the solution in VS, they don't see the file.
Does someone have an idea what is wrong here? or things I should check? Thank you for the help.
P.S. I have visual studio 2010 express (so I can't use the VisualHg plugin).
Visual Studio caches changes to the solution and project until an explicit save or a build. In your comment:
In my visual studio I added a folder and a file inside that folder. I used TortoiseHg and it saw the new file in the new folder. I committed it and pushed it.
I see that an updated .sln or .vcproj file was not mentioned and checked in. Did you see an update to either of these files via TortoiseHg? If not, make sure to build or save your project after a change like this.
Did you make sure that the Visual Studio Project File or Solution file is being updated and committed?
VS solution contains projects and each project select managed files by metadata(***.vcproj file). It's not the way include all files from root directory.
So, your co-workers can see new added files by in following two ways.
1) share project file(***.vcproj)
2) manually add files in each person's VS instance.

Visual Studio: Create a web application from existing code

I have an existing directory structure that is all nicely checked into SVN, so I don't really want to mess with it.
The website code lives in a folder called C:\Projects\TheProject\Website. I want to bring the website files into a new Web Application Project without changing the directory structure.
Ideally the resulting file structure would look like this:
C:\Projects\TheProject\TheProject.sln
C:\Projects\TheProjects\Website\Website.csproj
No matter what I try I dont get what I want. There is no option to create a web application from existing code. This is very frustrating. Does anyone know if it is possible?
OK I figured it out. It's weird, but the following steps will work:
Open fresh copy of Visual Studio
File->New Project, select Web Application
Use the following settings:
Name: Website (this is the name of the existing folder with the website files in it)
Location: C:\Temp\ (anywhere will do for now)
Solution Name: TheProject (name of the existing project's root folder)
Check "Create directory for solution"
Delete the auto-created Default, Global and Web.config files
Save All and close Visual Studio
In Windows Explorer, copy the new folder on top of the existing folder so that the files are merged.
Double click on the sln file to open Visual Studio again.
Select "Show all files" (at the top of Solution Explorer)
Right click on any files or folders you want to add and select Include in Project.
Have you tried something like this?
Create a new Visual Studio Blank Solution from File-->New Project-->Other Project Types-->Blank Solution, making sure to specify c:\Projects\TheProject as your solution directory.
Copy the folder with all of the existing website stuff into c:\Projects\TheProject\WebSite.
Back in Visual Studio, right-click your solution in Solution Explorer and select "Add Existing Website." Then, pick your c:\Projects\TheProject\WebSite folder.
Good luck, HTH.
Create a new web project with a .csproj file. Delete all the files it comes with. Drag everything into the project.
In the File menu, click Open, and then click Web Site. Choose the root folder where your Web Site is located
On top of #cbp answer I would like to add that if you would like to keep the Version control history of those files - in step 6 - instead of copy do:
git mv original-website/* new-web-application-directory/.
What have you tried? I normally create a blank solution and add existing folders (drag and drop on solution explorer works best), and have not had a problem.
in VS 2008 File->New->Project From Existing Code

How can I rename a project folder from within Visual Studio?

My current solution for renaming the project folder is:
Remove the project from the solution.
Rename the folder outside Visual Studio.
Re-add the project to the solution.
Is there a better way?
TFS users: If you are using source control that requires you to warn it before your rename files/folders then look at this answer instead which covers the extra steps required.
To rename a project's folder, file (.*proj) and display name in Visual Studio:
Close the solution.
Rename the folder(s) outside Visual Studio. (Rename in TFS if using source control)
Open the solution, ignoring the warnings (answer "no" if asked to load a project from source control).
Go through all the unavailable projects and...
Open the properties window for the project (highlight the project and press Alt+Enter or F4, or right-click > properties).
Set the property 'File Path' to the new location.
If the property is not editable (as in Visual Studio 2012), then open the .sln file directly in another editor such as Notepad++ and update the paths there instead. (You may need to check-out the solution first in TFS, etc.)
Reload the project - right-click > reload project.
Change the display name of the project, by highlighting it and pressing F2, or right-click > rename.
Note: Other suggested solutions that involve removing and then re-adding the project to the solution will break project references.
If you perform these steps then you might also consider renaming the following to match:
Assembly
Default/Root Namespace
Namespace of existing files (use the refactor tools in Visual Studio or ReSharper's inconsistent namespaces tool)
Also consider modifying the values of the following assembly attributes:
AssemblyProductAttribute
AssemblyDescriptionAttribute
AssemblyTitleAttribute
This is straightforward in Visual Studio 2015 (possibly works in older versions)
In Solution Explorer, right click on Main solution → Rename
In Solution Explorer, right click on project (under solution) → Rename
In Solution Explorer, double click, or right click on Properties → goto Application Tab, rename Assembly name and Default namespace to match.
If you wish to also rename the namespace, open one of your class files. Right click the namespace → Rename.... This should search and replace all references to your namespace throughout the project.
Close the project → rename the project folder.
Edit the .sln file in Notepad, and change the path to the csproj, i.e., fu\bar.csproj → bar\bar.csproj.
There is another way doing this, using the *.sol, *csproj files.
Open your solution file.
Search for the *.csproj you would like to change.
It will be like this (relative to the *.sol file):
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shani.Commands.Impl", "Shani.Commands.Impl\Shani.Commands.Impl.csproj", "{747CFA4B-FC83-419A-858E-5E2DE2B948EE}"
And just change the first part to the new diretory for example:
Impl\Shani.Commands.Impl\Shani.Commands.Impl.csproj
Of course, don't forget to move the whole project to that directory.
Man, have I struggled with this. Unfortunately there isn't a one click solution in Visual Studio, but if you're running Visual Studio 2012 and your project is under source control with Team Foundation Server, here is how I got it to work, while keeping the source history:
(Make sure you read #mjv's comment below, as he notes that you can skip step 5-10)
Make sure you have checked in all changes, so you have no pending changes.
Remove the project from the solution, by right clicking and selecting Remove.
Now, in Windows Explorer, rename the project folder.
Go back to Visual Studio, and in Solution Explorer, right click the solution and choose Add -> Existing project. Select the project file for the project you removed in step 2, which should be located in the renamed folder.
Now the project is back in the solution, but the project doesn't seem to be added to source control. To fix that, open Source Control Explorer.
Find the project folder in Source Control Explorer, that corresponds with the project folder on your disk, that you renamed in step 3.
Rename the folder in Source Control Explorer, so it has the same name as the project folder on disk.
Now take a look at your pending changes. You should have changes to the solution file and a rename operation on the project folder.
Do a rebuild and make sure everything compiles correctly. If you had inter-project references to the project you renamed, you need to add them again to the individual projects that referenced it.
You should be all set now. Go and check everything in.
The above guide worked for me. If it doesn't work for you, try and delete your local solution completely, and remove the folder mapping in your workspace. Restart Visual Studio just in case. Make sure you actually deleted the whole solution from your computer. Now readd the solution mapping to your workspace and get the latest version. Now try the above steps. The same applies if something goes wrong while following the above steps. Just delete your solution locally and get the latest source, and you'll have a clean slate to work with.
If you're still having problems, make sure that you haven't changed anything manually in the solution file, or trying other 'tricks' before trying the above steps. If you have changed something and checked it in, you might want to consider doing a rollback to the point just before you started messing with the renaming of the project.
Of course, you'd also want to rename the project itself, in Solution Explorer. You can do this before the steps above, but in that case, make sure you check in that change before applying the steps above. You can also do it afterwards, but make sure you follow all the steps above first, and check in your changes before trying to rename the project name in Solution Explorer. I don't recommend trying to mix the above steps with a rename of the project name in Solution Explorer. It might work though, but I would recommand doing it in 2 separate changesets.
Currently, no. Well, actually you can click the broken project node and in the properties pane look for the property 'Path', click the small browse icon, and select the new path.
Voilà :)
The simpler solution is the following:
Right-click the project and rename it.
(optional) Open the project’s property settings and modify the assembly name (and optionally the default namespace) to use the new project name.
(optional) Select the namespace name in a source file, right click and select Refactor/Rename to globally rename the namespace to the new project name.
(optional) Open the AssemblyInfo.cs file and change the assembly name to match.
Save and close the solution.
Using Windows Explorer, rename the project folder to the new name.
Open the SLN file in a text editor and find the one reference to the project path and change it to use the new folder name.
There are four needed steps, but seven recommended. At the end of the day though the project is renamed completely. Technically, the folder name for the project doesn’t have to match the project itself, so even that step is optional, but it can be confusing if they don’t match. The same for the assembly and namespace names.
In andersjanmyr's answer it's easier to rename the project first.
Rename the project.
Close the solution (save it).
Rename the folders outside Visual Studio.
Open the solution, ignoring the warnings.
Go through all unavailable projects and set the property 'File Path' to the new location of your project file, i.e. someproject.csproj.
Reload the project.
Also, after those steps are carried out, you might want to rename other references to your old project name.
In project properties, update the Assembly Name and Default Namespace.
This will update the following in the project file...
<RootNamespace>SomeProjectName</RootNamespace>
<AssemblyName>SomeProjectName</AssemblyName>
...and will get rid of the error "Namespace does not correspond to file location, should be: 'SomeProjectName'"
Rename your root namespace (if you have ReSharper right click the Namespace and go Refactor -> Rename).
Change all occurrences of your old project name in AssemblyInfo.cs.
For those using Visual Studio + Git and wanting to keep the file history (works renaming both projects and/or solutions):
Close Visual Studio
In the .gitignore file, duplicate all ignore paths of the project you want to rename with renamed versions of those paths.
Use the Git move command like this:
git mv <old_folder_name> <new_folder_name>
See documentation for additional options: https://git-scm.com/docs/git-mv
In your .sln file: Find the line defining your project and change the folder name in path. The line should look something like:
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "<Project name>", "<path-to-project>\<project>.csproj"
Open Visual Studio, and right click on project → Rename
Afterwards, rename the namespaces.
I read that ReSharper has some options for this. But simple find/replace did the job for me.
Remove old .gitignore paths.
For Visual Studio 2017 you can use my Visual Studio extension:
Download
It will rename the project in:
The project location folder
The solution file
References in other projects
The assembly name, information
The default namespace
I just had to do this myself (using Visual Studio 2010). As some folks have answered, the simplest step seems to be:
Close the Visual Studio project.
Open the .sln file and rename the project directory prefix for each of the .csproj occurrences.
Save the .sln file
Rename the actual project folder directory on your hard drive to match your changes in the .sln file.
Open the .sln (in Visual Studio) and rebuild
Using Visual Studio 2019, I followed below steps to make the project name change successful:
Close the solution
Rename the project folder to match with new project name
Open solution file in notepad++ kind of editor and edit the FilePath with new project name folder
Open the solution and click No if it ask whether you want to open from source control
Right click the project which you want renaming and click Properties then change below:
Change Assembly Name,
Default Assembly namespace and
Assembly information with new name
Open any of the file and move the file to new namespace which will be done by all files
If you have app.config kind of files then make sure to move them also in new namespace
Rebuild it which will work successfully
A proven solution for Visual Studio extension for Data Tools for Business Intelligence (SSDT-BI 2013):
Move the Project folder to its new location (don't rename anything yet)
In Solution Explorer, rename the Project / Solution.
Close (and save) the newly-renamed project.
Rename the project's folder and .sln file.
Use a text editor and open the newly-renamed project solution file (.sln) (I used Notepad++)
In line number 6 you'll see: "Project {fdjfksdjk4387!...} = "OLDPROJECT", "OLDFOLDER\OLDPROJECT.rptproj". Rename everything with the new names used in step 4. (i.e. ... = "NEWPROJECT", "NEWFOLDER\NEWPROJECT.rptproj"... )
That's it!
It was tested 100% and worked flawlessly in my case.
NOTE: I can't confirm if it works under different project templates and other Visual Studio versions. As always, do backup everything beforehand.
What worked for me in Visual Studio 2017:
Close solution in Visual Studio
Rename the directories of projects in the solution.
(push change in source control - Git in my case)
Edit the .sln file in a text editor (outside Visual Studio 2017) changing the name of the directory.
Reopen the solution in Visual Studio
It said something like "re-adding project". I rebuilt everything and everything was good to go.
See item 3 in the linked article.
Close the solution and the IDE.
In Windows Explorer: Change the directory name to the new name.
In Windows Explorer: Open the .sln file with a text editor.
Change the directory name to the new name and save.
Restart the IDE and open the solution from menu File → Recent Files menu if it doesn't start automatically.
Click on the project folder in Solution Explorer and check the path property in the properties at the bottom. It will now be referencing to the new project folder.
It worked for me.
I've had to do this lots of times. It's really useful to be able to repurpose an existing project, but be able to rename text in namespaces, files, and folders (including file / directory names).
Using a recursive find and replace starting at the root folder means the rename doesn't break links to projects in the solution files and project references.
To this end, I have created a project to do just this. The application also makes an effort to ignore version control folders such as .git, .svn and the .vs settings file. More information is in the README.
https://github.com/garethrbrown/vs-project-rename
I am recently working on .Net 6 project with VS2022. and I need to rename my templatemicroservice to my UserMicroservice.
.Net 6 changes most of the things for you. like AssemblyNames and NameSpaces. Also, it changes the ProjectName references in .sln automatically. So, this answer will really help you to rename your service with no hurdles.
So, Steps I followed:
Open the solution in Visual Studio and did these steps:
I renamed my solution by right clicking on it. like, TemplateServiceSolution to UserServiceSolution.
Renamed all the Projects in solution by right clicking on them. like, TemplateService to UserService.
In a specific project, I searched the namespaces like: namespace TemplateService and replaced all by namespace UserService. Do this step in each project. Also relplace using TemplateService to using UserService.
Open your launchsettings.json, and rename anything related to old service, as I had few things in profiles of launchsettings.json.
Just to be sure, please check your startup and program.cs files as well, I didn't have any changes in them.
Closed the solution from Visual Studio and did these steps:
Closed the solution, and opened the File Explorer. Renamed all my project folders from TemplateService to UserService.
Open the .sln in notepad/notepad++, and must change the Folder Structure name. like for a particular project, I should give the correct .csproj paths. as shown in image, I need to rename TemplateService to UserService.
Open the solution in Visual Studio. Most of your Dependencies will be loaded as soon as you Load your solution in Visual Studio Code. and you are ready.
I just solved this problem for myself writing a global dotnet tool (that also takes into account git+history).
Install via
dotnet tool install -g ModernRonin.ProjectRenamer, use with renameproject <oldName> <newName>.
Documentation/Tinkering/PRs at
https://github.com/ModernRonin/ProjectRenamer
This worked well for me in Visual Studio 2019.
Rename the solution, projects in Visual Studio by simply single
clicking on the file names as normal.
Rename the namespaces in Visual Studio.
Rename the desired elements on the main project page (publish location, application, default namespace, whatever). As noted correctly, this does nothing for the folders, but it does rename the project files and keeps everything tied together in Visual Studio.
Close Visual Studio.
Rename the folders.
Open Visual Studio and reply 'no' to getting projects from Source Control.
Delete the unloaded project references.
Add each project back in using Add existing project from Solution. This tied everything together and the project built for me.
Please comment on and correct anything above that does not work.
This is how I renamed my existing project in VS19.
Close the visual studio project
Rename and open the each project folder name on your drive
Rename each .csproj
Open .sln file and rename the project directory prefix for each of the .csproj occurrences.
Open the .sln file in visual studio and rebuild
Update prevoius nameSpace refrence with new one by going through each file or using ReplaceAll
Note: This fix is for Visual Studio 2008, but it should work here.
Using Windows Explorer, rename both the solution folders (the parent folder and the child folder) to the new solution name.
Delete the .sln file located in the parent folder.
In Visual Studio, select menu File ► Open Project.
Drill into the new folder you just renamed and open the .csproj file (located in the child folder).
Right-click the project name and rename it to what you want. (It should be the same name as the folder in step 1.)
Select menu File ► Close Solution. A dialog will ask if you want to save changes to the .sln file. Click Yes.
In the Save File As dialog, point to the newly renamed parent folder and click Save.
(Note: Make sure the .sln file has the same name as the folder. It is not required, but it maintains consistency.)
Done.
I have written a small tool that automates all these steps. It also supports Subversion for now.
Information about current releases can be found at Visual Studio Project Renamer Infos.
The latest releases can now be downloaded from the Visual Studio Project Renamer Download Page.
Feedback is much appreciated.
I often had the same problem of renaming a project in Visual Studio and editing the folder name, project name, and .sln file in order to accomplish that. I just wrote a VBScript script that accomplishes all that. You have to be careful with the strings you choose for replacing.
You just have to put the .vbs file in the same directory as the .sln file of the solution.
' Script parameters'
Solution = "Rename_Visual_Studio_Project" '.sln'
Project = "Rename_Visual_Studio_Project" '.csproj'
NewProject = "SUCCESS"
Const ForReading = 1
Const ForWriting = 2
Set objFso = CreateObject("Scripting.FileSystemObject")
scriptDirr = objFso.GetParentFolderName(wscript.ScriptFullName)
' Rename the all project references in the .sln file'
Set objFile = objFso.OpenTextFile(scriptDirr + "\" + Solution + ".sln", ForReading)
fileText = objFile.ReadAll
newFileText = Replace(fileText, Project, NewProject)
Set objFile = objFSO.OpenTextFile(scriptDirr + "\" + Solution + ".sln", ForWriting)
objFile.WriteLine(newFileText)
objFile.Close
' Rename the .csproj file'
objFso.MoveFile scriptDirr + "\" + Project + "\" + Project + ".csproj", scriptDirr + "\" + Project + "\" + NewProject + ".csproj"
' Rename the folder of the .csproj file'
objFso.MoveFolder scriptDirr + "\" + Project, scriptDirr + "\" + NewProject
Rename the project in the solution and the project folder
Delete the project from the solution
Add the existing project to the solution (your renamed project)
It works for me. TFS will also track the new project.
You cannot rename a folder if your project is currently running
Stop your application Shift+F5
Rename your folder from the Solution Explorer (right-click > rename or F2)
When using TFS, step 2 is actually to rename the folder in source control and then get the latest before reopening the solution.
There's a simpler approach which was tested in Visual Studio 2013 Update 1 and applicable for TFS-connected projects:
Open Visual Studio, but let the solution be closed.
Open Source Explorer and rename the desired folder (the solution will be closed for you if you didn't already close it first).
Right-click on the solution (from Source Explorer also) and select check-in.
Open the solution. You'll be told that there're new projects added. Accept to get the changes.
Remove the project from the solution and add it again, and then check-in.
Check that the internal references are OK.
We recently uploaded a beta of a free Visual Studio extension which does this stuff for you.
Have a look at Visual Studio Gallery: Gallery Download
Well, I did it my way
Close Visual Studio 2012
Rename your subdirectory to the preferred name under .sln
Delete the *.suo file
Open the solution again, and fix any properties of Project(s) loaded to meet the new subdirectory name
Rename the project outside Visual Studio.
Edit your_project_name.sln with a text editor, and rename the path to the new path.
Open .sln in a text editor, and in the following line change <FolderName> to your new folder name
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ricky", "\.csproj", "{021CC6B0-8CFB-4194-A103-C19AF869D965}"

Source Safe 6.0d and Visual Studio 2005 project tree problems

Whenever I try to add a new project to my SourceSafe repository it creates 3 folders with the same name nested within each other. There is only one folder on my drive yet in Sourcesafe there are 3??
Can anyone suggest what may be causing this?
Thanks
If you drag and rop a new project folder into VSS and do a recursive add then that's just how it works. Otherwise you have to create your own root project folder in VSS and add each file one at a time to VSS by hand.
Try creating the project in VS2005 disconnected from source control, then creating the project folder in VSS, set the working folder correctly, add the files to sourcesafe from VSS, then lastly edit the source control bindings in VS2005 and check the bound project into source control.
A little kludgey but this is how I do it.
well, that problem comes due to visual studio. because visual stuio by default save solution file in the my documents/...../.../vs 2008/projects/ location and that address is also saved in the .sln file.
that's why every time you get latest within visual stuio it try to creat same strucute and make another copy with in the main project folder.
Solution, well i still trying to figure out how to tackle it.
cheers,
Genious

Resources