I am getting this as an error in Visual Studio 2022
Avoid unsupported fire-and-forget async-void methods or delegates. Unhandled exceptions will crash the process.
Having a lot of trouble finding anything on this. The code is working 100% fine but I would like to avoid this error without disabling it if I can. The code line is along these terms.
Parallel.ForEach(things, async (thing) => await ProcessThing(thing));