mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Cleaned up some tests
This commit is contained in:
parent
81e155ae42
commit
9c7355f3fb
14 changed files with 156 additions and 62 deletions
|
@ -3,18 +3,24 @@ using System.Collections.Generic;
|
|||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.Text;
|
||||
using NLog;
|
||||
using NzbDrone.Core;
|
||||
|
||||
namespace NzbDrone.Console
|
||||
{
|
||||
class Program
|
||||
{
|
||||
|
||||
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
||||
static void Main(string[] args)
|
||||
{
|
||||
CentralDispatch.ConfigureNlog();
|
||||
Logger.Info("Starting NZBDrone WebUI");
|
||||
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);
|
||||
Logger.Info("Server available at: " + server.RootUrl);
|
||||
System.Console.ReadLine();
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue