Unity container capacity reduction on some machines

Everything is fine on my development machine, but when I try the application on a test machine with WinXp sp3 I run into a problem.

The method call contains the code below takes 1.5 minutes

var c = new UnityContainer();

Unity version 2.0.414.0 .Net Framework v 3.5 sp1

Does anyone know how to fix this?

thank

+1
source share
2 answers

? , , , . , Unity DLL. , . app.config; , .

+2

, , .

UnityContainer c = new UnityContainer();
OR
IUnityContainer myContainer = new UnityContainer();

:

  • XML, , Unity.
  • .
  • API .

, :

http://msdn.microsoft.com/en-us/library/ff648211.aspx

0