Skip to content

Instantly share code, notes, and snippets.

View dperish's full-sized avatar

David Lee Perish dperish

View GitHub Profile
@dperish
dperish / Enable_vt100_csharp.cs
Created November 26, 2019 13:47 — forked from tomzorz/Enable_vt100_csharp.cs
Enable VT100 for the current console window from .NET Core
using System;
using System.Runtime.InteropServices;
namespace Vt100Test
{
public class Program
{
// ReSharper disable InconsistentNaming
/* XmlToMD.csx
*
* Converts .Net generated XML comments into a markdown file.
* Forked from: https://gist.github.com/lontivero/593fc51f1208555112e0
*
* Usage: scriptcs xmltomd.csx -- [XML_INPUT_FILE] <[MD_OUTPUT_FILE]>
*
* The second argument is optional, and will default to the same path
* & file name prefix as the input file.
*/