1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone/Program.cs

23 lines
506 B
C#
Raw Normal View History

2010-09-23 06:19:47 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
2010-10-02 22:01:43 +03:00
using System.Net;
2010-09-23 06:19:47 +03:00
using System.Text;
namespace NzbDrone.Console
{
class Program
{
static void Main(string[] args)
{
2010-10-02 22:01:43 +03:00
var server = new CassiniDev.Server(@"D:\My Dropbox\Git\NzbDrone\NzbDrone.Web");
server.Start();
2010-09-23 06:19:47 +03:00
2010-10-02 22:01:43 +03:00
System.Diagnostics.Process.Start(server.RootUrl);
System.Console.WriteLine(server.RootUrl);
2010-09-23 06:19:47 +03:00
System.Console.ReadLine();
}
}
}