Darrell
Darrell
Also this is worth a read: https://andrewlock.net/converting-a-terminal-middleware-to-endpoint-routing-in-aspnetcore-3/
Need to investigate whether I can use a Matcher Policy over route contraint: - https://docs.microsoft.com/en-us/aspnet/core/fundamentals/routing?view=aspnetcore-3.1 - https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.routing.matcherpolicy?view=aspnetcore-3.1
@Otto404 thats nice to hear thank you. Do you have anything to share or elaborate on regarding this: > However, I plan to rely on a .net 5 solution
> Precompile with AVX2 (x64) or NEON (Arm64) instructions for better startup performance - How much of an improvemrnt are we talking about? - How much of a detraction if...
I've installed the latest git for windows, git flow version 1.12.0 AVH edition. `git flow feature finish` still appears to result in "closed" pr's. Is there a config file I...
This may help others that get caught out - it's necessary to opt in to this feature, via configuration: ``` git config --global gitflow.feature.finish.push yes git config --global gitflow.bugfix.finish.push yes...
Thanks I will take a look at `mock-fs`. Other libraries I have integrated with so far, like `rollup` and` requirejs` have plugins for this use case. For example: https://github.com/rxaviers/requirejs-memfiles or...
I tried `mock-fs`, but the trouble is, once you import `mock-fs`, it completely overrides all file system access, including to all of node_modules. Therefore when enabling `mock-fs`, and then invoking...
Actually, perhaps there is something that lets me create a virtual filesystem, with in memory files layered on top of physical files. Let me try: https://www.npmjs.com/package/memfs
@mrjoelkemp Ok so I managed to do some interesting stuff with https://github.com/streamich/unionfs like create a virtual filesystem (object implementing fs API) that is backed by multiple sources such as `mem-fs`...