Skip to content

Instantly share code, notes, and snippets.

---
#
# 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!)
@aadfPT
aadfPT / UmbracoFormsChecker.cs
Created May 8, 2018 15:23 — forked from emanuelgaspar/UmbracoFormsChecker.cs
Script to find all 'UmbracoForms.config' files under a given path and write their versions. Results are written to Console and a text file named 'UmbracoFormsVersions.txt'
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UmbracoFormsChecker
{
class Program