Is it possible to indicate whether to use native async either as an attribute (
ExcelAsyncFunctionAttribute?). Alternatively, can I configure something in the .csproj to indicate that all functions should use native async?
Otherwise, it seems the correct way to do this would be to use manual registration, something like this:
ExcelRegistration.GetExcelFunctions()
.ProcessParamsRegistrations()
.ProcessAsyncRegistrations(nativeAsyncIfAvailable: true)
.RegisterFunctions();
Thanks,
Evan