Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created April 26, 2016 02:01
Show Gist options
  • Save dcomartin/ab873ace650cc26df17cc5b5ac75ad2c to your computer and use it in GitHub Desktop.
Save dcomartin/ab873ace650cc26df17cc5b5ac75ad2c to your computer and use it in GitHub Desktop.
using System;
namespace Hangfire.Demo
{
class Program
{
static void Main(string[] args)
{
GlobalConfiguration.Configuration
.UseColouredConsoleLogProvider()
.UseSqlServerStorage("MyHangfireConnection");
Console.ReadKey();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment