app.xaml で、ViewModelLocator の定義中にエラーが発生しました。アプリは起動して問題なく動作しますが、Studio では気になります。不思議に思う、何が理由なのだろう。ハイライトされた行は
<vm:ViewModelLocator x:Key="ViewModelLocator" d:IsDataSource="True"/>
エラー:
エラー 1 呼び出し元のアプリケーション ID を特定できません。
vm:ViewModelLocator の中に入る場合、エラーの兆候はありません。すべてのビューモデルを再確認し、IsoStorage デザインタイム保護を追加する必要がありますか?
if (!System.ComponentModel.DesignerProperties.IsInDesignTool)
{
settings = IsolatedStorageSettings.ApplicationSettings;
}