This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| # | |
| # Let first talk about the different types in YAML | |
| # | |
| # It is important to understand the differences and terms. | |
| # Not just for configuration splitting, but in general! | |
| # | |
| # Scalar values: String, Integer, Float, Boolean, Null | |
| # Comments | |
| # Collections: List (sequence), Dictionary (mapping) (important for splitting!) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace UmbracoFormsChecker | |
| { | |
| class Program |