インポートが機能していません。
でUserProfileService
エクスポートされたように見えるクラスがありAggregateCatalog
ます。UserProfileService
インフラストラクチャ プロジェクトにあります。RelayCommand
インフラストラクチャ プロジェクトにもあるクラスにインポートしています。同様の投稿を行ったことがありますが、解決できませんでした。どんな助けにも感謝します。コードは次のとおりです。
[Export(typeof(IUserProfileService))]
[PartCreationPolicy(CreationPolicy.Shared)]
public class UserProfileService : IUserProfileService
{
...
}
public class RelayCommand<T> : ICommand
{
[Import]
private IUserProfileService UserProfileService { get; set; }
...
}
ありがとう、イマド。