Dan Guisinger

Results 22 comments of Dan Guisinger

@SbiCA hah, I've recently ripped out AutoMapper and MediatR because they didn't work with AoT and the project owner doesn't want to put time into making it work. I then...

With C# 11 and beyond you can specify the lambda return type: `await Result.Try(async Task () => { ... })`

That is a good question. I just started using it as well and someone mentioned its been 2 years since its seen an update. @altmann doesn't seem to have any...

@normj & @ashishdhingra I appear to be having this issue as well. I have been spinning why wheels for 3 weeks on multiple .NET projects, no matter what I do...

> @dguisinger Is there a sample project you can share that demonstrates this behavior? I'll throw together a sample project tonight

@normj I am at a complete loss. I created a new project, has identical Program.cs code, uses MediatR for CQRS and contains DynamoDB transaction logic in a separate assembly.... and...

@Simonl9l i had started down that path of the AoT/bundled runtime and never got it working, but I didn't spend too much time on it (its so painful to tweak...

@Simonl9l @normj Interestingly, I tried publish ... --self-contained today on my company's APIs that are having this issue, it changed the behavior to make it work more often, but it...

Something else I've found... a single line item in the log from the AWS SDK seems to indicate whether or not the request is going to work. ![Screenshot 2024-02-09 at...

@normj sure, here you go I did try putting my sample project into my CICD pipeline that the other projects go through just in case building with CodeBuild was causing...