You've already forked Sonarr
mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-11-06 09:19:38 +02:00
fixed ninjet's race condition
This commit is contained in:
@@ -1,12 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.Text;
|
||||
using NLog;
|
||||
using NLog;
|
||||
using NzbDrone.Core;
|
||||
|
||||
namespace NzbDrone.Console
|
||||
namespace NzbDrone
|
||||
{
|
||||
class Program
|
||||
{
|
||||
@@ -15,6 +10,8 @@ namespace NzbDrone.Console
|
||||
static void Main(string[] args)
|
||||
{
|
||||
CentralDispatch.ConfigureNlog();
|
||||
CentralDispatch.BindKernel();
|
||||
|
||||
Logger.Info("Starting NZBDrone WebUI");
|
||||
var server = new CassiniDev.Server(@"D:\My Dropbox\Git\NzbDrone\NzbDrone.Web");
|
||||
server.Start();
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
<configuration>
|
||||
<startup>
|
||||
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
|
||||
<connectionStrings>
|
||||
<add name="sqlite" connectionString="Data Source=filename;Version=3;"/>
|
||||
</connectionStrings>
|
||||
<startup useLegacyV2RuntimeActivationPolicy="true">
|
||||
<supportedRuntime version="v4.0"/>
|
||||
</startup>
|
||||
</configuration>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user