I was a bit inconsistent when i re-wrote the library for .Net Core, and as a result some places have .ConfigureAwait(false) when using await, while others such as VndbUtils don't.
At some point i need to go over the library and find any all instances of a task being awaited, but not configured.
I was a bit inconsistent when i re-wrote the library for .Net Core, and as a result some places have
.ConfigureAwait(false)
when using await, while others such asVndbUtils
don't.At some point i need to go over the library and find any all instances of a task being awaited, but not configured.