この記事のデモアプリケーションを変更しています:http : //msdn.microsoft.com/en-us/magazine/dd419663.aspx
私の名前空間を使用するようにすべてのファイルを更新する必要があります。たとえば、今ここにあるファイル:
MySolution\MyApp\DemoApp\ViewModel\MainWindowViewModel.cs
そのような名前空間を使用しています:
namespace DemoApp.ViewModel
{
/// <summary>
/// The ViewModel for the application's main window.
/// </summary>
public class MainWindowViewModel : WorkspaceViewModel
ここにファイルを移動する必要があります(DemoAppフォルダーを削除):
MySolution\MyApp\ViewModel\MainWindowViewModel.cs
また、正しい名前空間を使用する:
namespace MyApp.ViewModel
{
....
Visual Studio 2010でそれを行う方法
アップデートは、 [OK]を、ここで可能重複してVisual Studioでの変更プロジェクトの名前空間さて、私はプロジェクトの名前空間を変更する方法を知っているが、ファイルシステム上のファイルを移動する方法?(「DemoApp」フォルダを削除します)