Upgrading to 7.5 has broken a number of unit tests. The probklem is with DefaultBaseLibraryFactory
I'm using the DefaultBaseLibraryFactory to set the language during unit tests. Unfortunately it is returning the wrong version - it returns version 7.0.* rather than 7.5.*
Does anyone know how to get it to return the correct (upgraded) version of the dll
Many Thanks for any/all help
The code is
ClassFactory.Instance = new DefaultBaseLibraryFactory(String.Empty);
Is EPiServer.Implementation.dll deployed to the output of your unit test project? If not add a reference to the assembly (the 7.5 version) from your unit test project and make sure the reference has "Copy local" set to true.
Upgrading to 7.5 has broken a number of unit tests. The probklem is with DefaultBaseLibraryFactory
I'm using the DefaultBaseLibraryFactory to set the language during unit tests. Unfortunately it is returning the wrong version - it returns version 7.0.* rather than 7.5.*
Does anyone know how to get it to return the correct (upgraded) version of the dll
Many Thanks for any/all help
The code is
The config is