Tom Faltesek
Tom Faltesek
> Got a tip that [Fluent Validation](https://fluentvalidation.net/) could work well with Azure Functions. Is there anyone who has experience with this? Anyone who stumbles here in the future can check...
It's looking like this is an issue with the `nativescript-globalevents` node module. Before the gloablevents.js extends the `Page` object with all of the events and the `on()` method, it first...
Before we bother updating the nativescript-globalevents repo, is there a good reason for binding the `setDevice()` function to these particular events: ```js // Setup Events Page.on(Page.navigatingToFirst, setDevice); Page.on(Page.showingModallyFirst, setDevice); ```...
@NathanaelA - Yeah, even when `require("nativescript-platform-css");` is the first line of my main.ts file I get the following output during runtime: ``` CONSOLE INFO file:///app/vendor.js:91398:36: HMR: Hot Module Replacement Enabled....
For anyone else who stumbles upon this issue using Angular + NS, I've found that when you're adding a rule to a global SASS file like `_app-common.scss` you should NOT...
> What I use is: > > ``` > public IServiceProvider Build() > { > services.AddSingleton(); > } > ``` > But currently, Startup seems to be not invoked with...