The migration guide suggests something like the following, which seems from https://github.com/aspnet/Announcements/issues/175 ``` { "runtimeOptions": { "gcServer": true, "gcConcurrent": true } } ``` However, when I tried on RC2, it doesn't work for me. I had to use the code below ``` "runtimeOptions": { "configProperties": { "System.GC.Server": true } } ```