1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-31 07:52:37 +01:00
Sonarr/NzbDrone/Program.cs
2010-10-02 12:01:43 -07:00

23 lines
506 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
namespace NzbDrone.Console
{
class Program
{
static void Main(string[] args)
{
var server = new CassiniDev.Server(@"D:\My Dropbox\Git\NzbDrone\NzbDrone.Web");
server.Start();
System.Diagnostics.Process.Start(server.RootUrl);
System.Console.WriteLine(server.RootUrl);
System.Console.ReadLine();
}
}
}