In Visual Studio 2010 I have the following project layout:
- Solution
- project A
- class C
- class D
- project B
- T4 template
- project A
The T4 template contains a assembly reference like this:
<#@ assembly name="$(SolutionDir)\A\bin\Debug\A.dll" #>
The template instantiates an instance of class C. When I run the T4 template the processor loads the project A's dll and correctly creates the output. The error arises when I want to change something in project A, say modify either class C or D.
Unable to copy file "obj\Debug\A.dll" to "bin\Debug\A.dll". The process cannot access the file 'bin\Debug\A.dll' because it is being used by another process.
The only way i found to get rid of this error is to restart Visual Studio. Is there any other way to force the unloading of the A.dll assembly from VS?