Steve Smith
Steve Smith
See here: https://github.com/ardalis/GuardClauses/tree/main/.github/workflows
I had to modify the path to use the `/docker-compose` subfolder but even then I get an error saying `unknown shorthand flag: 'd' in -d` 
I think this is due to multi-targeting. https://github.com/ardalis/GuardClauses/actions/runs/7564844299/job/20599626486?pr=335 Need to set a value in the build - not sure where/how. Will look into it soon but this is blocking the...
Add a Guard.Against.Invalid() that takes in a fluent validator type and performs something like: ```csharp validator!.ValidateAndThrow(input); ``` This would need to go into a new package, Ardalis.GuardClauses.FluentValidation
Currently when using the expression guard you have to write code like this: ```csharp Guard.Against.AgainstExpression(x => false, input, "error"); ``` which obviously has "Against" in it twice and comes across...
By default Fast Endpoints endpoints don't appear to be automatically discovered by VS 2022's Endpoints Explorer. I'm not sure if there's anything we can do or if we need to...
Remove Autofac, etc.
I've tried to install Octopress on Windows a couple of times, the most recent using chocolatey and the instructions shown here: http://thaiat.github.io/blog/2014/03/13/how-to-install-and-use-octopress-on-windows/ I get through the various installs but when...
When using the extension method to find configuration files, this error occurs: ``` [16:22:36 INF] Seeding Database...catalogContext [16:22:36 ERR] The entity type 'ImageBanner' requires a primary key to be defined....
If you want to force the dbContext to make a new db call instead of relying on its identity map, you can do so with this approach: ``` dbContext.ChangeTracker.QueryTrackingBehavior =...