Hi,
I want to use Microsoft C# project compiler action to compile some c# projects in .net 1.1.
Those projects are part of a solution. I have a project that have reference to an assembly which is in the same solution. So when i’m building those two projects i want them to be build with the good assembly (the new one).
The problem is that i’m building the first project called item… that’s working
But when building the other one which have a reference to item.dll, it’s doesn’t work, i get an error because he can’t find it.
Does someone know how can i make it run correctly?
Thanks a lot,
Alexis
Hi Alexis,
You will need to check that the Item.dll project is building to the folder where the second project expects to find the assebmly. You can check where the second project is looking for item.dll by looking at its properties in Visual Studio. (Right click on the referenced assembly, and click properties)
Regards,
Paul.