I am in the process to setup our new Win7 build machine for our C# project. We don't want to install Visual Studio on that machine. So I am following the instruction "Running mstest without Visual Studio" to setup our machine.
On step 3:
Put Microsoft.VisualStudio.QualityTools.Resource.dll and
Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll in the GAC on the CIServer,
because that is where they are on the DevMachine.
On my develoopment machine (installed Visual Studio 2008 professional version) I found both of them in my GAC (C:\windows\assembly) but I searched my entire development machine and couldn't find the Microsoft.VisualStudio.QualityTools.Resource.dll
My questions are:
- where to get the
Microsoft.VisualStudio.QualityTools.Resource.dll
? - can I copy above file from GAC? (I tried
gacutil.exe
, there is no such copy option. I triedControl Panel->Administrative Tools
, but my XP machine only hasMicrosoft .Net Framework 1.1 Configuration
on which above two assembly didn't show up.)?
thanks,