// Enable IAP at class level with as many threads as possible based on CPU and core count.
[assembly: Parallelize(Workers = 0, Scope = ExecutionScope.ClassLevel)]
Interesting, wonder why that is, we offload the work to child processes, so it should work irregardless of method level parallelization.
// Enable IAP at class level with as many threads as possible based on CPU and core count.
[assembly: Parallelize(Workers = 0, Scope = ExecutionScope.ClassLevel)]
Interesting, wonder why that is, we offload the work to child processes, so it should work irregardless of method level parallelization.