According to all the MSDN docs I can find, to disable Concurrent GC, you add this to your application config:

<runtime>
    <gcConcurrent enabled="false"/>
</runtime>

However, I have a .NET 4 ASP.NET app that I am running though VS2010 using Cassini (ASP.NET Development Server). Whether I specify enabled="true" or enabled="false" either way, making a call to GC.RegisterForFullGCNotification() throws the exception:

This API is not available when the concurrent GC is enabled.

I have tried it running with and without debug, and everything fails the same way. Any ideas how to make this work?

link|improve this question

I believe this setting is ignored by Cassini, and is only used by IIS. See rick schott's answer. – Andrew Barber Dec 28 '11 at 21:30
feedback

1 Answer

up vote 1 down vote accepted

I recommend you use IIS Express, it's free and a much more capable web server than Cassini.

link|improve this answer
Thanks for the recommendation. I forgot I even had it installed. Interestingly, the web.config setting DOES work with IIS Express but NOT with Cassini. Since its a .NET runtime option, I'm curious why the difference. – rally25rs Dec 28 '11 at 21:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.