Derek Chasse
Derek Chasse
I'll take a look at it.
Flexor isn't intended to programatically access media widths in that fashion. The IsMobile etc methods are more declarative in nature. After a quick search looks like Ed Charbeneau has a...
This is a dupe of #24. There's a div which wraps the editor that you have styling control over. `.monaco-editor-container { height: 100% }` Put this in your root app.css...
An update on this: I was able to get this working though the method doesn't feel all too first class. That might just be me though... This is a barebones...
I'm experiencing this as well and am using Gulp as a step before the static-web-apps-deploy action. My application leverages TailwindCSS which needs NPM and Gulp. ```yaml - name: Run Gulp...
I'm feeling that, depending on what @darrelmiller comes back with, this could be considered a breaking change. I'm still confused as to the intent of `IOpenApiReferenceable` and the intent of...
I've looked at the pull request and seen comments from @ardalis which suggested moving the customer `IdentityUser` and `IdentityRole` implementations from Core to Infrastructure. I don't disagree with this, but...
Maybe something this this? ```csharp public class ListProjectRequest { public const string ROUTE = "/Project"; public string BuildRoute(int page, int pageSize) { return $"{ROUTE}?page={page}&pageSize={pageSize}"; } [FromQuery(Name = "page")] public int...
Paging seems to be relatively simple, and I've passed the above example request to an appropriate Specification. If desired, I can build a PR that shows this to include in...
I think a single template would still be sufficient. If you only want the API, just delete the Web project. If you want the web, you would need an API...