diff --git a/PocketSharp/PocketReader.cs b/PocketSharp.Reader/PocketReader.cs similarity index 99% rename from PocketSharp/PocketReader.cs rename to PocketSharp.Reader/PocketReader.cs index d6425d5..c7155c4 100644 --- a/PocketSharp/PocketReader.cs +++ b/PocketSharp.Reader/PocketReader.cs @@ -17,7 +17,6 @@ namespace PocketSharp /// public string userAgent = "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.4 Safari/537.36 OPR/18.0.1284.2"; - /// /// REST client used for HTML retrieval /// diff --git a/PocketSharp.Reader/PocketSharp.Reader.csproj b/PocketSharp.Reader/PocketSharp.Reader.csproj new file mode 100644 index 0000000..95dc136 --- /dev/null +++ b/PocketSharp.Reader/PocketSharp.Reader.csproj @@ -0,0 +1,95 @@ + + + + + 10.0 + Debug + AnyCPU + {9D1BBD72-C263-43D3-9F2A-98F9F99235A4} + Library + Properties + PocketSharp + PocketSharp.Reader + v4.0 + Profile96 + 512 + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\ + true + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + ..\packages\Microsoft.Bcl.Async.1.0.165\lib\portable-net40+sl4+win8+wp71\Microsoft.Threading.Tasks.dll + + + ..\packages\Microsoft.Bcl.Async.1.0.165\lib\portable-net40+sl4+win8+wp71\Microsoft.Threading.Tasks.Extensions.dll + + + ..\packages\Microsoft.Bcl.1.1.6\lib\portable-net40+sl4+win8+wp71\System.IO.dll + + + ..\packages\Microsoft.Net.Http.2.2.18\lib\portable-net40+sl4+win8+wp71\System.Net.Http.dll + + + ..\packages\Microsoft.Net.Http.2.2.18\lib\portable-net40+sl4+win8+wp71\System.Net.Http.Extensions.dll + + + ..\packages\Microsoft.Net.Http.2.2.18\lib\portable-net40+sl4+win8+wp71\System.Net.Http.Primitives.dll + + + ..\packages\Microsoft.Bcl.1.1.6\lib\portable-net40+sl4+win8+wp71\System.Runtime.dll + + + ..\packages\Microsoft.Bcl.1.1.6\lib\portable-net40+sl4+win8+wp71\System.Threading.Tasks.dll + + + + + {817200c3-a327-4e35-9b5f-63a51c088577} + PocketSharp + + + {14c3ee6a-54a4-4a37-8b56-d52a3802f1c2} + NReadability + + + + + + + + + + + \ No newline at end of file diff --git a/PocketSharp.Reader/Properties/AssemblyInfo.cs b/PocketSharp.Reader/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..f0144f6 --- /dev/null +++ b/PocketSharp.Reader/Properties/AssemblyInfo.cs @@ -0,0 +1,30 @@ +using System.Resources; +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("PocketSharp.Reader")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("PocketSharp.Reader")] +[assembly: AssemblyCopyright("Copyright © 2013")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +[assembly: NeutralResourcesLanguage("en")] + +// 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("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/PocketSharp.Reader/packages.config b/PocketSharp.Reader/packages.config new file mode 100644 index 0000000..dbf45a6 --- /dev/null +++ b/PocketSharp.Reader/packages.config @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/PocketSharp.Tests/PocketSharp.Tests.csproj b/PocketSharp.Tests/PocketSharp.Tests.csproj index 15f9a01..60b2af7 100644 --- a/PocketSharp.Tests/PocketSharp.Tests.csproj +++ b/PocketSharp.Tests/PocketSharp.Tests.csproj @@ -82,6 +82,10 @@ + + {9d1bbd72-c263-43d3-9f2a-98f9f99235a4} + PocketSharp.Reader + {817200c3-a327-4e35-9b5f-63a51c088577} PocketSharp diff --git a/PocketSharp.Tests/ReadTests.cs b/PocketSharp.Tests/ReadTests.cs index 0c8c7a6..4f49d3d 100644 --- a/PocketSharp.Tests/ReadTests.cs +++ b/PocketSharp.Tests/ReadTests.cs @@ -1,8 +1,7 @@ -using System; +using PocketSharp.Models; +using System; using System.Threading.Tasks; using Xunit; -using PocketSharp.Models; -using System.Diagnostics; namespace PocketSharp.Tests { @@ -11,7 +10,8 @@ namespace PocketSharp.Tests private PocketReader reader; - public ReadTests() : base() + public ReadTests() + : base() { reader = new PocketReader(); } diff --git a/PocketSharp.sln b/PocketSharp.sln index 7ce5591..ad8fbf0 100644 --- a/PocketSharp.sln +++ b/PocketSharp.sln @@ -28,6 +28,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SgmlReader", "PortablePorts EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PortablePorts", "PortablePorts", "{82F79DE3-76D7-4FCB-AA7E-16BA7E363E0D}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PocketSharp.Reader", "PocketSharp.Reader\PocketSharp.Reader.csproj", "{9D1BBD72-C263-43D3-9F2A-98F9F99235A4}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -105,6 +107,14 @@ Global {9112414C-E2D1-43BA-A298-A89F77D94332}.Release|Any CPU.Build.0 = Release|Any CPU {9112414C-E2D1-43BA-A298-A89F77D94332}.Release|ARM.ActiveCfg = Release|Any CPU {9112414C-E2D1-43BA-A298-A89F77D94332}.Release|x86.ActiveCfg = Release|Any CPU + {9D1BBD72-C263-43D3-9F2A-98F9F99235A4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9D1BBD72-C263-43D3-9F2A-98F9F99235A4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9D1BBD72-C263-43D3-9F2A-98F9F99235A4}.Debug|ARM.ActiveCfg = Debug|Any CPU + {9D1BBD72-C263-43D3-9F2A-98F9F99235A4}.Debug|x86.ActiveCfg = Debug|Any CPU + {9D1BBD72-C263-43D3-9F2A-98F9F99235A4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9D1BBD72-C263-43D3-9F2A-98F9F99235A4}.Release|Any CPU.Build.0 = Release|Any CPU + {9D1BBD72-C263-43D3-9F2A-98F9F99235A4}.Release|ARM.ActiveCfg = Release|Any CPU + {9D1BBD72-C263-43D3-9F2A-98F9F99235A4}.Release|x86.ActiveCfg = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/PocketSharp/PocketSharp.csproj b/PocketSharp/PocketSharp.csproj index 772b4e5..fd45120 100644 --- a/PocketSharp/PocketSharp.csproj +++ b/PocketSharp/PocketSharp.csproj @@ -71,7 +71,6 @@ - @@ -111,12 +110,6 @@ - - - {14c3ee6a-54a4-4a37-8b56-d52a3802f1c2} - NReadability - -