Skip to content

Instantly share code, notes, and snippets.

View ccastanedaucf's full-sized avatar

Christian Castaneda ccastanedaucf

View GitHub Profile

Running an expired pre-release Bitwig version

We all fear this message:

image

If you've ever needed to stay on an expired Bitwig pre-release version, due to either pesky new bugs or the need to recover old projects - then this guide is for you.

Note - This assumes you have some baseline familiarity with a command line, but I've still tried to make this possible to follow along otherwise.

@ccastanedaucf
ccastanedaucf / EventQueueBuildEngine.cs
Created October 1, 2018 21:03
Barebones RAR out-of-proc
using System;
using System.Collections;
using System.Collections.Generic;
using Microsoft.Build.Framework;
namespace Microsoft.Build.Tasks
{
public class EventQueueBuildEngine : IBuildEngine5
{
public List<LazyFormattedBuildEventArgs> BuildEventQueue = new List<LazyFormattedBuildEventArgs>();