lambda function - the application was run as a self-contained app because did not specify a framework
Was getting the error above and then had to run the following command to generate my dll.
dotnet publish -c Release --self-contained --runtime linux-x64
After uploading, i was able to resolve my issues.
Comments