Change namespace to Jackett.Common (#2691)

Really hope I don't break anything with this
Went to have a go at .NET core and it just became too confusing for me with 'Jackett' namespace referring to both Jackett.Common and Jackett
This commit is contained in:
flightlevel
2018-03-10 19:05:56 +11:00
committed by GitHub
parent 7ab8138060
commit 3e5e48c3a0
291 changed files with 987 additions and 1468 deletions

View File

@@ -1,8 +1,4 @@
using Jackett.Models.Config;
using Jackett.Utils;
using Jackett.Utils.Clients;
using Microsoft.Owin.Hosting;
using Newtonsoft.Json.Linq;
using Microsoft.Owin.Hosting;
using NLog;
using System;
using System.Collections.Generic;
@@ -17,10 +13,12 @@ using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
using System.Web;
using Jackett.Services.Interfaces;
using Jacket.Common;
using System.Collections;
using System.Text.RegularExpressions;
using Jackett.Common;
using Jackett.Common.Models.Config;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
namespace Jackett.Services
{
@@ -34,13 +32,13 @@ namespace Jackett.Services
private ISerializeService serializeService;
private IConfigurationService configService;
private Logger logger;
private Utils.Clients.WebClient client;
private Common.Utils.Clients.WebClient client;
private IUpdateService updater;
private List<string> _notices = new List<string>();
private ServerConfig config;
IProtectionService _protectionService;
public ServerService(IIndexerManagerService i, IProcessService p, ISerializeService s, IConfigurationService c, Logger l, Utils.Clients.WebClient w, IUpdateService u, IProtectionService protectionService, ServerConfig serverConfig)
public ServerService(IIndexerManagerService i, IProcessService p, ISerializeService s, IConfigurationService c, Logger l, Common.Utils.Clients.WebClient w, IUpdateService u, IProtectionService protectionService, ServerConfig serverConfig)
{
indexerService = i;
processService = p;