Search Results

1
vote
1answer
148 views

TFS UnitTesting not deploying local copy assembly to test dir when on build server

I have an assembly that needs to be in the test output dir for my tests to run. I have the assembly referenced as a local copy in the project but on the build server this gets ignored. The two ways …
1
vote

TFS UnitTesting not deploying local copy assembly to test dir when on build server

As my assembly was being dynamicly loaded the unit test framework was not copying it. I added a explict refrence to it by calling typeof on one of the types in the assembly and all is fine. …