xxxxxxxxxx
//the only configureAwait u will use for this using is Disposable configureAwait(bool)
//therefore not sure how important it will be for you
private async Task GenerateExportOutputAsync()
{
StreamWriter writer = new(Coordinator.OutputDirectory + @"\export.txt");
await using (writer.ConfigureAwait(false))
{
//...
}
}