Nate Barbettini

Results 49 comments of Nate Barbettini

FWIW, for any open-source projects that don't have a strong-named assembly, you can download the source and compile and strong-name it yourself. It effectively becomes your own private fork of...

I like this idea, because it will mean that the "base" functionality can exist in a package that supports the widest number of platforms/devices. The only thing to figure out...

> I would just avoid calling it Core to avoid confusion with .NET Core Agreed 😄 > Should we bump major version to 3.x since it'll be one more big...

@zemien see the latest prerelease version (3.x series) on NuGet. That supports .NET Standard already. 👍

Is this still something you'd like @abatishchev?

> When/if such demand will be called out, we can come back on this. What do you think? Makes sense? Yep, I agree. Doesn't seem to be a strong need...

I ran into this in the context of cleaning up a git folder as well. Instead of adding overloads to `CleanDirectory`, does it make sense to add a method like...

@TheAifam5 I agree, having separate classes to model what's stored in the DB, what's returned to the user, and what's accepted in a POST reduces the chances that you'll accidentally...

401 (authorization failure) isn't the same thing as an unhandled exception. `UseExceptionHandler` is only invoked when an exception is thrown by some code in your application. Authorization failures don't throw...

You're right, there should be some POST/PUT examples. This repo isn't quite as feature-complete as the code in my video course (not intentionally, just for a lack of time). Sorry...