The [docs suggest](https://microsoft.github.io/node-api-dotnet/reference/dotnet/Microsoft.JavaScript.NodeApi.Runtime/NodejsEnvironment.html#remarks) that multiple environments can exist concurrently for the sample platform. I get an assertion failure from this simple console application: ```c# using Microsoft.JavaScript.NodeApi.Runtime; NodejsPlatform platform = new NodejsPlatform("libnode.dll"); NodejsEnvironment env1 = platform.CreateEnvironment(); NodejsEnvironment env2 = platform.CreateEnvironment(); ``` ``` C:\Users\me\Desktop\libnode\src\inspector_agent.cc:704: Assertion `(start_io_thread_async_initialized.exchange(true)) == (false)' failed. 1: 00007FF961841CAF v8_inspector::V8StackTrace::V8StackTrace+649598 ... ``` libnode was built with [the instructions](https://microsoft.github.io/node-api-dotnet/scenarios/dotnet-js.html) and is using the suggested `napi-libnode-v20.9.0` branch.