Skip to content

Instantly share code, notes, and snippets.

@gunndabad
gunndabad / DbDeploy.cs
Created April 29, 2013 13:41
Deploy SQL schema updates atomically from a selection of files.
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
namespace DbDeploy
{