VS 2010, win server 2003, .Net 3.5 solution, which were migurated from .Net 1.1
All projects in solution are Delay signed. The soluton can be build successfully for Debug, but always failed for Release with following error. SGEN : error : Could not load file or assembly 'AssemblingX, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=xxxxxxxx' or one of its dependencies. Strong name validation failed. (Exception from HRESULT: 0x8013141A)
The AssemblingX is the project i want to build. All referenced DLLs of this project are saved at local folder, and signed already. If i change the property of project AssemblingX to sign it, then solution can be built for release successfully.
I created a sgen.exe.config to enable "loadFromRemoteSources" by following the guided on http://social.msdn.microsoft.com/Forums/nl-NL/msbuild/thread/695581ae-77e7-4c3a-bb3f-6472b8c47f65
But nothing changed. Any ideas?
Thanks