I have a solution with 3 projects (GUI, BL and DAL). The DAL assembly is signed and deployed in the GAC.
When I build the solution the DAL is compiled and the assembly placed in the bin folder of the main project. But when I run the application, it loads the GAC version instead of the local one. Why is this?
I realized that because the version in the GAC was not the latest one and some methods were missing, although it compiled fine.
Does the GAC have priority over the local bin folder?
Tks in advance