Skip to content

Instantly share code, notes, and snippets.

View guardrex's full-sized avatar

Luke Latham guardrex

  • Aquent @ Microsoft
View GitHub Profile
@guardrex
guardrex / Program.cs
Created May 23, 2017 00:44
Title fixes
using System;
using System.Collections.Generic;
using System.IO;
using static System.IO.SearchOption;
namespace RemoveBlankLines
{
class Program
{
static void Main()
@guardrex
guardrex / Program.cs
Last active May 23, 2017 06:12
Replace MSDN links
using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Text.RegularExpressions;
namespace UpdateMSDNLinks
{
class Program
{
@guardrex
guardrex / Program.cs
Last active May 25, 2017 22:50
Remove uids from metadata docs (Script 1)
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using static System.IO.SearchOption;
namespace RemoveDuplicateUids
{
class Program
@guardrex
guardrex / Program.cs
Last active May 25, 2017 22:50
Remove uids from metadata docs (Script 2)
using System;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using static System.IO.SearchOption;
namespace RemoveDuplicateUids
{
class Program
{
@guardrex
guardrex / Program.cs
Last active May 29, 2017 15:24
Manually updating code blocks without lang idents.
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
using static System.IO.SearchOption;
namespace AddLanguageIdentifiers
{
class Program