The given key was not present in the dictionary
https://youtrack.jetbrains.com/issue/DMRY-770
https://youtrack.jetbrains.com/issue/DMRY-2314
If you got the same error, try to disable server GC on your computer.
In order to do this, edit <app_name>.exe.config file:
<configuration>
<runtime>
<gcServer enabled="false"/>
</runtime>
</configuration>
If you profile IIS application you need to configure ASP.NET config file:
<configuration>
<runtime>
<gcServer enabled="false"/>
<gcConcurrent enabled="false"/>
</runtime>
</configuration>
The Aspnet.config file is in the same directory as the Aspnet_isapi.dll file (for example: C:\Windows\Microsoft.NET\Framework64\v4.0.30319 ).
Please sign in to leave a comment.
In the case that IIS Express is being used, the aspnet.config file that should be modified will be in the same directory as the applicationhost.config file. For example, on my system the path to the appropriate configuration is C:\Users<user>\Documents\IISExpress\config\aspnet.config.
Thanks for the info!