I'm a bit confused on whether the async
methods work properly with an SSIS job or not. The Script Task items create a visual studio project that targets .NET Framework 4.5, with an output type of Class Library.
If I make the main method public async void Main()
and inside it do await
calls against async
methods, is it really waiting?
Some of the posts I've seen here imply it does, and others imply it does not.