Skip to content

Commit

Permalink
Fix crash in release builds run outside debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
canton7 committed Mar 10, 2015
1 parent 8565315 commit 823ee55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SyncTrayzor/Bootstrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected override void ConfigureIoC(IStyletIoCBuilder builder)
builder.Bind<IUpdateChecker>().To<UpdateChecker>().InSingletonScope();

builder.Bind(typeof(IModelValidator<>)).To(typeof(FluentModelValidator<>));
builder.Bind(typeof(IValidator<>)).ToAllImplementations();
builder.Bind(typeof(IValidator<>)).ToAllImplementations(this.Assemblies);
}

protected override void Configure()
Expand Down

0 comments on commit 823ee55

Please sign in to comment.