Created
April 26, 2016 02:01
-
-
Save dcomartin/ab873ace650cc26df17cc5b5ac75ad2c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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