When will the DryIoc.dll will be updated to the latest 5.0.2 version and release the package? #2690
-
When will the DryIoc.dll will be updated to the latest 5.0.2 version and release the package? I have an external dependency on DryIoc.dll v5.0.2 and the version I am using is 4.7.3 as we are consuming Prism.DryIoc.Extensions. I have also posted the problem on Stackoverflow |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
This is a project we work on in our spare time, and we release when a number of factors have aligned. Right now we are focused on leaving the .NET Foundation which should be official by the end of this month. So a release will definitely not happen before then. |
Beta Was this translation helpful? Give feedback.
-
The most telling part here is that you think you have an issue while you're using Prism.DryIoc.Extensions. That package is meant to REPLACE the official Prism DI package. you should instead be using Prism.Forms directly and remove the Prism.DryIoc.Forms reference. You will lose PrismApplication and have to instead inherit from PrismApplicationBase. This will force you to implement |
Beta Was this translation helpful? Give feedback.
The most telling part here is that you think you have an issue while you're using Prism.DryIoc.Extensions. That package is meant to REPLACE the official Prism DI package. you should instead be using Prism.Forms directly and remove the Prism.DryIoc.Forms reference. You will lose PrismApplication and have to instead inherit from PrismApplicationBase. This will force you to implement
CreateContainerExtension
for which you'll just return the static instance of the container from Prism.DryIoc.Extensions.