Is there anyway to register a concrete instance with the DependencyService, rather than using the assembly attribute?
I ask because I have a DAL, which is platform dependent, that also has a few dependencies. With other DI frameworks such as Unity it's able to autopopulate the constructor arguments.
Is the only choice to do the injection in the Forms after it's retrieved but before it's used? This leads to the anti-pattern where items are newed but not able to be used.