From 126f49925906e37d58ae21a39c22b5c87aa34aaf Mon Sep 17 00:00:00 2001 From: "kay.one" Date: Mon, 4 Mar 2013 21:24:28 -0800 Subject: [PATCH] minor project cleanup. --- NzbDrone.Core/GettingStarted.txt | 46 --------------------- NzbDrone.Core/Indexers/NewznabDefinition.cs | 1 - NzbDrone.Core/Json.NET.license.txt | 7 ---- NzbDrone.Core/NzbDrone.Core.csproj | 22 ---------- NzbDrone.Core/Providers/SignalRProvider.cs | 3 -- NzbDrone.Core/license.txt | 25 ----------- NzbDrone.Core/packages.config | 1 - 7 files changed, 105 deletions(-) delete mode 100644 NzbDrone.Core/GettingStarted.txt delete mode 100644 NzbDrone.Core/Json.NET.license.txt delete mode 100644 NzbDrone.Core/license.txt diff --git a/NzbDrone.Core/GettingStarted.txt b/NzbDrone.Core/GettingStarted.txt deleted file mode 100644 index 2a261b11c..000000000 --- a/NzbDrone.Core/GettingStarted.txt +++ /dev/null @@ -1,46 +0,0 @@ - ___ ___ ___ ___ __ __ ___ __ _ _ _ - | | | | | | |__ |__) | / |__ |__) | | - | |/\| | | | |___ | \ | /_ |___ | \ _|_|_ - -Q) Which files do I need? -A) More than likely, you only need Twitterizer2.dll and Newtonsoft.Json.dll - -Q) What exactly are all these files? -A) - Twitterizer2.dll - This is the main binary which contains the core class library. This file is required for all addon - libraries. - - Twitterizer2.Data.dll - This is an additional library that provides data conversion functionality. - For example, with it you can quickly generate DataTables from any Twitterizer2 collection. - This file is not necessary for most projects. - - Newtonsoft.Json.dll - This is JSON.NET, developed by James Newton-King. You do not need to add a reference in your - project to this library, but it must be placed in your project's bin folder along with Twitterizer2.dll. - More information can be found here: http://james.newtonking.com/pages/json-net.aspx - - Twitterizer2.Async.dll - This is an addon library that allows developers to call Twitterizer2 methods asynchronously. - This file is not necessary for most projects. - - Twitterizer2.Streaming.dll - This is an addon library that provides access to the Streaming API. - This file is not necessary for most projects. - - Twitterizer.OAuth.dll - This is a standalone library that provides access to our OAuth request signing functionality without - using Twitterizer2. _DO_NOT_ include this file in your project if you are using Twitterizer2.dll. - All of the functionality found in this library is available within Twitterizer2.dll. - This file is not necessary for most projects. - - Twitterizer2lite.dll - This is a slimmed down version of the Twitterizer2.dll file built with the client profile as the target framework. - It will lack some extra pieces of functionality, such as the built-in data caching and support for application - configuration settings. - _DO_NOT_ include this file in your project if you are using Twitterizer2.dll. - This file is not necessary for most projects. - -Q) What about the license files? -A) The license files must accompany the dlls. That means that they must be distributed along with your application. \ No newline at end of file diff --git a/NzbDrone.Core/Indexers/NewznabDefinition.cs b/NzbDrone.Core/Indexers/NewznabDefinition.cs index bc8fe153c..fecbd5f0b 100644 --- a/NzbDrone.Core/Indexers/NewznabDefinition.cs +++ b/NzbDrone.Core/Indexers/NewznabDefinition.cs @@ -1,5 +1,4 @@ using System; -using System.ComponentModel.DataAnnotations; using NzbDrone.Core.Datastore; diff --git a/NzbDrone.Core/Json.NET.license.txt b/NzbDrone.Core/Json.NET.license.txt deleted file mode 100644 index c96b57855..000000000 --- a/NzbDrone.Core/Json.NET.license.txt +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (c) 2007 James Newton-King - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/NzbDrone.Core/NzbDrone.Core.csproj b/NzbDrone.Core/NzbDrone.Core.csproj index d48898936..880b1cce6 100644 --- a/NzbDrone.Core/NzbDrone.Core.csproj +++ b/NzbDrone.Core/NzbDrone.Core.csproj @@ -127,13 +127,6 @@ False ..\packages\Autofac.3.0.1\lib\net40\Autofac.dll - - False - ..\packages\Autofac.3.0.1\lib\net40\Autofac.Configuration.dll - - - ..\Libraries\DeskMetrics\DeskMetrics.NET.dll - ..\packages\Growl.0.6\lib\Growl.Connector.dll @@ -147,10 +140,6 @@ ..\packages\MediaInfoNet.0.3\lib\MediaInfoDotNet.dll - - True - ..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll - False ..\packages\Newtonsoft.Json.4.5.11\lib\net40\Newtonsoft.Json.dll @@ -171,21 +160,13 @@ ..\packages\SignalR.Server.0.5.3\lib\net40\SignalR.dll - - ..\packages\SignalR.Hosting.AspNet.0.5.3\lib\net40\SignalR.Hosting.AspNet.dll - ..\packages\SignalR.Hosting.Common.0.5.3\lib\net40\SignalR.Hosting.Common.dll - - - - - @@ -601,13 +582,10 @@ - - Always - diff --git a/NzbDrone.Core/Providers/SignalRProvider.cs b/NzbDrone.Core/Providers/SignalRProvider.cs index 5fb932bd2..bc2ae2d1f 100644 --- a/NzbDrone.Core/Providers/SignalRProvider.cs +++ b/NzbDrone.Core/Providers/SignalRProvider.cs @@ -1,7 +1,5 @@ using System; -using System.Collections.Generic; using System.Linq; -using System.Text; using NLog; using NzbDrone.Common.Eventing; using NzbDrone.Core.Download; @@ -9,7 +7,6 @@ using NzbDrone.Core.Tv; using NzbDrone.Core.Model; using NzbDrone.Core.Providers.Hubs; using SignalR; -using SignalR.Hubs; namespace NzbDrone.Core.Providers { diff --git a/NzbDrone.Core/license.txt b/NzbDrone.Core/license.txt deleted file mode 100644 index 630a2961e..000000000 --- a/NzbDrone.Core/license.txt +++ /dev/null @@ -1,25 +0,0 @@ -Growl.NET GNTP Connector Library ------------------------------------------------ -Copyright (c) 2008 - Growl for Windows -All rights reserved - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT -SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - diff --git a/NzbDrone.Core/packages.config b/NzbDrone.Core/packages.config index c53f4104f..f532359c6 100644 --- a/NzbDrone.Core/packages.config +++ b/NzbDrone.Core/packages.config @@ -9,7 +9,6 @@ -