Jérôme Laban
Jérôme Laban
/azp run
@codymullins Thanks for the report. This is generally caused by missing .NET Workloads. Can you run the following in your csproj folder: ``` dotnet workload list ``` Thanks!
Also, since it's a net9 project, the wasm-tools-net9 should be installed. This is a recent behavior that we're noticing with net9 back compat. Try running `dotnet workload install wasm-tools-net9` in...
We're looking into this invalid selection, but in the meantime, you can manually change net9.0 to net10.0 in the csproj, that should get you going.
To whoever approved the workflows run, thank you :) I've made adjustments to avoid parameters reordering breaking changes which should get the build go further.
The tests revealed a possible race condition in the disposing/shutdown ordering of the processor resulting in missing exports, for the task implementation.
Fixed an additional race condition for slower machines where the exporter may not have fully started while being shut down, preventing it to still export what was in queue.
Thanks for the run, again! Looks like there's a reported test failure, but without any failed tests. Feels like a fluke, but it may be something known to this project....
Thanks @cijothomas, it helped :)
Thanks for the reviews @martincostello!