From 116c773a9f04557eaa12ed7fa32aeec401a08f88 Mon Sep 17 00:00:00 2001 From: sr55 Date: Sat, 11 Feb 2017 13:28:57 +0000 Subject: [PATCH] WinGui: Remove HandBrake.Server library. We don't use it. --- .../HandBrake.Server/HandBrake.Server.csproj | 89 ------------------- win/CS/HandBrake.Server/Program.cs | 33 ------- .../Properties/AssemblyInfo.cs | 36 -------- win/CS/HandBrake.Server/Settings.StyleCop | 1 - 4 files changed, 159 deletions(-) delete mode 100644 win/CS/HandBrake.Server/HandBrake.Server.csproj delete mode 100644 win/CS/HandBrake.Server/Program.cs delete mode 100644 win/CS/HandBrake.Server/Properties/AssemblyInfo.cs delete mode 100644 win/CS/HandBrake.Server/Settings.StyleCop diff --git a/win/CS/HandBrake.Server/HandBrake.Server.csproj b/win/CS/HandBrake.Server/HandBrake.Server.csproj deleted file mode 100644 index 98f2548d5..000000000 --- a/win/CS/HandBrake.Server/HandBrake.Server.csproj +++ /dev/null @@ -1,89 +0,0 @@ - - - - Debug - x86 - 8.0.30703 - 2.0 - {36847BA0-6814-41E1-B1C3-1D9D874418E9} - Exe - Properties - HandBrake.Server - HandBrake.Server - v4.0 - Client - 512 - - - x86 - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - x86 - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - x64 - bin\Debug\ - true - - - x64 - bin\Release\ - - - true - bin\x86\Debug31\ - DEBUG;TRACE - full - x86 - prompt - MinimumRecommendedRules.ruleset - - - true - bin\x64\Debug31\ - x64 - MinimumRecommendedRules.ruleset - - - - - - - - - - - - - - - - - - {087A2BA8-BAC2-4577-A46F-07FF9D420016} - HandBrake.ApplicationServices - - - - - - \ No newline at end of file diff --git a/win/CS/HandBrake.Server/Program.cs b/win/CS/HandBrake.Server/Program.cs deleted file mode 100644 index d5c21ac0c..000000000 --- a/win/CS/HandBrake.Server/Program.cs +++ /dev/null @@ -1,33 +0,0 @@ -namespace HandBrake.Server -{ - using System.Linq; - - using HandBrake.ApplicationServices.Services; - using HandBrake.ApplicationServices.Services.Interfaces; - - /// - /// The HandBrake Service - /// - class Program - { - /// - /// The main. - /// - /// - /// The args. - /// - static void Main(string[] args) - { - if (args.Count() != 1) - { - IServerService server = new ServerService(); - server.Start("8001"); - } - else - { - IServerService server = new ServerService(); - server.Start(args[0]); - } - } - } -} diff --git a/win/CS/HandBrake.Server/Properties/AssemblyInfo.cs b/win/CS/HandBrake.Server/Properties/AssemblyInfo.cs deleted file mode 100644 index 8453e0521..000000000 --- a/win/CS/HandBrake.Server/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("HandBrake.Server")] -[assembly: AssemblyDescription("An application that decouples libhb from the UI.")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("HandBrake Team")] -[assembly: AssemblyProduct("HandBrake.Server")] -[assembly: AssemblyCopyright("Copyright © 2017 HandBrake Team")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("5d5f700c-a9fb-42d3-ac29-06edf1aecf12")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.10.0.0")] -[assembly: AssemblyFileVersion("0.10.0.0")] diff --git a/win/CS/HandBrake.Server/Settings.StyleCop b/win/CS/HandBrake.Server/Settings.StyleCop deleted file mode 100644 index bb05f99bc..000000000 --- a/win/CS/HandBrake.Server/Settings.StyleCop +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file -- 2.40.0