Before the .NET Core migration of our projects, we were using this to attach a debugger to the process so that we can debug our code:
package.AddSetting(EnginePackageSettings.ProcessModel, ProcessModel.InProcess.ToString());
Now with the latest NUnit core package it seems that this process model is no longer available and debugging is attached by default. What is the best approach to deal with in process debugging toggling at this point?
We have tried the other process model options but none seem to be able to detach debugging to the process.