I'm modifying demo application from this article: http://msdn.microsoft.com/en-us/magazine/dd419663.aspx
I need to update all files to use my namespace, for example now file located here:
MySolution\MyApp\DemoApp\ViewModel\MainWindowViewModel.cs
is using such namespace:
namespace DemoApp.ViewModel
{
/// <summary>
/// The ViewModel for the application's main window.
/// </summary>
public class MainWindowViewModel : WorkspaceViewModel
I need to move file here (remove DemoApp folder):
MySolution\MyApp\ViewModel\MainWindowViewModel.cs
and also to use right namespace:
namespace MyApp.ViewModel
{
....
how to do that in visual studio 2010?
Update ok here is possible duplicate Change Project Namespace in Visual Studio Now I know how to change the namespace of the project, but how to move files on the file system? (get rid of "DemoApp" folder)
I have gone through the folder structure with a tool called BareGrep to ensure I have got all of the namespace changes. Its a free tool that will allow you to search over the files in a specified file structure.
I know its quite late but for anyone looking to do it from now on, I hope this answer proves of some help. If you have
CodeRush Express
(free version, and a 'must have') installed, it offers a simple way to change a project wide namespace. You just place your cursor on the namespace that you want to change and it shall display asmart tag
(a little blue box) underneathnamespace
string. You can either click that box or press Ctrl + keys to see theRename
option. Select it and then type in the new name for the project wide namespace, clickApply
and select what places in your project you'd want it to change, in the new dialog andOK
it. Done! :-)Ctrl+Shift+H not the real solution.
You can use Resharper to change your all namespace definitions in your solution. This is the best way I tried before.
https://www.jetbrains.com/resharper/features/code_refactoring.html
Go to someplace the namespace is declared in one of your files. Put the cursor on the part of the namespace you want to change, and press F2. This should rename the namespace in every file. At least, it worked in my little demo project I created to test this answer!
Depending on your VS version, the shortcut might also be Ctrl-R,Ctrl-R.
I tried everything but I found a solution which really works. It creates independed solution with a new namespace name an so on.
In main form find namespace name -> right click -> Refactor -> Rename and select a new name. Check all boxes and click OK.
In the solution explorer rename solution name to a new name.
In the solution explorer rename project name to a new name.
Close VS and rename folder (in total commander for example) in the solution folder to a new name.
In .sln file rename old name to a new name.
Delete old .suo files (hidden)
Start VS and load project
Project -> properties -> change Assembly name and default namespace to a new name.
You can use CTRL+R, CTRL+R or for complex namespace changes use this tool https://marketplace.visualstudio.com/items?itemName=vs-publisher-599079.FixNamespace