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:
MySolutionMyAppDemoAppViewModelMainWindowViewModel.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):
MySolutionMyAppViewModelMainWindowViewModel.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)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…