.NET Lambda deployed with CDK: how do I unzip the binaries once deployed?
I have a .NET 8 Lambda function that is deployed to AWS via CDK. The problem is that it gets saved to the bucket as a .zip archive, yet my function is expecting to see the (unzipped) binaries. As a result, I encounter Error: executable assembly /var/task/My.Lambda.Function.dll or binary /var/task/My.Lambda.Function not found
when I execute the function via the gateway invoke URL.