Beau Gosse
Beau Gosse
@ashishdhingra it looks like Microsoft is removing support for `dotnet store` all together. Do we have a plan to keep functionality with .NET Lambda Layers some other way?
@controdave There are 2 workarounds for publishing a layer still, do either of these help for now? > Either removing the --enable-package-optimization true or downgrading to .NET 5 fixes the...
Thanks for opening this issue! I tried to reproduce it but couldn't. I was using .NET 7.0.100-preview.7.22377.5 on Ubuntu 22.04. Could you run `dotnet --version` and let me know what...
Thank you so much for all the details and again for opening this issue! It seems like a breaking change to trimming caused this issue. It may be [this one](https://devblogs.microsoft.com/dotnet/announcing-dotnet-7-preview-7/#trimming-and-nativeaot-all-assemblies-trimmed-by-default),...
It seems like the bootstrap assembly is the only one actually needed in the rd.xml file, and with only that we can reduce the binary back down to 14Mb. Also,...
@mnelsonwhite we haven't tried updating aws-lambda-dotnet yet, but have you seen the [updated example](https://github.com/awslabs/dotnet-nativeaot-labs/tree/main/Samples/SimpleNet7FunctionWithCustomRuntime) that uses the rd.xml file? That should work. You can now also use the blueprints/templates provided...
@jetersen Thanks again for opening this issue and sorry for the delay. You should now be able to run the sample without the rd.xml file and should no longer get...
I tried this out and it makes .NET Lambda development with CDK soooo much better! It worked great! If there is more testing you need me to do, please let...
It even worked seamlessly with a native AOT .NET project publish to AL2 and automatically built on Docker.
@normj I don't know if @vlesierse linked it above at all, or if you've seen it, but there is already a working POC that uses Amazon.Lambda.Tools. https://github.com/xaaskit/cdk-aws-lambda-dotnet The call to...