Skip to content

Instantly share code, notes, and snippets.

@geirsagberg
Created August 11, 2016 09:06
Show Gist options
  • Select an option

  • Save geirsagberg/9c6389d5b9bf7737bcefa23ca2609e61 to your computer and use it in GitHub Desktop.

Select an option

Save geirsagberg/9c6389d5b9bf7737bcefa23ca2609e61 to your computer and use it in GitHub Desktop.
Disable property injection in LightInject
internal class PropertyInjectionDisabler : IPropertyDependencySelector
{
public IEnumerable<PropertyDependency> Execute(Type type)
{
return new PropertyDependency[0];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment