MillerMark / MrAnnouncerBot

A Twitch bot written in C#
32 stars 13 forks source link

T4 #2

Closed wilbennett closed 5 years ago

wilbennett commented 6 years ago

Here's a T4 template to do the the document generation you did today. If you want to use it, l can walk you through adding it - it's pretty simple.

You would call it from the code like this:

public static void GenerateIfNecessary()
{
    var doc = new DocGen();
    var content = doc.TransformText();
    File.WriteAllText(@"README.md", content);
}