web-dev-qa-db-ja.com

add-migrationが原因で「アセンブリをロードできませんでした」というエラーが発生する

これが私が見ているものです

PM> Add-Migration AddedSubdivion -StartUpProjectName Data -Verbose
Using StartUp project 'Data'.
Using NuGet project 'Registry'.
Could not load Assembly 'Registry'. (If you are using Code First Migrations inside 
Visual Studio this can happen if the startUp project for your solution does not 
reference the project that contains your migrations. You can either change the startUp 
project for your solution or use the -StartUpProjectName parameter.)

なぜRegistryプロジェクトを参照しようとしているのかわかりません。 RegistryDataに依存しますが、逆には依存しません。私はこれに非常に慣れていないので、どんな助けにも感謝します。

40
PBG

これは恥ずかしいですが、多分これは将来グーグルを助けるでしょう。

「Package Manager Console」の上部で、デフォルトのプロジェクトが間違ったプロジェクトに設定されていました。それを私のモデルプロジェクトに変更すると修正されました。

enter image description here

144
PBG