I'm trying to resolve a problem where SGEN is throwing an error when invoked as part of my .NET solution build on a build server. I'm running the build from the command-line on the server to eliminate the CI server as a factor.
The specific error message supplied is:
SGEN : error : Could not load file or assembly 'MyAssembly.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=56e8273d901d717f' or one of its dependencies. Strong name validation failed. (Exception from HRESTULT: 0x013141A)
There are no other errors produced by running the build script from the command-line.
The assembly in question is a delay-signed assembly, built with a public key matching the specified token.
On the server, I have registered the key token for verification skipping using the sn.exe tool (*,56e8273d901d717f), as this is required to run some of the testing steps of the build process before the full signing stages are attempted.
The build process works successfully on developer desktops and on a Win2K3 server. I'm running these tests on a new Win2k8R2 server, which is to replace the older box.