Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
setting thread safe flag on MEF for .NET 4.5.1 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
brockallen committed Mar 3, 2014
1 parent 005c714 commit e801b1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OnPremise/WebSite/Global.asax.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ protected void Application_Start()

private void SetupCompositionContainer()
{
Container.Current = new CompositionContainer(new RepositoryExportProvider());
Container.Current = new CompositionContainer(CompositionOptions.IsThreadSafe, new RepositoryExportProvider());
}
}
}

0 comments on commit e801b1f

Please sign in to comment.