Windows 8 ストア アプリを開発しています。Solution >> Add >> new project >> Unit Test Library (Windows Store apps)を選択して単体テストを追加しました。その後、テストを正常に実行できます。
ただし、元の Windows 8 ストア アプリ プロジェクトへの参照を追加し (こちらの手順に従ってください)、テストを再度実行しようとすると、次のエラーが発生します。
------ Discover test started ------
WriteTestCaseStarted
WriteTestCase Took Time = 3.0004
========== Discover test finished: 1 found (0:00:00.1350024) ==========
------ Run test started ------
Updating the layout...
Copying files: Total <1 mb to layout...
Registering the application to run from layout...
Deployment complete. Full package name: "c078c431-2a0d-4494-8dd9-47ae01ac938d_1.0.0.0_neutral__chny7cy2kxrnj"
Exception has been thrown by the target of an invocation.
========== Run test finished: 0 run (0:00:01.8770198) ==========
私は何を間違っていますか?
更新: App.xamlから次の行をコメントアウトすると、問題が解決しました:
<ResourceDictionary Source="Common/StandardStyles.xaml"/>
なんで?