I am trying to use dependency injection for my converter in the Xaml code as described at: [https://github.com/PrismLibrary/Prism/releases/tag/7.1.0-pre1][1]
This requires the use of Prism.Forms
xmlns:ioc="clr-namespace:Prism.Ioc;assembly=Prism.Forms"
this though causes a conflict
Error CS0433 The type 'IDialogService' exists in both
'Prism.Forms, Version=7.2.0.1422, Culture=neutral, PublicKeyToken=null' and
'Prism.Wpf, Version=7.2.0.1422, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59'
- Isn't Prism.Forms for Xamarin forms app only?
- Why is Prism.Ioc missing from Prism.Wpf?
- Will the above conflict cause problems?
- Maybe I am missing something?
Thanks for your attention. Peter