Michael Wolfenden

Results 8 comments of Michael Wolfenden

@mattyway.. Nope, ended up using SquishIt which is a shame as this is a much simpler / nicer library

If anyone wants an example of using this library, I have re-implemented Forrest Brazeal's [Single Table Northwind example](https://github.com/trek10inc/ddb-single-table-example) here -> https://github.com/michael-wolfenden/dynamodb-toolbox-northwind

Turns out the issue appears to be the compiler confusing the overloads. Adding the `continueOnCapturedContext` solves the issue, for example: ```csharp public async Task Promote_with_async_methods_in_the_middle_of_the_chain_but_not_starting_the_chain(long id) { var gateway =...

@seroche I'm not sure what the mediator interface looks like, but this is working for me ```csharp async Task Main() { await Send(new object()) .OnSuccess(id => Publish(new object()), continueOnCapturedContext: false)...

The are three main ramifications 1) Strong naming is a breaking change 2) A strong named assembly can only reference other strong named assemblies 3) A strong-named assembly reference must...

@Rugvip so to clarify, with this change can the `app.baseurl` be configured at runtime?

@matkoch This would be a breaking change to anyone who had not installed `dotnet-ef` as a nuget package via `nuke :add-package dotnet-ef`. Are you still happy for the change to...

@niba Is there a reason why we have to specify both a fallback and a default rather than just a fallback. I can't imagine a scenario where you would want...