I have a website that uses AjaxControlToolkit.dll and Log4Net.dll; When I try to run the performance profiling tool in VS 2010 on it it gives me the following warnings "AjaxControlToolkit.dll is signed and instrumenting it will invalidate its signature. If you proceed without a post-instrument event to re-sign the binary it may not load correctly". Now, if I choose the option to continue without re-signing the profiling starts but the assembly doesn't load and gives an ASP.NET exception.
|
|
ghusse linked to a blog post giving the answer. The answer is described there. As he points out, you have to use a post-instrument event on each signed assembly. It's easiest to call
Note that |
|||||||
|
|
If you're doing this on a development machine, you can disable strong name verification altogether with Specifically, from MSDN, it says:
And the security risk:
|
|||||||||
|
|
The answer is described here. You have to use a post-instrument event on each signed assembly. I could not manage to make it work "as is" with my installation of VS 2010. I had to call this command line as a post-build event on each dll :
Note that [pathOfDll] is located in the directory obj\Debug associated to the project. |
||||
|
|
|
The profiler probably changes the assembly and because it was previously signed. Apparently you need to add a post-instrument action that re-signs the assembly. This could be a problem because you do not have the sn file that was used to sign the 3rd party assemblies. |
|||
|
|