This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
| name: Intune Config Backup | |
| # Controls when the workflow will run | |
| on: | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| # Runs daily at 2pm UTC | |
| schedule: | |
| - cron: "0 14 * * *" |
This document now exists on the official ASP.NET core docs page.
There are lots of cases that you can improve. The examples use nullable reference types, but only the WhenNotNull example requires it.
Consider adopting the new property pattern, wherever you use IsNullOrEmpty.
string? hello = "hello world";(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.