Comments
Sort by recent activity
I tried the idea of removing the pdb and it worked perfectly! [image] For anybody who runs into the same problem, I actually put the following as a post build step into our solution since we really don't care about debugging the AjaxToolkit. @rem Removing the PDB which is causing issues with ANTS profiler
del /Q $(TargetDir)AjaxControlToolkit.pdb
This deletes it every time and allows ANTS to work for anybody on my team without having to figure out why it is failing. / comments
I tried the idea of removing the pdb and it worked perfectly! For anybody who runs into the same problem, I actually put the following as a post build step into our solution since we really don't...