AutoDI
AutoDI copied to clipboard
Allow for not throwing not initialized exception on designer builds
Create a user control similar to the following:
public MyUserControl() : this(null!) { }
public MyUserControl([Dependency] IService service) { }
Right now, design builds fail. It would be nice if this didn't happen.