├── .vs ├── DataSpider │ ├── DesignTimeBuild │ │ └── .dtbcache │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal ├── ProjectSettings.json ├── VSWorkspaceState.json └── slnx.sqlite ├── Data.Spider ├── AtzucheEntitySpider.cs ├── Data.Spider.csproj ├── Program.cs ├── bin │ └── Debug │ │ └── netcoreapp2.1 │ │ ├── Data.Spider.deps.json │ │ ├── Data.Spider.dll │ │ ├── Data.Spider.pdb │ │ ├── Data.Spider.runtimeconfig.dev.json │ │ ├── Data.Spider.runtimeconfig.json │ │ ├── ErrorRequests │ │ └── 64ca063598d84b91947657760123c85c │ │ │ └── errors.txt │ │ ├── Spider.Command.dll │ │ ├── Spider.Command.pdb │ │ ├── Spider.Downloader.dll │ │ ├── Spider.Downloader.pdb │ │ ├── Spider.Entity.dll │ │ ├── Spider.Entity.pdb │ │ ├── Spider.Pipe.dll │ │ ├── Spider.Pipe.pdb │ │ ├── Spider.Processor.dll │ │ ├── Spider.Processor.pdb │ │ ├── logs │ │ └── log2018-11-08.txt │ │ └── nlog.config └── obj │ ├── Data.Spider.csproj.nuget.cache │ ├── Data.Spider.csproj.nuget.g.props │ ├── Data.Spider.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp2.1 │ │ ├── Data.Spider.AssemblyInfo.cs │ │ ├── Data.Spider.AssemblyInfoInputs.cache │ │ ├── Data.Spider.assets.cache │ │ ├── Data.Spider.csproj.CopyComplete │ │ ├── Data.Spider.csproj.CoreCompileInputs.cache │ │ ├── Data.Spider.csproj.FileListAbsolute.txt │ │ ├── Data.Spider.csprojAssemblyReference.cache │ │ ├── Data.Spider.dll │ │ ├── Data.Spider.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── project.assets.json ├── DataSpider.sln ├── README.md ├── Spider.Command ├── Spider.Command.csproj ├── bin │ └── Debug │ │ └── netcoreapp2.1 │ │ ├── Spider.Command.deps.json │ │ ├── Spider.Command.dll │ │ └── Spider.Command.pdb └── obj │ ├── Debug │ └── netcoreapp2.1 │ │ ├── Spider.Command.AssemblyInfo.cs │ │ ├── Spider.Command.AssemblyInfoInputs.cache │ │ ├── Spider.Command.assets.cache │ │ ├── Spider.Command.csproj.CoreCompileInputs.cache │ │ ├── Spider.Command.csproj.FileListAbsolute.txt │ │ ├── Spider.Command.csprojAssemblyReference.cache │ │ ├── Spider.Command.dll │ │ ├── Spider.Command.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── Spider.Command.csproj.nuget.cache │ ├── Spider.Command.csproj.nuget.g.props │ ├── Spider.Command.csproj.nuget.g.targets │ └── project.assets.json ├── Spider.Downloader ├── AtzucheDownloader.cs ├── Spider.Downloader.csproj ├── bin │ └── Debug │ │ └── netcoreapp2.1 │ │ ├── Spider.Downloader.deps.json │ │ ├── Spider.Downloader.dll │ │ └── Spider.Downloader.pdb └── obj │ ├── Debug │ └── netcoreapp2.1 │ │ ├── Spider.Downloader.AssemblyInfo.cs │ │ ├── Spider.Downloader.AssemblyInfoInputs.cache │ │ ├── Spider.Downloader.assets.cache │ │ ├── Spider.Downloader.csproj.CoreCompileInputs.cache │ │ ├── Spider.Downloader.csproj.FileListAbsolute.txt │ │ ├── Spider.Downloader.csprojAssemblyReference.cache │ │ ├── Spider.Downloader.dll │ │ ├── Spider.Downloader.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── Spider.Downloader.csproj.nuget.cache │ ├── Spider.Downloader.csproj.nuget.g.props │ ├── Spider.Downloader.csproj.nuget.g.targets │ └── project.assets.json ├── Spider.Entity ├── AtzucheModel.cs ├── Spider.Entity.csproj ├── bin │ └── Debug │ │ └── netcoreapp2.1 │ │ ├── Spider.Entity.deps.json │ │ ├── Spider.Entity.dll │ │ └── Spider.Entity.pdb └── obj │ ├── Debug │ └── netcoreapp2.1 │ │ ├── Spider.Entity.AssemblyInfo.cs │ │ ├── Spider.Entity.AssemblyInfoInputs.cache │ │ ├── Spider.Entity.assets.cache │ │ ├── Spider.Entity.csproj.CoreCompileInputs.cache │ │ ├── Spider.Entity.csproj.FileListAbsolute.txt │ │ ├── Spider.Entity.csprojAssemblyReference.cache │ │ ├── Spider.Entity.dll │ │ ├── Spider.Entity.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── Spider.Entity.csproj.nuget.cache │ ├── Spider.Entity.csproj.nuget.g.props │ ├── Spider.Entity.csproj.nuget.g.targets │ └── project.assets.json ├── Spider.Pipe ├── AtzuchePipe.cs ├── Spider.Pipe.csproj ├── bin │ └── Debug │ │ └── netcoreapp2.1 │ │ ├── Spider.Entity.dll │ │ ├── Spider.Entity.pdb │ │ ├── Spider.Pipe.deps.json │ │ ├── Spider.Pipe.dll │ │ └── Spider.Pipe.pdb └── obj │ ├── Debug │ └── netcoreapp2.1 │ │ ├── Spider.Pipe.AssemblyInfo.cs │ │ ├── Spider.Pipe.AssemblyInfoInputs.cache │ │ ├── Spider.Pipe.assets.cache │ │ ├── Spider.Pipe.csproj.CopyComplete │ │ ├── Spider.Pipe.csproj.CoreCompileInputs.cache │ │ ├── Spider.Pipe.csproj.FileListAbsolute.txt │ │ ├── Spider.Pipe.csprojAssemblyReference.cache │ │ ├── Spider.Pipe.dll │ │ ├── Spider.Pipe.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── Spider.Pipe.csproj.nuget.cache │ ├── Spider.Pipe.csproj.nuget.g.props │ ├── Spider.Pipe.csproj.nuget.g.targets │ └── project.assets.json └── Spider.Processor ├── AtzucheProcessor.cs ├── Spider.Processor.csproj ├── bin └── Debug │ └── netcoreapp2.1 │ ├── Spider.Entity.dll │ ├── Spider.Entity.pdb │ ├── Spider.Processor.deps.json │ ├── Spider.Processor.dll │ └── Spider.Processor.pdb └── obj ├── Debug └── netcoreapp2.1 │ ├── Spider.Processor.AssemblyInfo.cs │ ├── Spider.Processor.AssemblyInfoInputs.cache │ ├── Spider.Processor.assets.cache │ ├── Spider.Processor.csproj.CopyComplete │ ├── Spider.Processor.csproj.CoreCompileInputs.cache │ ├── Spider.Processor.csproj.FileListAbsolute.txt │ ├── Spider.Processor.csprojAssemblyReference.cache │ ├── Spider.Processor.dll │ ├── Spider.Processor.pdb │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Spider.Processor.csproj.nuget.cache ├── Spider.Processor.csproj.nuget.g.props ├── Spider.Processor.csproj.nuget.g.targets └── project.assets.json /.vs/DataSpider/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/.vs/DataSpider/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /.vs/DataSpider/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/.vs/DataSpider/v15/.suo -------------------------------------------------------------------------------- /.vs/DataSpider/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/.vs/DataSpider/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /.vs/DataSpider/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/.vs/DataSpider/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/DataSpider/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/.vs/DataSpider/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/DataSpider/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/.vs/DataSpider/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- 1 | { 2 | "ExpandedNodes": [ 3 | "" 4 | ], 5 | "PreviewInSolutionExplorer": false 6 | } -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/.vs/slnx.sqlite -------------------------------------------------------------------------------- /Data.Spider/AtzucheEntitySpider.cs: -------------------------------------------------------------------------------- 1 | using DotnetSpider.Core; 2 | using DotnetSpider.Extension; 3 | using DotnetSpider.Extension.Pipeline; 4 | using Spider.Entity; 5 | using System; 6 | using System.Collections.Generic; 7 | using System.Text; 8 | 9 | namespace Data.Spider 10 | { 11 | public class AtzucheEntitySpider:EntitySpider 12 | { 13 | protected override void MyInit(params string[] arguments) 14 | { 15 | AddPipeline(new SqlServerEntityPipeline("Server=.;Database=AuzucheSpider;uid=sa;pwd=123;MultipleActiveResultSets=true"));//注意连接字符串中数据库不能带 . 亲测报错。。。 16 | AddStartUrl("http://www.atzuche.com/car/searchListMap/2?cityCode=330100&sceneCode=U002&filterCondition%5Blon%5D=120.219294&filterCondition%5Blat%5D=30.259258&filterCondition%5Bseq%5D=4&pageNum=1&pageSize=0"); 17 | AddEntityType();//如添加此实体类,框架将会根据此实体类上面的特性选择进行匹配,匹配成功后插入数据库,固可以省略Processor和Pipe,或者不使用此句,通过控制器和回调自定义存储方法 18 | } 19 | 20 | public AtzucheEntitySpider() : base("AuzucheSpider", new Site 21 | { 22 | CycleRetryTimes = 1, 23 | SleepTime = 200, 24 | Headers = new Dictionary() 25 | { 26 | {"Accept","application/json, text/javascript, */*; q=0.01" }, 27 | {"Accept-Encoding","gzip, deflate" }, 28 | {"gzip, deflate","zh-CN,zh;q=0.9" }, 29 | {"X-Requested-With","XMLHttpRequest" }, 30 | { "Referer", "http://www.atzuche.com/hz/car/search"}, 31 | { "Connection","keep-alive" }, 32 | { "Content-Type","application/json;charset=UTF-8" }, 33 | { "Host","www.atzuche.com"}, 34 | { "User-Agent","Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36"} 35 | } 36 | }) 37 | { 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /Data.Spider/Data.Spider.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp2.1 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Data.Spider/Program.cs: -------------------------------------------------------------------------------- 1 | using DotnetSpider.Core; 2 | using DotnetSpider.Core.Scheduler; 3 | using Spider.Pipe; 4 | using Spider.Processor; 5 | using System; 6 | using System.Collections.Generic; 7 | 8 | namespace Data.Spider 9 | { 10 | class Program 11 | { 12 | static void Main(string[] args) 13 | { 14 | AtzucheEntitySpider dDengEntitySpider = new AtzucheEntitySpider(); 15 | dDengEntitySpider.AddPageProcessor(new AtzucheProcessor());//控制器 16 | dDengEntitySpider.AddPipeline(new AtzuchePipe());//回调 17 | dDengEntitySpider.ThreadNum = 1; 18 | dDengEntitySpider.Run(); 19 | Console.WriteLine("Press any key to continue..."); 20 | Console.Read(); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/Data.Spider.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/bin/Debug/netcoreapp2.1/Data.Spider.dll -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/Data.Spider.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/bin/Debug/netcoreapp2.1/Data.Spider.pdb -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/Data.Spider.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\admin\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\admin\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/Data.Spider.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp2.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "2.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/ErrorRequests/64ca063598d84b91947657760123c85c/errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/bin/Debug/netcoreapp2.1/ErrorRequests/64ca063598d84b91947657760123c85c/errors.txt -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/Spider.Command.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/bin/Debug/netcoreapp2.1/Spider.Command.dll -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/Spider.Command.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/bin/Debug/netcoreapp2.1/Spider.Command.pdb -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/Spider.Downloader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/bin/Debug/netcoreapp2.1/Spider.Downloader.dll -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/Spider.Downloader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/bin/Debug/netcoreapp2.1/Spider.Downloader.pdb -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/Spider.Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/bin/Debug/netcoreapp2.1/Spider.Entity.dll -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/Spider.Entity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/bin/Debug/netcoreapp2.1/Spider.Entity.pdb -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/Spider.Pipe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/bin/Debug/netcoreapp2.1/Spider.Pipe.dll -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/Spider.Pipe.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/bin/Debug/netcoreapp2.1/Spider.Pipe.pdb -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/Spider.Processor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/bin/Debug/netcoreapp2.1/Spider.Processor.dll -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/Spider.Processor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/bin/Debug/netcoreapp2.1/Spider.Processor.pdb -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/logs/log2018-11-08.txt: -------------------------------------------------------------------------------- 1 | [20181108 21:12:42][64ca063598d84b91947657760123c85c][Info] Build custom component... 2 | [20181108 21:12:43][64ca063598d84b91947657760123c85c][Info] Build internal component... 3 | [20181108 21:12:45][64ca063598d84b91947657760123c85c][Info] Add start urls to scheduler, count 1. 4 | [20181108 21:12:45][64ca063598d84b91947657760123c85c][Trace] Left 1 Success 0 Error 0 Total 1 Dowload 0 Extract 0 Pipeline 0 5 | [20181108 21:13:04][64ca063598d84b91947657760123c85c][Info] Crawl: http://www.atzuche.com/car/searchListMap/2?cityCode=330100&sceneCode=U002&filterCondition%5Blon%5D=120.219294&filterCondition%5Blat%5D=30.259258&filterCondition%5Bseq%5D=4&pageNum=1&pageSize=0 success, results: 1912, effectedRow: 956. 6 | [20181108 21:13:04][64ca063598d84b91947657760123c85c][Trace] Left 0 Success 1 Error 0 Total 1 Dowload 1290 Extract 545 Pipeline 7455 7 | [20181108 21:13:08][64ca063598d84b91947657760123c85c][Warn] Exit... 8 | [20181108 21:13:08][64ca063598d84b91947657760123c85c][Trace] Left 0 Success 1 Error 0 Total 1 Dowload 1290 Extract 545 Pipeline 7455 9 | [20181108 21:13:08][64ca063598d84b91947657760123c85c][Info] Crawl terminated, cost: 22.3657628 seconds. 10 | -------------------------------------------------------------------------------- /Data.Spider/bin/Debug/netcoreapp2.1/nlog.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Data.Spider/obj/Data.Spider.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "8fGcpdrAoN++0jdTzYIgoAs6n7+iuB8uLXEQB0QrMhC1NPnwa1BqfBdup2u3diKtIitKxFyroMhpCqfjUO1XKQ==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Data.Spider/obj/Data.Spider.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | F:\Project\DataSpider\Data.Spider\obj\project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\admin\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 4.8.1 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Data.Spider/obj/Data.Spider.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Data.Spider/obj/Debug/netcoreapp2.1/Data.Spider.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Data.Spider")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Data.Spider")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Data.Spider")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // 由 MSBuild WriteCodeFragment 类生成。 23 | 24 | -------------------------------------------------------------------------------- /Data.Spider/obj/Debug/netcoreapp2.1/Data.Spider.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 3faca3269c81690970c20c1efe70080196e508ee 2 | -------------------------------------------------------------------------------- /Data.Spider/obj/Debug/netcoreapp2.1/Data.Spider.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/obj/Debug/netcoreapp2.1/Data.Spider.assets.cache -------------------------------------------------------------------------------- /Data.Spider/obj/Debug/netcoreapp2.1/Data.Spider.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/obj/Debug/netcoreapp2.1/Data.Spider.csproj.CopyComplete -------------------------------------------------------------------------------- /Data.Spider/obj/Debug/netcoreapp2.1/Data.Spider.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 400359979a84f07c7ce71adaeab9d56e6eace5fb 2 | -------------------------------------------------------------------------------- /Data.Spider/obj/Debug/netcoreapp2.1/Data.Spider.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\Project\DataSpider\Data.Spider\bin\Debug\netcoreapp2.1\Data.Spider.deps.json 2 | F:\Project\DataSpider\Data.Spider\bin\Debug\netcoreapp2.1\Data.Spider.runtimeconfig.json 3 | F:\Project\DataSpider\Data.Spider\bin\Debug\netcoreapp2.1\Data.Spider.runtimeconfig.dev.json 4 | F:\Project\DataSpider\Data.Spider\bin\Debug\netcoreapp2.1\Data.Spider.dll 5 | F:\Project\DataSpider\Data.Spider\bin\Debug\netcoreapp2.1\Data.Spider.pdb 6 | F:\Project\DataSpider\Data.Spider\obj\Debug\netcoreapp2.1\Data.Spider.csproj.CoreCompileInputs.cache 7 | F:\Project\DataSpider\Data.Spider\obj\Debug\netcoreapp2.1\Data.Spider.AssemblyInfoInputs.cache 8 | F:\Project\DataSpider\Data.Spider\obj\Debug\netcoreapp2.1\Data.Spider.AssemblyInfo.cs 9 | F:\Project\DataSpider\Data.Spider\obj\Debug\netcoreapp2.1\Data.Spider.dll 10 | F:\Project\DataSpider\Data.Spider\obj\Debug\netcoreapp2.1\Data.Spider.pdb 11 | F:\Project\DataSpider\Data.Spider\bin\Debug\netcoreapp2.1\Spider.Command.dll 12 | F:\Project\DataSpider\Data.Spider\bin\Debug\netcoreapp2.1\Spider.Downloader.dll 13 | F:\Project\DataSpider\Data.Spider\bin\Debug\netcoreapp2.1\Spider.Entity.dll 14 | F:\Project\DataSpider\Data.Spider\bin\Debug\netcoreapp2.1\Spider.Pipe.dll 15 | F:\Project\DataSpider\Data.Spider\bin\Debug\netcoreapp2.1\Spider.Processor.dll 16 | F:\Project\DataSpider\Data.Spider\bin\Debug\netcoreapp2.1\Spider.Command.pdb 17 | F:\Project\DataSpider\Data.Spider\bin\Debug\netcoreapp2.1\Spider.Downloader.pdb 18 | F:\Project\DataSpider\Data.Spider\bin\Debug\netcoreapp2.1\Spider.Entity.pdb 19 | F:\Project\DataSpider\Data.Spider\bin\Debug\netcoreapp2.1\Spider.Pipe.pdb 20 | F:\Project\DataSpider\Data.Spider\bin\Debug\netcoreapp2.1\Spider.Processor.pdb 21 | F:\Project\DataSpider\Data.Spider\obj\Debug\netcoreapp2.1\Data.Spider.csprojAssemblyReference.cache 22 | F:\Project\DataSpider\Data.Spider\obj\Debug\netcoreapp2.1\Data.Spider.csproj.CopyComplete 23 | -------------------------------------------------------------------------------- /Data.Spider/obj/Debug/netcoreapp2.1/Data.Spider.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/obj/Debug/netcoreapp2.1/Data.Spider.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Data.Spider/obj/Debug/netcoreapp2.1/Data.Spider.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/obj/Debug/netcoreapp2.1/Data.Spider.dll -------------------------------------------------------------------------------- /Data.Spider/obj/Debug/netcoreapp2.1/Data.Spider.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/obj/Debug/netcoreapp2.1/Data.Spider.pdb -------------------------------------------------------------------------------- /Data.Spider/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Data.Spider/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Data.Spider/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Data.Spider/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /DataSpider.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28010.2048 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spider.Command", "Spider.Command\Spider.Command.csproj", "{3284C321-C161-4958-8A00-108B6BCB258E}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spider.Downloader", "Spider.Downloader\Spider.Downloader.csproj", "{46083AEF-8806-4AE2-88F9-2EB219458464}" 9 | EndProject 10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spider.Entity", "Spider.Entity\Spider.Entity.csproj", "{C4083AA3-A5F9-43E6-BDF5-EE11E8449033}" 11 | EndProject 12 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spider.Pipe", "Spider.Pipe\Spider.Pipe.csproj", "{D45B2DE4-4E50-40E4-9B20-A74A96E950EE}" 13 | EndProject 14 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spider.Processor", "Spider.Processor\Spider.Processor.csproj", "{FE5E226A-503D-4AB4-B09F-B948A199EA96}" 15 | EndProject 16 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Data.Spider", "Data.Spider\Data.Spider.csproj", "{A856ACAC-4CF8-4AC1-B91E-7C15E6597CE3}" 17 | EndProject 18 | Global 19 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 20 | Debug|Any CPU = Debug|Any CPU 21 | Release|Any CPU = Release|Any CPU 22 | EndGlobalSection 23 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 24 | {3284C321-C161-4958-8A00-108B6BCB258E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 25 | {3284C321-C161-4958-8A00-108B6BCB258E}.Debug|Any CPU.Build.0 = Debug|Any CPU 26 | {3284C321-C161-4958-8A00-108B6BCB258E}.Release|Any CPU.ActiveCfg = Release|Any CPU 27 | {3284C321-C161-4958-8A00-108B6BCB258E}.Release|Any CPU.Build.0 = Release|Any CPU 28 | {46083AEF-8806-4AE2-88F9-2EB219458464}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 29 | {46083AEF-8806-4AE2-88F9-2EB219458464}.Debug|Any CPU.Build.0 = Debug|Any CPU 30 | {46083AEF-8806-4AE2-88F9-2EB219458464}.Release|Any CPU.ActiveCfg = Release|Any CPU 31 | {46083AEF-8806-4AE2-88F9-2EB219458464}.Release|Any CPU.Build.0 = Release|Any CPU 32 | {C4083AA3-A5F9-43E6-BDF5-EE11E8449033}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 33 | {C4083AA3-A5F9-43E6-BDF5-EE11E8449033}.Debug|Any CPU.Build.0 = Debug|Any CPU 34 | {C4083AA3-A5F9-43E6-BDF5-EE11E8449033}.Release|Any CPU.ActiveCfg = Release|Any CPU 35 | {C4083AA3-A5F9-43E6-BDF5-EE11E8449033}.Release|Any CPU.Build.0 = Release|Any CPU 36 | {D45B2DE4-4E50-40E4-9B20-A74A96E950EE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 37 | {D45B2DE4-4E50-40E4-9B20-A74A96E950EE}.Debug|Any CPU.Build.0 = Debug|Any CPU 38 | {D45B2DE4-4E50-40E4-9B20-A74A96E950EE}.Release|Any CPU.ActiveCfg = Release|Any CPU 39 | {D45B2DE4-4E50-40E4-9B20-A74A96E950EE}.Release|Any CPU.Build.0 = Release|Any CPU 40 | {FE5E226A-503D-4AB4-B09F-B948A199EA96}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 41 | {FE5E226A-503D-4AB4-B09F-B948A199EA96}.Debug|Any CPU.Build.0 = Debug|Any CPU 42 | {FE5E226A-503D-4AB4-B09F-B948A199EA96}.Release|Any CPU.ActiveCfg = Release|Any CPU 43 | {FE5E226A-503D-4AB4-B09F-B948A199EA96}.Release|Any CPU.Build.0 = Release|Any CPU 44 | {A856ACAC-4CF8-4AC1-B91E-7C15E6597CE3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 45 | {A856ACAC-4CF8-4AC1-B91E-7C15E6597CE3}.Debug|Any CPU.Build.0 = Debug|Any CPU 46 | {A856ACAC-4CF8-4AC1-B91E-7C15E6597CE3}.Release|Any CPU.ActiveCfg = Release|Any CPU 47 | {A856ACAC-4CF8-4AC1-B91E-7C15E6597CE3}.Release|Any CPU.Build.0 = Release|Any CPU 48 | EndGlobalSection 49 | GlobalSection(SolutionProperties) = preSolution 50 | HideSolutionNode = FALSE 51 | EndGlobalSection 52 | GlobalSection(ExtensibilityGlobals) = postSolution 53 | SolutionGuid = {A778A0D8-BCB2-430A-9D01-004AE5923717} 54 | EndGlobalSection 55 | EndGlobal 56 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DataSpider 2 | Demo for DotnetSpider 3 | -------------------------------------------------------------------------------- /Spider.Command/Spider.Command.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.1 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Spider.Command/bin/Debug/netcoreapp2.1/Spider.Command.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v2.1", 4 | "signature": "da39a3ee5e6b4b0d3255bfef95601890afd80709" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v2.1": { 9 | "Spider.Command/1.0.0": { 10 | "runtime": { 11 | "Spider.Command.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "Spider.Command/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /Spider.Command/bin/Debug/netcoreapp2.1/Spider.Command.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Command/bin/Debug/netcoreapp2.1/Spider.Command.dll -------------------------------------------------------------------------------- /Spider.Command/bin/Debug/netcoreapp2.1/Spider.Command.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Command/bin/Debug/netcoreapp2.1/Spider.Command.pdb -------------------------------------------------------------------------------- /Spider.Command/obj/Debug/netcoreapp2.1/Spider.Command.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Spider.Command")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Spider.Command")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Spider.Command")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // 由 MSBuild WriteCodeFragment 类生成。 23 | 24 | -------------------------------------------------------------------------------- /Spider.Command/obj/Debug/netcoreapp2.1/Spider.Command.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a217de161cfbebc30fafa39784b1252e2f6354f7 2 | -------------------------------------------------------------------------------- /Spider.Command/obj/Debug/netcoreapp2.1/Spider.Command.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Command/obj/Debug/netcoreapp2.1/Spider.Command.assets.cache -------------------------------------------------------------------------------- /Spider.Command/obj/Debug/netcoreapp2.1/Spider.Command.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | beda4317c9adf47a39551c2d07079e1f03282393 2 | -------------------------------------------------------------------------------- /Spider.Command/obj/Debug/netcoreapp2.1/Spider.Command.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\Project\DataSpider\Spider.Command\bin\Debug\netcoreapp2.1\Spider.Command.deps.json 2 | F:\Project\DataSpider\Spider.Command\bin\Debug\netcoreapp2.1\Spider.Command.dll 3 | F:\Project\DataSpider\Spider.Command\bin\Debug\netcoreapp2.1\Spider.Command.pdb 4 | F:\Project\DataSpider\Spider.Command\obj\Debug\netcoreapp2.1\Spider.Command.csprojAssemblyReference.cache 5 | F:\Project\DataSpider\Spider.Command\obj\Debug\netcoreapp2.1\Spider.Command.csproj.CoreCompileInputs.cache 6 | F:\Project\DataSpider\Spider.Command\obj\Debug\netcoreapp2.1\Spider.Command.AssemblyInfoInputs.cache 7 | F:\Project\DataSpider\Spider.Command\obj\Debug\netcoreapp2.1\Spider.Command.AssemblyInfo.cs 8 | F:\Project\DataSpider\Spider.Command\obj\Debug\netcoreapp2.1\Spider.Command.dll 9 | F:\Project\DataSpider\Spider.Command\obj\Debug\netcoreapp2.1\Spider.Command.pdb 10 | -------------------------------------------------------------------------------- /Spider.Command/obj/Debug/netcoreapp2.1/Spider.Command.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Command/obj/Debug/netcoreapp2.1/Spider.Command.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Spider.Command/obj/Debug/netcoreapp2.1/Spider.Command.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Command/obj/Debug/netcoreapp2.1/Spider.Command.dll -------------------------------------------------------------------------------- /Spider.Command/obj/Debug/netcoreapp2.1/Spider.Command.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Command/obj/Debug/netcoreapp2.1/Spider.Command.pdb -------------------------------------------------------------------------------- /Spider.Command/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Command/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Spider.Command/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Command/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Spider.Command/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Command/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Spider.Command/obj/Spider.Command.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "V/R4ns1hYXhZM0lMpn2QAA3Qg6bilYkWs7Bbkml+SF7gtSQ4YegZ+AOOAqgMd/0EmrYT9yz0CD9iCD+jHZZVtw==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Spider.Command/obj/Spider.Command.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | F:\Project\DataSpider\Spider.Command\obj\project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\admin\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 4.8.1 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Spider.Command/obj/Spider.Command.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Spider.Command/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETCoreApp,Version=v2.1": { 5 | "Microsoft.NETCore.App/2.1.0": { 6 | "type": "package", 7 | "dependencies": { 8 | "Microsoft.NETCore.DotNetHostPolicy": "2.1.0", 9 | "Microsoft.NETCore.Platforms": "2.1.0", 10 | "Microsoft.NETCore.Targets": "2.1.0", 11 | "NETStandard.Library": "2.0.3" 12 | }, 13 | "compile": { 14 | "ref/netcoreapp2.1/Microsoft.CSharp.dll": {}, 15 | "ref/netcoreapp2.1/Microsoft.VisualBasic.dll": {}, 16 | "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll": {}, 17 | "ref/netcoreapp2.1/System.AppContext.dll": {}, 18 | "ref/netcoreapp2.1/System.Buffers.dll": {}, 19 | "ref/netcoreapp2.1/System.Collections.Concurrent.dll": {}, 20 | "ref/netcoreapp2.1/System.Collections.Immutable.dll": {}, 21 | "ref/netcoreapp2.1/System.Collections.NonGeneric.dll": {}, 22 | "ref/netcoreapp2.1/System.Collections.Specialized.dll": {}, 23 | "ref/netcoreapp2.1/System.Collections.dll": {}, 24 | "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll": {}, 25 | "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll": {}, 26 | "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll": {}, 27 | "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll": {}, 28 | "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll": {}, 29 | "ref/netcoreapp2.1/System.ComponentModel.dll": {}, 30 | "ref/netcoreapp2.1/System.Configuration.dll": {}, 31 | "ref/netcoreapp2.1/System.Console.dll": {}, 32 | "ref/netcoreapp2.1/System.Core.dll": {}, 33 | "ref/netcoreapp2.1/System.Data.Common.dll": {}, 34 | "ref/netcoreapp2.1/System.Data.dll": {}, 35 | "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll": {}, 36 | "ref/netcoreapp2.1/System.Diagnostics.Debug.dll": {}, 37 | "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll": {}, 38 | "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll": {}, 39 | "ref/netcoreapp2.1/System.Diagnostics.Process.dll": {}, 40 | "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll": {}, 41 | "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll": {}, 42 | "ref/netcoreapp2.1/System.Diagnostics.Tools.dll": {}, 43 | "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll": {}, 44 | "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll": {}, 45 | "ref/netcoreapp2.1/System.Drawing.Primitives.dll": {}, 46 | "ref/netcoreapp2.1/System.Drawing.dll": {}, 47 | "ref/netcoreapp2.1/System.Dynamic.Runtime.dll": {}, 48 | "ref/netcoreapp2.1/System.Globalization.Calendars.dll": {}, 49 | "ref/netcoreapp2.1/System.Globalization.Extensions.dll": {}, 50 | "ref/netcoreapp2.1/System.Globalization.dll": {}, 51 | "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll": {}, 52 | "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll": {}, 53 | "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll": {}, 54 | "ref/netcoreapp2.1/System.IO.Compression.dll": {}, 55 | "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll": {}, 56 | "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll": {}, 57 | "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll": {}, 58 | "ref/netcoreapp2.1/System.IO.FileSystem.dll": {}, 59 | "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll": {}, 60 | "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll": {}, 61 | "ref/netcoreapp2.1/System.IO.Pipes.dll": {}, 62 | "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll": {}, 63 | "ref/netcoreapp2.1/System.IO.dll": {}, 64 | "ref/netcoreapp2.1/System.Linq.Expressions.dll": {}, 65 | "ref/netcoreapp2.1/System.Linq.Parallel.dll": {}, 66 | "ref/netcoreapp2.1/System.Linq.Queryable.dll": {}, 67 | "ref/netcoreapp2.1/System.Linq.dll": {}, 68 | "ref/netcoreapp2.1/System.Memory.dll": {}, 69 | "ref/netcoreapp2.1/System.Net.Http.dll": {}, 70 | "ref/netcoreapp2.1/System.Net.HttpListener.dll": {}, 71 | "ref/netcoreapp2.1/System.Net.Mail.dll": {}, 72 | "ref/netcoreapp2.1/System.Net.NameResolution.dll": {}, 73 | "ref/netcoreapp2.1/System.Net.NetworkInformation.dll": {}, 74 | "ref/netcoreapp2.1/System.Net.Ping.dll": {}, 75 | "ref/netcoreapp2.1/System.Net.Primitives.dll": {}, 76 | "ref/netcoreapp2.1/System.Net.Requests.dll": {}, 77 | "ref/netcoreapp2.1/System.Net.Security.dll": {}, 78 | "ref/netcoreapp2.1/System.Net.ServicePoint.dll": {}, 79 | "ref/netcoreapp2.1/System.Net.Sockets.dll": {}, 80 | "ref/netcoreapp2.1/System.Net.WebClient.dll": {}, 81 | "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll": {}, 82 | "ref/netcoreapp2.1/System.Net.WebProxy.dll": {}, 83 | "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll": {}, 84 | "ref/netcoreapp2.1/System.Net.WebSockets.dll": {}, 85 | "ref/netcoreapp2.1/System.Net.dll": {}, 86 | "ref/netcoreapp2.1/System.Numerics.Vectors.dll": {}, 87 | "ref/netcoreapp2.1/System.Numerics.dll": {}, 88 | "ref/netcoreapp2.1/System.ObjectModel.dll": {}, 89 | "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll": {}, 90 | "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll": {}, 91 | "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll": {}, 92 | "ref/netcoreapp2.1/System.Reflection.Emit.dll": {}, 93 | "ref/netcoreapp2.1/System.Reflection.Extensions.dll": {}, 94 | "ref/netcoreapp2.1/System.Reflection.Metadata.dll": {}, 95 | "ref/netcoreapp2.1/System.Reflection.Primitives.dll": {}, 96 | "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll": {}, 97 | "ref/netcoreapp2.1/System.Reflection.dll": {}, 98 | "ref/netcoreapp2.1/System.Resources.Reader.dll": {}, 99 | "ref/netcoreapp2.1/System.Resources.ResourceManager.dll": {}, 100 | "ref/netcoreapp2.1/System.Resources.Writer.dll": {}, 101 | "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll": {}, 102 | "ref/netcoreapp2.1/System.Runtime.Extensions.dll": {}, 103 | "ref/netcoreapp2.1/System.Runtime.Handles.dll": {}, 104 | "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, 105 | "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, 106 | "ref/netcoreapp2.1/System.Runtime.InteropServices.dll": {}, 107 | "ref/netcoreapp2.1/System.Runtime.Loader.dll": {}, 108 | "ref/netcoreapp2.1/System.Runtime.Numerics.dll": {}, 109 | "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll": {}, 110 | "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll": {}, 111 | "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll": {}, 112 | "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll": {}, 113 | "ref/netcoreapp2.1/System.Runtime.Serialization.dll": {}, 114 | "ref/netcoreapp2.1/System.Runtime.dll": {}, 115 | "ref/netcoreapp2.1/System.Security.Claims.dll": {}, 116 | "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll": {}, 117 | "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll": {}, 118 | "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll": {}, 119 | "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll": {}, 120 | "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll": {}, 121 | "ref/netcoreapp2.1/System.Security.Principal.dll": {}, 122 | "ref/netcoreapp2.1/System.Security.SecureString.dll": {}, 123 | "ref/netcoreapp2.1/System.Security.dll": {}, 124 | "ref/netcoreapp2.1/System.ServiceModel.Web.dll": {}, 125 | "ref/netcoreapp2.1/System.ServiceProcess.dll": {}, 126 | "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll": {}, 127 | "ref/netcoreapp2.1/System.Text.Encoding.dll": {}, 128 | "ref/netcoreapp2.1/System.Text.RegularExpressions.dll": {}, 129 | "ref/netcoreapp2.1/System.Threading.Overlapped.dll": {}, 130 | "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll": {}, 131 | "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll": {}, 132 | "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll": {}, 133 | "ref/netcoreapp2.1/System.Threading.Tasks.dll": {}, 134 | "ref/netcoreapp2.1/System.Threading.Thread.dll": {}, 135 | "ref/netcoreapp2.1/System.Threading.ThreadPool.dll": {}, 136 | "ref/netcoreapp2.1/System.Threading.Timer.dll": {}, 137 | "ref/netcoreapp2.1/System.Threading.dll": {}, 138 | "ref/netcoreapp2.1/System.Transactions.Local.dll": {}, 139 | "ref/netcoreapp2.1/System.Transactions.dll": {}, 140 | "ref/netcoreapp2.1/System.ValueTuple.dll": {}, 141 | "ref/netcoreapp2.1/System.Web.HttpUtility.dll": {}, 142 | "ref/netcoreapp2.1/System.Web.dll": {}, 143 | "ref/netcoreapp2.1/System.Windows.dll": {}, 144 | "ref/netcoreapp2.1/System.Xml.Linq.dll": {}, 145 | "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll": {}, 146 | "ref/netcoreapp2.1/System.Xml.Serialization.dll": {}, 147 | "ref/netcoreapp2.1/System.Xml.XDocument.dll": {}, 148 | "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll": {}, 149 | "ref/netcoreapp2.1/System.Xml.XPath.dll": {}, 150 | "ref/netcoreapp2.1/System.Xml.XmlDocument.dll": {}, 151 | "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll": {}, 152 | "ref/netcoreapp2.1/System.Xml.dll": {}, 153 | "ref/netcoreapp2.1/System.dll": {}, 154 | "ref/netcoreapp2.1/WindowsBase.dll": {}, 155 | "ref/netcoreapp2.1/mscorlib.dll": {}, 156 | "ref/netcoreapp2.1/netstandard.dll": {} 157 | }, 158 | "build": { 159 | "build/netcoreapp2.1/Microsoft.NETCore.App.props": {}, 160 | "build/netcoreapp2.1/Microsoft.NETCore.App.targets": {} 161 | } 162 | }, 163 | "Microsoft.NETCore.DotNetAppHost/2.1.0": { 164 | "type": "package" 165 | }, 166 | "Microsoft.NETCore.DotNetHostPolicy/2.1.0": { 167 | "type": "package", 168 | "dependencies": { 169 | "Microsoft.NETCore.DotNetHostResolver": "2.1.0" 170 | } 171 | }, 172 | "Microsoft.NETCore.DotNetHostResolver/2.1.0": { 173 | "type": "package", 174 | "dependencies": { 175 | "Microsoft.NETCore.DotNetAppHost": "2.1.0" 176 | } 177 | }, 178 | "Microsoft.NETCore.Platforms/2.1.0": { 179 | "type": "package", 180 | "compile": { 181 | "lib/netstandard1.0/_._": {} 182 | }, 183 | "runtime": { 184 | "lib/netstandard1.0/_._": {} 185 | } 186 | }, 187 | "Microsoft.NETCore.Targets/2.1.0": { 188 | "type": "package", 189 | "compile": { 190 | "lib/netstandard1.0/_._": {} 191 | }, 192 | "runtime": { 193 | "lib/netstandard1.0/_._": {} 194 | } 195 | }, 196 | "NETStandard.Library/2.0.3": { 197 | "type": "package", 198 | "dependencies": { 199 | "Microsoft.NETCore.Platforms": "1.1.0" 200 | }, 201 | "compile": { 202 | "lib/netstandard1.0/_._": {} 203 | }, 204 | "runtime": { 205 | "lib/netstandard1.0/_._": {} 206 | }, 207 | "build": { 208 | "build/netstandard2.0/NETStandard.Library.targets": {} 209 | } 210 | } 211 | } 212 | }, 213 | "libraries": { 214 | "Microsoft.NETCore.App/2.1.0": { 215 | "sha512": "AvT774nTFgU8cYcGO9j1EMwuayKslxqYTurg32HGpWa2hEYNuW2+XgYVVNcZe6Ndbr84QX6fwaOZfd5n+1m2OA==", 216 | "type": "package", 217 | "path": "microsoft.netcore.app/2.1.0", 218 | "files": [ 219 | ".signature.p7s", 220 | "LICENSE.TXT", 221 | "Microsoft.NETCore.App.versions.txt", 222 | "THIRD-PARTY-NOTICES.TXT", 223 | "build/netcoreapp2.1/Microsoft.NETCore.App.PlatformManifest.txt", 224 | "build/netcoreapp2.1/Microsoft.NETCore.App.props", 225 | "build/netcoreapp2.1/Microsoft.NETCore.App.targets", 226 | "microsoft.netcore.app.2.1.0.nupkg.sha512", 227 | "microsoft.netcore.app.nuspec", 228 | "ref/netcoreapp/_._", 229 | "ref/netcoreapp2.1/Microsoft.CSharp.dll", 230 | "ref/netcoreapp2.1/Microsoft.CSharp.xml", 231 | "ref/netcoreapp2.1/Microsoft.VisualBasic.dll", 232 | "ref/netcoreapp2.1/Microsoft.VisualBasic.xml", 233 | "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll", 234 | "ref/netcoreapp2.1/Microsoft.Win32.Primitives.xml", 235 | "ref/netcoreapp2.1/System.AppContext.dll", 236 | "ref/netcoreapp2.1/System.Buffers.dll", 237 | "ref/netcoreapp2.1/System.Buffers.xml", 238 | "ref/netcoreapp2.1/System.Collections.Concurrent.dll", 239 | "ref/netcoreapp2.1/System.Collections.Concurrent.xml", 240 | "ref/netcoreapp2.1/System.Collections.Immutable.dll", 241 | "ref/netcoreapp2.1/System.Collections.Immutable.xml", 242 | "ref/netcoreapp2.1/System.Collections.NonGeneric.dll", 243 | "ref/netcoreapp2.1/System.Collections.NonGeneric.xml", 244 | "ref/netcoreapp2.1/System.Collections.Specialized.dll", 245 | "ref/netcoreapp2.1/System.Collections.Specialized.xml", 246 | "ref/netcoreapp2.1/System.Collections.dll", 247 | "ref/netcoreapp2.1/System.Collections.xml", 248 | "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll", 249 | "ref/netcoreapp2.1/System.ComponentModel.Annotations.xml", 250 | "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll", 251 | "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll", 252 | "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.xml", 253 | "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll", 254 | "ref/netcoreapp2.1/System.ComponentModel.Primitives.xml", 255 | "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll", 256 | "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.xml", 257 | "ref/netcoreapp2.1/System.ComponentModel.dll", 258 | "ref/netcoreapp2.1/System.ComponentModel.xml", 259 | "ref/netcoreapp2.1/System.Configuration.dll", 260 | "ref/netcoreapp2.1/System.Console.dll", 261 | "ref/netcoreapp2.1/System.Console.xml", 262 | "ref/netcoreapp2.1/System.Core.dll", 263 | "ref/netcoreapp2.1/System.Data.Common.dll", 264 | "ref/netcoreapp2.1/System.Data.Common.xml", 265 | "ref/netcoreapp2.1/System.Data.dll", 266 | "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll", 267 | "ref/netcoreapp2.1/System.Diagnostics.Contracts.xml", 268 | "ref/netcoreapp2.1/System.Diagnostics.Debug.dll", 269 | "ref/netcoreapp2.1/System.Diagnostics.Debug.xml", 270 | "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll", 271 | "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.xml", 272 | "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll", 273 | "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.xml", 274 | "ref/netcoreapp2.1/System.Diagnostics.Process.dll", 275 | "ref/netcoreapp2.1/System.Diagnostics.Process.xml", 276 | "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll", 277 | "ref/netcoreapp2.1/System.Diagnostics.StackTrace.xml", 278 | "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll", 279 | "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.xml", 280 | "ref/netcoreapp2.1/System.Diagnostics.Tools.dll", 281 | "ref/netcoreapp2.1/System.Diagnostics.Tools.xml", 282 | "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll", 283 | "ref/netcoreapp2.1/System.Diagnostics.TraceSource.xml", 284 | "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll", 285 | "ref/netcoreapp2.1/System.Diagnostics.Tracing.xml", 286 | "ref/netcoreapp2.1/System.Drawing.Primitives.dll", 287 | "ref/netcoreapp2.1/System.Drawing.Primitives.xml", 288 | "ref/netcoreapp2.1/System.Drawing.dll", 289 | "ref/netcoreapp2.1/System.Dynamic.Runtime.dll", 290 | "ref/netcoreapp2.1/System.Globalization.Calendars.dll", 291 | "ref/netcoreapp2.1/System.Globalization.Extensions.dll", 292 | "ref/netcoreapp2.1/System.Globalization.dll", 293 | "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll", 294 | "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll", 295 | "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll", 296 | "ref/netcoreapp2.1/System.IO.Compression.ZipFile.xml", 297 | "ref/netcoreapp2.1/System.IO.Compression.dll", 298 | "ref/netcoreapp2.1/System.IO.Compression.xml", 299 | "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll", 300 | "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.xml", 301 | "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll", 302 | "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll", 303 | "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.xml", 304 | "ref/netcoreapp2.1/System.IO.FileSystem.dll", 305 | "ref/netcoreapp2.1/System.IO.FileSystem.xml", 306 | "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll", 307 | "ref/netcoreapp2.1/System.IO.IsolatedStorage.xml", 308 | "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll", 309 | "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.xml", 310 | "ref/netcoreapp2.1/System.IO.Pipes.dll", 311 | "ref/netcoreapp2.1/System.IO.Pipes.xml", 312 | "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll", 313 | "ref/netcoreapp2.1/System.IO.dll", 314 | "ref/netcoreapp2.1/System.Linq.Expressions.dll", 315 | "ref/netcoreapp2.1/System.Linq.Expressions.xml", 316 | "ref/netcoreapp2.1/System.Linq.Parallel.dll", 317 | "ref/netcoreapp2.1/System.Linq.Parallel.xml", 318 | "ref/netcoreapp2.1/System.Linq.Queryable.dll", 319 | "ref/netcoreapp2.1/System.Linq.Queryable.xml", 320 | "ref/netcoreapp2.1/System.Linq.dll", 321 | "ref/netcoreapp2.1/System.Linq.xml", 322 | "ref/netcoreapp2.1/System.Memory.dll", 323 | "ref/netcoreapp2.1/System.Memory.xml", 324 | "ref/netcoreapp2.1/System.Net.Http.dll", 325 | "ref/netcoreapp2.1/System.Net.Http.xml", 326 | "ref/netcoreapp2.1/System.Net.HttpListener.dll", 327 | "ref/netcoreapp2.1/System.Net.HttpListener.xml", 328 | "ref/netcoreapp2.1/System.Net.Mail.dll", 329 | "ref/netcoreapp2.1/System.Net.Mail.xml", 330 | "ref/netcoreapp2.1/System.Net.NameResolution.dll", 331 | "ref/netcoreapp2.1/System.Net.NameResolution.xml", 332 | "ref/netcoreapp2.1/System.Net.NetworkInformation.dll", 333 | "ref/netcoreapp2.1/System.Net.NetworkInformation.xml", 334 | "ref/netcoreapp2.1/System.Net.Ping.dll", 335 | "ref/netcoreapp2.1/System.Net.Ping.xml", 336 | "ref/netcoreapp2.1/System.Net.Primitives.dll", 337 | "ref/netcoreapp2.1/System.Net.Primitives.xml", 338 | "ref/netcoreapp2.1/System.Net.Requests.dll", 339 | "ref/netcoreapp2.1/System.Net.Requests.xml", 340 | "ref/netcoreapp2.1/System.Net.Security.dll", 341 | "ref/netcoreapp2.1/System.Net.Security.xml", 342 | "ref/netcoreapp2.1/System.Net.ServicePoint.dll", 343 | "ref/netcoreapp2.1/System.Net.ServicePoint.xml", 344 | "ref/netcoreapp2.1/System.Net.Sockets.dll", 345 | "ref/netcoreapp2.1/System.Net.Sockets.xml", 346 | "ref/netcoreapp2.1/System.Net.WebClient.dll", 347 | "ref/netcoreapp2.1/System.Net.WebClient.xml", 348 | "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll", 349 | "ref/netcoreapp2.1/System.Net.WebHeaderCollection.xml", 350 | "ref/netcoreapp2.1/System.Net.WebProxy.dll", 351 | "ref/netcoreapp2.1/System.Net.WebProxy.xml", 352 | "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll", 353 | "ref/netcoreapp2.1/System.Net.WebSockets.Client.xml", 354 | "ref/netcoreapp2.1/System.Net.WebSockets.dll", 355 | "ref/netcoreapp2.1/System.Net.WebSockets.xml", 356 | "ref/netcoreapp2.1/System.Net.dll", 357 | "ref/netcoreapp2.1/System.Numerics.Vectors.dll", 358 | "ref/netcoreapp2.1/System.Numerics.Vectors.xml", 359 | "ref/netcoreapp2.1/System.Numerics.dll", 360 | "ref/netcoreapp2.1/System.ObjectModel.dll", 361 | "ref/netcoreapp2.1/System.ObjectModel.xml", 362 | "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll", 363 | "ref/netcoreapp2.1/System.Reflection.DispatchProxy.xml", 364 | "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll", 365 | "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.xml", 366 | "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll", 367 | "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.xml", 368 | "ref/netcoreapp2.1/System.Reflection.Emit.dll", 369 | "ref/netcoreapp2.1/System.Reflection.Emit.xml", 370 | "ref/netcoreapp2.1/System.Reflection.Extensions.dll", 371 | "ref/netcoreapp2.1/System.Reflection.Metadata.dll", 372 | "ref/netcoreapp2.1/System.Reflection.Metadata.xml", 373 | "ref/netcoreapp2.1/System.Reflection.Primitives.dll", 374 | "ref/netcoreapp2.1/System.Reflection.Primitives.xml", 375 | "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll", 376 | "ref/netcoreapp2.1/System.Reflection.TypeExtensions.xml", 377 | "ref/netcoreapp2.1/System.Reflection.dll", 378 | "ref/netcoreapp2.1/System.Resources.Reader.dll", 379 | "ref/netcoreapp2.1/System.Resources.ResourceManager.dll", 380 | "ref/netcoreapp2.1/System.Resources.ResourceManager.xml", 381 | "ref/netcoreapp2.1/System.Resources.Writer.dll", 382 | "ref/netcoreapp2.1/System.Resources.Writer.xml", 383 | "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll", 384 | "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.xml", 385 | "ref/netcoreapp2.1/System.Runtime.Extensions.dll", 386 | "ref/netcoreapp2.1/System.Runtime.Extensions.xml", 387 | "ref/netcoreapp2.1/System.Runtime.Handles.dll", 388 | "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll", 389 | "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.xml", 390 | "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll", 391 | "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.xml", 392 | "ref/netcoreapp2.1/System.Runtime.InteropServices.dll", 393 | "ref/netcoreapp2.1/System.Runtime.InteropServices.xml", 394 | "ref/netcoreapp2.1/System.Runtime.Loader.dll", 395 | "ref/netcoreapp2.1/System.Runtime.Loader.xml", 396 | "ref/netcoreapp2.1/System.Runtime.Numerics.dll", 397 | "ref/netcoreapp2.1/System.Runtime.Numerics.xml", 398 | "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll", 399 | "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.xml", 400 | "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll", 401 | "ref/netcoreapp2.1/System.Runtime.Serialization.Json.xml", 402 | "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll", 403 | "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.xml", 404 | "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll", 405 | "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.xml", 406 | "ref/netcoreapp2.1/System.Runtime.Serialization.dll", 407 | "ref/netcoreapp2.1/System.Runtime.dll", 408 | "ref/netcoreapp2.1/System.Runtime.xml", 409 | "ref/netcoreapp2.1/System.Security.Claims.dll", 410 | "ref/netcoreapp2.1/System.Security.Claims.xml", 411 | "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll", 412 | "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.xml", 413 | "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll", 414 | "ref/netcoreapp2.1/System.Security.Cryptography.Csp.xml", 415 | "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll", 416 | "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.xml", 417 | "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll", 418 | "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.xml", 419 | "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll", 420 | "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.xml", 421 | "ref/netcoreapp2.1/System.Security.Principal.dll", 422 | "ref/netcoreapp2.1/System.Security.Principal.xml", 423 | "ref/netcoreapp2.1/System.Security.SecureString.dll", 424 | "ref/netcoreapp2.1/System.Security.dll", 425 | "ref/netcoreapp2.1/System.ServiceModel.Web.dll", 426 | "ref/netcoreapp2.1/System.ServiceProcess.dll", 427 | "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll", 428 | "ref/netcoreapp2.1/System.Text.Encoding.Extensions.xml", 429 | "ref/netcoreapp2.1/System.Text.Encoding.dll", 430 | "ref/netcoreapp2.1/System.Text.RegularExpressions.dll", 431 | "ref/netcoreapp2.1/System.Text.RegularExpressions.xml", 432 | "ref/netcoreapp2.1/System.Threading.Overlapped.dll", 433 | "ref/netcoreapp2.1/System.Threading.Overlapped.xml", 434 | "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll", 435 | "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.xml", 436 | "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll", 437 | "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.xml", 438 | "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll", 439 | "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.xml", 440 | "ref/netcoreapp2.1/System.Threading.Tasks.dll", 441 | "ref/netcoreapp2.1/System.Threading.Tasks.xml", 442 | "ref/netcoreapp2.1/System.Threading.Thread.dll", 443 | "ref/netcoreapp2.1/System.Threading.Thread.xml", 444 | "ref/netcoreapp2.1/System.Threading.ThreadPool.dll", 445 | "ref/netcoreapp2.1/System.Threading.ThreadPool.xml", 446 | "ref/netcoreapp2.1/System.Threading.Timer.dll", 447 | "ref/netcoreapp2.1/System.Threading.Timer.xml", 448 | "ref/netcoreapp2.1/System.Threading.dll", 449 | "ref/netcoreapp2.1/System.Threading.xml", 450 | "ref/netcoreapp2.1/System.Transactions.Local.dll", 451 | "ref/netcoreapp2.1/System.Transactions.Local.xml", 452 | "ref/netcoreapp2.1/System.Transactions.dll", 453 | "ref/netcoreapp2.1/System.ValueTuple.dll", 454 | "ref/netcoreapp2.1/System.Web.HttpUtility.dll", 455 | "ref/netcoreapp2.1/System.Web.HttpUtility.xml", 456 | "ref/netcoreapp2.1/System.Web.dll", 457 | "ref/netcoreapp2.1/System.Windows.dll", 458 | "ref/netcoreapp2.1/System.Xml.Linq.dll", 459 | "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll", 460 | "ref/netcoreapp2.1/System.Xml.ReaderWriter.xml", 461 | "ref/netcoreapp2.1/System.Xml.Serialization.dll", 462 | "ref/netcoreapp2.1/System.Xml.XDocument.dll", 463 | "ref/netcoreapp2.1/System.Xml.XDocument.xml", 464 | "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll", 465 | "ref/netcoreapp2.1/System.Xml.XPath.XDocument.xml", 466 | "ref/netcoreapp2.1/System.Xml.XPath.dll", 467 | "ref/netcoreapp2.1/System.Xml.XPath.xml", 468 | "ref/netcoreapp2.1/System.Xml.XmlDocument.dll", 469 | "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll", 470 | "ref/netcoreapp2.1/System.Xml.XmlSerializer.xml", 471 | "ref/netcoreapp2.1/System.Xml.dll", 472 | "ref/netcoreapp2.1/System.dll", 473 | "ref/netcoreapp2.1/WindowsBase.dll", 474 | "ref/netcoreapp2.1/mscorlib.dll", 475 | "ref/netcoreapp2.1/netstandard.dll", 476 | "runtime.json" 477 | ] 478 | }, 479 | "Microsoft.NETCore.DotNetAppHost/2.1.0": { 480 | "sha512": "f/47I60Wg3SrveTvnecCQhCZCAMYlUujWF15EQ/AZTqF/54qeEJjbCIAxKcZI8ToUYzSg6JdfrHggsgjCyCE9Q==", 481 | "type": "package", 482 | "path": "microsoft.netcore.dotnetapphost/2.1.0", 483 | "files": [ 484 | ".signature.p7s", 485 | "LICENSE.TXT", 486 | "THIRD-PARTY-NOTICES.TXT", 487 | "microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512", 488 | "microsoft.netcore.dotnetapphost.nuspec", 489 | "runtime.json" 490 | ] 491 | }, 492 | "Microsoft.NETCore.DotNetHostPolicy/2.1.0": { 493 | "sha512": "p50yZYKzhH64lmArJgoKjtvsNehECa+/sAuOQzZh5uDNBTbRKxjN8IXP1e517xdVsgrFcSNxSEVDKZIOWVjGcQ==", 494 | "type": "package", 495 | "path": "microsoft.netcore.dotnethostpolicy/2.1.0", 496 | "files": [ 497 | ".signature.p7s", 498 | "LICENSE.TXT", 499 | "THIRD-PARTY-NOTICES.TXT", 500 | "microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512", 501 | "microsoft.netcore.dotnethostpolicy.nuspec", 502 | "runtime.json" 503 | ] 504 | }, 505 | "Microsoft.NETCore.DotNetHostResolver/2.1.0": { 506 | "sha512": "fS9D8a+y55n6mHMbNqgHXaPGkjmpVH9h97OyrBxsCuo3Z8aQaFMJ5xIfmzji2ntUd/3truhMbSgSfIelHOkQpg==", 507 | "type": "package", 508 | "path": "microsoft.netcore.dotnethostresolver/2.1.0", 509 | "files": [ 510 | ".signature.p7s", 511 | "LICENSE.TXT", 512 | "THIRD-PARTY-NOTICES.TXT", 513 | "microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512", 514 | "microsoft.netcore.dotnethostresolver.nuspec", 515 | "runtime.json" 516 | ] 517 | }, 518 | "Microsoft.NETCore.Platforms/2.1.0": { 519 | "sha512": "TT+QCi9LcxGTjBssH7S7n5+8DVcwfG4DYgXX7Dk7+BfZ4oVHj8Q0CbYk9glzAlHLsSt3bYzol+fOdra2iu6GOw==", 520 | "type": "package", 521 | "path": "microsoft.netcore.platforms/2.1.0", 522 | "files": [ 523 | ".signature.p7s", 524 | "LICENSE.TXT", 525 | "THIRD-PARTY-NOTICES.TXT", 526 | "lib/netstandard1.0/_._", 527 | "microsoft.netcore.platforms.2.1.0.nupkg.sha512", 528 | "microsoft.netcore.platforms.nuspec", 529 | "runtime.json", 530 | "useSharedDesignerContext.txt", 531 | "version.txt" 532 | ] 533 | }, 534 | "Microsoft.NETCore.Targets/2.1.0": { 535 | "sha512": "etaYwrLZQUS+b3UWTpCnUggd6SQ/ZIkZ5pHnoR7+dIWt/wp2Rv3CvMKOZISsrt7FYCHKwCxfcepuuyEWkQxADg==", 536 | "type": "package", 537 | "path": "microsoft.netcore.targets/2.1.0", 538 | "files": [ 539 | ".signature.p7s", 540 | "LICENSE.TXT", 541 | "THIRD-PARTY-NOTICES.TXT", 542 | "lib/netstandard1.0/_._", 543 | "microsoft.netcore.targets.2.1.0.nupkg.sha512", 544 | "microsoft.netcore.targets.nuspec", 545 | "runtime.json", 546 | "useSharedDesignerContext.txt", 547 | "version.txt" 548 | ] 549 | }, 550 | "NETStandard.Library/2.0.3": { 551 | "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", 552 | "type": "package", 553 | "path": "netstandard.library/2.0.3", 554 | "files": [ 555 | "LICENSE.TXT", 556 | "THIRD-PARTY-NOTICES.TXT", 557 | "build/netstandard2.0/NETStandard.Library.targets", 558 | "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", 559 | "build/netstandard2.0/ref/System.AppContext.dll", 560 | "build/netstandard2.0/ref/System.Collections.Concurrent.dll", 561 | "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", 562 | "build/netstandard2.0/ref/System.Collections.Specialized.dll", 563 | "build/netstandard2.0/ref/System.Collections.dll", 564 | "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", 565 | "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", 566 | "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", 567 | "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", 568 | "build/netstandard2.0/ref/System.ComponentModel.dll", 569 | "build/netstandard2.0/ref/System.Console.dll", 570 | "build/netstandard2.0/ref/System.Core.dll", 571 | "build/netstandard2.0/ref/System.Data.Common.dll", 572 | "build/netstandard2.0/ref/System.Data.dll", 573 | "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", 574 | "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", 575 | "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", 576 | "build/netstandard2.0/ref/System.Diagnostics.Process.dll", 577 | "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", 578 | "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", 579 | "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", 580 | "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", 581 | "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", 582 | "build/netstandard2.0/ref/System.Drawing.Primitives.dll", 583 | "build/netstandard2.0/ref/System.Drawing.dll", 584 | "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", 585 | "build/netstandard2.0/ref/System.Globalization.Calendars.dll", 586 | "build/netstandard2.0/ref/System.Globalization.Extensions.dll", 587 | "build/netstandard2.0/ref/System.Globalization.dll", 588 | "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", 589 | "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", 590 | "build/netstandard2.0/ref/System.IO.Compression.dll", 591 | "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", 592 | "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", 593 | "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", 594 | "build/netstandard2.0/ref/System.IO.FileSystem.dll", 595 | "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", 596 | "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", 597 | "build/netstandard2.0/ref/System.IO.Pipes.dll", 598 | "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", 599 | "build/netstandard2.0/ref/System.IO.dll", 600 | "build/netstandard2.0/ref/System.Linq.Expressions.dll", 601 | "build/netstandard2.0/ref/System.Linq.Parallel.dll", 602 | "build/netstandard2.0/ref/System.Linq.Queryable.dll", 603 | "build/netstandard2.0/ref/System.Linq.dll", 604 | "build/netstandard2.0/ref/System.Net.Http.dll", 605 | "build/netstandard2.0/ref/System.Net.NameResolution.dll", 606 | "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", 607 | "build/netstandard2.0/ref/System.Net.Ping.dll", 608 | "build/netstandard2.0/ref/System.Net.Primitives.dll", 609 | "build/netstandard2.0/ref/System.Net.Requests.dll", 610 | "build/netstandard2.0/ref/System.Net.Security.dll", 611 | "build/netstandard2.0/ref/System.Net.Sockets.dll", 612 | "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", 613 | "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", 614 | "build/netstandard2.0/ref/System.Net.WebSockets.dll", 615 | "build/netstandard2.0/ref/System.Net.dll", 616 | "build/netstandard2.0/ref/System.Numerics.dll", 617 | "build/netstandard2.0/ref/System.ObjectModel.dll", 618 | "build/netstandard2.0/ref/System.Reflection.Extensions.dll", 619 | "build/netstandard2.0/ref/System.Reflection.Primitives.dll", 620 | "build/netstandard2.0/ref/System.Reflection.dll", 621 | "build/netstandard2.0/ref/System.Resources.Reader.dll", 622 | "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", 623 | "build/netstandard2.0/ref/System.Resources.Writer.dll", 624 | "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", 625 | "build/netstandard2.0/ref/System.Runtime.Extensions.dll", 626 | "build/netstandard2.0/ref/System.Runtime.Handles.dll", 627 | "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", 628 | "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", 629 | "build/netstandard2.0/ref/System.Runtime.Numerics.dll", 630 | "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", 631 | "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", 632 | "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", 633 | "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", 634 | "build/netstandard2.0/ref/System.Runtime.Serialization.dll", 635 | "build/netstandard2.0/ref/System.Runtime.dll", 636 | "build/netstandard2.0/ref/System.Security.Claims.dll", 637 | "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", 638 | "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", 639 | "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", 640 | "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", 641 | "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", 642 | "build/netstandard2.0/ref/System.Security.Principal.dll", 643 | "build/netstandard2.0/ref/System.Security.SecureString.dll", 644 | "build/netstandard2.0/ref/System.ServiceModel.Web.dll", 645 | "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", 646 | "build/netstandard2.0/ref/System.Text.Encoding.dll", 647 | "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", 648 | "build/netstandard2.0/ref/System.Threading.Overlapped.dll", 649 | "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", 650 | "build/netstandard2.0/ref/System.Threading.Tasks.dll", 651 | "build/netstandard2.0/ref/System.Threading.Thread.dll", 652 | "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", 653 | "build/netstandard2.0/ref/System.Threading.Timer.dll", 654 | "build/netstandard2.0/ref/System.Threading.dll", 655 | "build/netstandard2.0/ref/System.Transactions.dll", 656 | "build/netstandard2.0/ref/System.ValueTuple.dll", 657 | "build/netstandard2.0/ref/System.Web.dll", 658 | "build/netstandard2.0/ref/System.Windows.dll", 659 | "build/netstandard2.0/ref/System.Xml.Linq.dll", 660 | "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", 661 | "build/netstandard2.0/ref/System.Xml.Serialization.dll", 662 | "build/netstandard2.0/ref/System.Xml.XDocument.dll", 663 | "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", 664 | "build/netstandard2.0/ref/System.Xml.XPath.dll", 665 | "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", 666 | "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", 667 | "build/netstandard2.0/ref/System.Xml.dll", 668 | "build/netstandard2.0/ref/System.dll", 669 | "build/netstandard2.0/ref/mscorlib.dll", 670 | "build/netstandard2.0/ref/netstandard.dll", 671 | "build/netstandard2.0/ref/netstandard.xml", 672 | "lib/netstandard1.0/_._", 673 | "netstandard.library.2.0.3.nupkg.sha512", 674 | "netstandard.library.nuspec" 675 | ] 676 | } 677 | }, 678 | "projectFileDependencyGroups": { 679 | ".NETCoreApp,Version=v2.1": [ 680 | "Microsoft.NETCore.App >= 2.1.0" 681 | ] 682 | }, 683 | "packageFolders": { 684 | "C:\\Users\\admin\\.nuget\\packages\\": {}, 685 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} 686 | }, 687 | "project": { 688 | "version": "1.0.0", 689 | "restore": { 690 | "projectUniqueName": "F:\\Project\\DataSpider\\Spider.Command\\Spider.Command.csproj", 691 | "projectName": "Spider.Command", 692 | "projectPath": "F:\\Project\\DataSpider\\Spider.Command\\Spider.Command.csproj", 693 | "packagesPath": "C:\\Users\\admin\\.nuget\\packages\\", 694 | "outputPath": "F:\\Project\\DataSpider\\Spider.Command\\obj\\", 695 | "projectStyle": "PackageReference", 696 | "fallbackFolders": [ 697 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 698 | ], 699 | "configFilePaths": [ 700 | "C:\\Users\\admin\\AppData\\Roaming\\NuGet\\NuGet.Config", 701 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 702 | ], 703 | "originalTargetFrameworks": [ 704 | "netcoreapp2.1" 705 | ], 706 | "sources": { 707 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 708 | "https://api.nuget.org/v3/index.json": {} 709 | }, 710 | "frameworks": { 711 | "netcoreapp2.1": { 712 | "projectReferences": {} 713 | } 714 | }, 715 | "warningProperties": { 716 | "warnAsError": [ 717 | "NU1605" 718 | ] 719 | } 720 | }, 721 | "frameworks": { 722 | "netcoreapp2.1": { 723 | "dependencies": { 724 | "Microsoft.NETCore.App": { 725 | "suppressParent": "All", 726 | "target": "Package", 727 | "version": "[2.1.0, )", 728 | "autoReferenced": true 729 | } 730 | }, 731 | "imports": [ 732 | "net461" 733 | ], 734 | "assetTargetFallback": true, 735 | "warn": true 736 | } 737 | } 738 | } 739 | } -------------------------------------------------------------------------------- /Spider.Downloader/AtzucheDownloader.cs: -------------------------------------------------------------------------------- 1 | using DotnetSpider.Core; 2 | using DotnetSpider.Core.Downloader; 3 | using System; 4 | using System.Threading.Tasks; 5 | 6 | namespace Spider.Downloader 7 | { 8 | public class AtzucheDownloader : BaseDownloader 9 | { 10 | //protected override Page DowloadContent(Request request, ISpider spider) 11 | //{ 12 | // return new HttpClientDownloader().Download(request, spider); 13 | //} 14 | 15 | //v2.5.0+ version 16 | protected override Task DowloadContent(Request request, ISpider spider) 17 | { 18 | return new HttpClientDownloader().Download(request, spider); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Spider.Downloader/Spider.Downloader.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Spider.Downloader/bin/Debug/netcoreapp2.1/Spider.Downloader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Downloader/bin/Debug/netcoreapp2.1/Spider.Downloader.dll -------------------------------------------------------------------------------- /Spider.Downloader/bin/Debug/netcoreapp2.1/Spider.Downloader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Downloader/bin/Debug/netcoreapp2.1/Spider.Downloader.pdb -------------------------------------------------------------------------------- /Spider.Downloader/obj/Debug/netcoreapp2.1/Spider.Downloader.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Spider.Downloader")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Spider.Downloader")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Spider.Downloader")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // 由 MSBuild WriteCodeFragment 类生成。 23 | 24 | -------------------------------------------------------------------------------- /Spider.Downloader/obj/Debug/netcoreapp2.1/Spider.Downloader.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8b0d160b11e19b280bb1be1832d536399dea8ccf 2 | -------------------------------------------------------------------------------- /Spider.Downloader/obj/Debug/netcoreapp2.1/Spider.Downloader.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Downloader/obj/Debug/netcoreapp2.1/Spider.Downloader.assets.cache -------------------------------------------------------------------------------- /Spider.Downloader/obj/Debug/netcoreapp2.1/Spider.Downloader.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e15bec9fc044bf41dd31a28c5a9ed5565ad253a6 2 | -------------------------------------------------------------------------------- /Spider.Downloader/obj/Debug/netcoreapp2.1/Spider.Downloader.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\Project\DataSpider\Spider.Downloader\bin\Debug\netcoreapp2.1\Spider.Downloader.deps.json 2 | F:\Project\DataSpider\Spider.Downloader\bin\Debug\netcoreapp2.1\Spider.Downloader.dll 3 | F:\Project\DataSpider\Spider.Downloader\obj\Debug\netcoreapp2.1\Spider.Downloader.csprojAssemblyReference.cache 4 | F:\Project\DataSpider\Spider.Downloader\obj\Debug\netcoreapp2.1\Spider.Downloader.csproj.CoreCompileInputs.cache 5 | F:\Project\DataSpider\Spider.Downloader\obj\Debug\netcoreapp2.1\Spider.Downloader.AssemblyInfoInputs.cache 6 | F:\Project\DataSpider\Spider.Downloader\obj\Debug\netcoreapp2.1\Spider.Downloader.AssemblyInfo.cs 7 | F:\Project\DataSpider\Spider.Downloader\bin\Debug\netcoreapp2.1\Spider.Downloader.pdb 8 | F:\Project\DataSpider\Spider.Downloader\obj\Debug\netcoreapp2.1\Spider.Downloader.dll 9 | F:\Project\DataSpider\Spider.Downloader\obj\Debug\netcoreapp2.1\Spider.Downloader.pdb 10 | -------------------------------------------------------------------------------- /Spider.Downloader/obj/Debug/netcoreapp2.1/Spider.Downloader.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Downloader/obj/Debug/netcoreapp2.1/Spider.Downloader.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Spider.Downloader/obj/Debug/netcoreapp2.1/Spider.Downloader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Downloader/obj/Debug/netcoreapp2.1/Spider.Downloader.dll -------------------------------------------------------------------------------- /Spider.Downloader/obj/Debug/netcoreapp2.1/Spider.Downloader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Downloader/obj/Debug/netcoreapp2.1/Spider.Downloader.pdb -------------------------------------------------------------------------------- /Spider.Downloader/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Downloader/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Spider.Downloader/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Downloader/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Spider.Downloader/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Downloader/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Spider.Downloader/obj/Spider.Downloader.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "k8dp8Bueg1a7oP0Q2zstQZviVLpbYU59ktKPc9mVOHsxkNjgkN4QVbKXpQ9UXTw6QVg0W6losIjLbraO7NLHqw==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Spider.Downloader/obj/Spider.Downloader.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | F:\Project\DataSpider\Spider.Downloader\obj\project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\admin\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 4.8.1 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Spider.Downloader/obj/Spider.Downloader.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Spider.Entity/AtzucheModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using DotnetSpider; 3 | using DotnetSpider.Core.Selector; 4 | using DotnetSpider.Extension.Model; 5 | using DotnetSpider.Extension.Model.Attribute; 6 | 7 | namespace Spider.Entity 8 | { 9 | [EntityTable("CarWinsSpider", "AtzucheCar", EntityTable.Today)] 10 | [EntitySelector(Expression = "$.data.content[*]", Type = SelectorType.JsonPath)] 11 | 12 | public class AtzucheModel : SpiderEntity 13 | { 14 | /// 15 |   /// 车辆编号 16 |   /// 17 | [PropertyDefine(Expression = "$.carNo", Type = SelectorType.JsonPath)] 18 | public int carNo { get; set; } 19 | /// 20 | /// 品牌 21 | /// 22 | //[ReplaceFormatter(NewValue = "", OldValue = "\r")] 23 | //[ReplaceFormatter(NewValue = "", OldValue = "\t")] 24 | //[ReplaceFormatter(NewValue = "", OldValue = " ")] 25 | //[ReplaceFormatter(NewValue = "", OldValue = "\n")] 26 | //[ReplaceFormatter(NewValue = "", OldValue = "\"")] 27 | //[ReplaceFormatter(NewValue = "", OldValue = " ")] 28 | [PropertyDefine(Expression = "$.brand", Type = SelectorType.JsonPath)] 29 | public string brand { get; set; } 30 | /// 31 |   /// 地址 32 |   /// 33 | [PropertyDefine(Expression = "$.carAddr", Type = SelectorType.JsonPath)] 34 | public string carAddr { get; set; } 35 | /// 36 |   /// 车系 37 |   /// 38 | [PropertyDefine(Expression = "$.type", Type = SelectorType.JsonPath)] 39 | public string type { get; set; } 40 | /// 41 |   /// 排量 42 |   /// 43 | [PropertyDefine(Expression = "$.sweptVolum", Type = SelectorType.JsonPath)] 44 | public string sweptVolum { get; set; } 45 | /// 46 |   /// 图片 47 |   /// 48 | [PropertyDefine(Expression = "$.coverPic", Type = SelectorType.JsonPath)] 49 | public string coverPic { get; set; } 50 | /// 51 |   /// 日租金 52 |   /// 53 | [PropertyDefine(Expression = "$.dayPrice", Type = SelectorType.JsonPath)] 54 | public int dayPrice { get; set; } 55 | /// 56 |   /// 公里数 57 |   /// 58 | [PropertyDefine(Expression = "$.distance", Type = SelectorType.JsonPath)] 59 | public string distance { get; set; } 60 | /// 61 |   /// 评分 62 |   /// 63 | [PropertyDefine(Expression = "$.evalScore", Type = SelectorType.JsonPath)] 64 | public string evalScore { get; set; } 65 | [PropertyDefine(Expression = "$.gbType", Type = SelectorType.JsonPath)] 66 | public string gbType { get; set; } 67 | /// 68 |   /// 车牌 69 |   /// 70 | [PropertyDefine(Expression = "$.plateNum", Type = SelectorType.JsonPath)] 71 | public string plateNum { get; set; } 72 | [PropertyDefine(Expression = "$.replyTag", Type = SelectorType.JsonPath)] 73 | public string replyTag { get; set; } 74 | [PropertyDefine(Expression = "$.transCount", Type = SelectorType.JsonPath)] 75 | public string transCount { get; set; } 76 | /// 77 |   /// 年款 78 |   /// 79 | [PropertyDefine(Expression = "$.year", Type = SelectorType.JsonPath)] 80 | public int year { get; set; } 81 | [PropertyDefine(Expression = "$.isPrivilege", Type = SelectorType.JsonPath)] 82 | public int isPrivilege { get; set; } 83 | [PropertyDefine(Expression = "$.isRecommend", Type = SelectorType.JsonPath)] 84 | public int isRecommend { get; set; } 85 | [PropertyDefine(Expression = "$.isUpgrade", Type = SelectorType.JsonPath)] 86 | public int isUpgrade { get; set; } 87 | [PropertyDefine(Expression = "$.lat", Type = SelectorType.JsonPath)] 88 | public string lat { get; set; } 89 | [PropertyDefine(Expression = "$.lon", Type = SelectorType.JsonPath)] 90 | public string lon { get; set; } 91 | [PropertyDefine(Expression = "$.queryId", Type = SelectorType.JsonPath)] 92 | public string queryId { get; set; } 93 | [PropertyDefine(Expression = "$.supplyCarService", Type = SelectorType.JsonPath)] 94 | public int supplyCarService { get; set; } 95 | [PropertyDefine(Expression = "$.freeCarService", Type = SelectorType.JsonPath)] 96 | public int freeCarService { get; set; } 97 | [PropertyDefine(Expression = "$.isShenMaCar", Type = SelectorType.JsonPath)] 98 | public int isShenMaCar { get; set; } 99 | [PropertyDefine(Expression = "$.supportGetReturn", Type = SelectorType.JsonPath)] 100 | public int supportGetReturn { get; set; } 101 | [PropertyDefine(Expression = "$.confirmation", Type = SelectorType.JsonPath)] 102 | public int confirmation { get; set; } 103 | } 104 | } 105 | -------------------------------------------------------------------------------- /Spider.Entity/Spider.Entity.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Spider.Entity/bin/Debug/netcoreapp2.1/Spider.Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Entity/bin/Debug/netcoreapp2.1/Spider.Entity.dll -------------------------------------------------------------------------------- /Spider.Entity/bin/Debug/netcoreapp2.1/Spider.Entity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Entity/bin/Debug/netcoreapp2.1/Spider.Entity.pdb -------------------------------------------------------------------------------- /Spider.Entity/obj/Debug/netcoreapp2.1/Spider.Entity.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Spider.Entity")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Spider.Entity")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Spider.Entity")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // 由 MSBuild WriteCodeFragment 类生成。 23 | 24 | -------------------------------------------------------------------------------- /Spider.Entity/obj/Debug/netcoreapp2.1/Spider.Entity.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7a6c28ac1c51151160a312985a021e8089108abb 2 | -------------------------------------------------------------------------------- /Spider.Entity/obj/Debug/netcoreapp2.1/Spider.Entity.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Entity/obj/Debug/netcoreapp2.1/Spider.Entity.assets.cache -------------------------------------------------------------------------------- /Spider.Entity/obj/Debug/netcoreapp2.1/Spider.Entity.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e8931b56ee4465437c5eec7a151978cc462bef6d 2 | -------------------------------------------------------------------------------- /Spider.Entity/obj/Debug/netcoreapp2.1/Spider.Entity.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\Project\DataSpider\Spider.Entity\bin\Debug\netcoreapp2.1\Spider.Entity.deps.json 2 | F:\Project\DataSpider\Spider.Entity\bin\Debug\netcoreapp2.1\Spider.Entity.dll 3 | F:\Project\DataSpider\Spider.Entity\obj\Debug\netcoreapp2.1\Spider.Entity.csproj.CoreCompileInputs.cache 4 | F:\Project\DataSpider\Spider.Entity\obj\Debug\netcoreapp2.1\Spider.Entity.AssemblyInfoInputs.cache 5 | F:\Project\DataSpider\Spider.Entity\obj\Debug\netcoreapp2.1\Spider.Entity.AssemblyInfo.cs 6 | F:\Project\DataSpider\Spider.Entity\obj\Debug\netcoreapp2.1\Spider.Entity.csprojAssemblyReference.cache 7 | F:\Project\DataSpider\Spider.Entity\bin\Debug\netcoreapp2.1\Spider.Entity.pdb 8 | F:\Project\DataSpider\Spider.Entity\obj\Debug\netcoreapp2.1\Spider.Entity.dll 9 | F:\Project\DataSpider\Spider.Entity\obj\Debug\netcoreapp2.1\Spider.Entity.pdb 10 | -------------------------------------------------------------------------------- /Spider.Entity/obj/Debug/netcoreapp2.1/Spider.Entity.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Entity/obj/Debug/netcoreapp2.1/Spider.Entity.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Spider.Entity/obj/Debug/netcoreapp2.1/Spider.Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Entity/obj/Debug/netcoreapp2.1/Spider.Entity.dll -------------------------------------------------------------------------------- /Spider.Entity/obj/Debug/netcoreapp2.1/Spider.Entity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Entity/obj/Debug/netcoreapp2.1/Spider.Entity.pdb -------------------------------------------------------------------------------- /Spider.Entity/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Entity/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Spider.Entity/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Entity/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Spider.Entity/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Entity/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Spider.Entity/obj/Spider.Entity.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "bDVbHZV0IJt5DUqihTJvPu55dyTxmF4ne1XUi0sV1Le5x6Y6WqYboFE7NpdAtYj3l8MW+yP+aHH2SNaS/PrEJA==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Spider.Entity/obj/Spider.Entity.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | F:\Project\DataSpider\Spider.Entity\obj\project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\admin\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 4.8.1 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Spider.Entity/obj/Spider.Entity.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Spider.Pipe/AtzuchePipe.cs: -------------------------------------------------------------------------------- 1 | using DotnetSpider.Core; 2 | using DotnetSpider.Core.Pipeline; 3 | using Spider.Entity; 4 | using System; 5 | using System.Collections.Generic; 6 | 7 | namespace Spider.Pipe 8 | { 9 | public class AtzuchePipe : BasePipeline 10 | { 11 | public override void Process(IEnumerable resultItems, ISpider spider) 12 | { 13 | var result = new List(); 14 | foreach (var resultItem in resultItems) 15 | { 16 | Console.WriteLine((resultItem.Results["AtzucheList"] as List).Count); 17 | foreach (var item in (resultItem.Results["AtzucheList"] as List)) 18 | { 19 | result.Add(new AtzucheModel() 20 | { 21 | carNo = item.carNo 22 | }); 23 | Console.WriteLine($"{item.carNo}:{item.type} "); 24 | } 25 | } 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Spider.Pipe/Spider.Pipe.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Spider.Pipe/bin/Debug/netcoreapp2.1/Spider.Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Pipe/bin/Debug/netcoreapp2.1/Spider.Entity.dll -------------------------------------------------------------------------------- /Spider.Pipe/bin/Debug/netcoreapp2.1/Spider.Entity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Pipe/bin/Debug/netcoreapp2.1/Spider.Entity.pdb -------------------------------------------------------------------------------- /Spider.Pipe/bin/Debug/netcoreapp2.1/Spider.Pipe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Pipe/bin/Debug/netcoreapp2.1/Spider.Pipe.dll -------------------------------------------------------------------------------- /Spider.Pipe/bin/Debug/netcoreapp2.1/Spider.Pipe.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Pipe/bin/Debug/netcoreapp2.1/Spider.Pipe.pdb -------------------------------------------------------------------------------- /Spider.Pipe/obj/Debug/netcoreapp2.1/Spider.Pipe.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Spider.Pipe")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Spider.Pipe")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Spider.Pipe")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // 由 MSBuild WriteCodeFragment 类生成。 23 | 24 | -------------------------------------------------------------------------------- /Spider.Pipe/obj/Debug/netcoreapp2.1/Spider.Pipe.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ca2c727362dabeada3140d0312c69297ff844d7f 2 | -------------------------------------------------------------------------------- /Spider.Pipe/obj/Debug/netcoreapp2.1/Spider.Pipe.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Pipe/obj/Debug/netcoreapp2.1/Spider.Pipe.assets.cache -------------------------------------------------------------------------------- /Spider.Pipe/obj/Debug/netcoreapp2.1/Spider.Pipe.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Pipe/obj/Debug/netcoreapp2.1/Spider.Pipe.csproj.CopyComplete -------------------------------------------------------------------------------- /Spider.Pipe/obj/Debug/netcoreapp2.1/Spider.Pipe.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bbd5ba5d7fc4cfe0a7d5411afcc1dd210264e8a8 2 | -------------------------------------------------------------------------------- /Spider.Pipe/obj/Debug/netcoreapp2.1/Spider.Pipe.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\Project\DataSpider\Spider.Pipe\bin\Debug\netcoreapp2.1\Spider.Pipe.deps.json 2 | F:\Project\DataSpider\Spider.Pipe\bin\Debug\netcoreapp2.1\Spider.Pipe.dll 3 | F:\Project\DataSpider\Spider.Pipe\obj\Debug\netcoreapp2.1\Spider.Pipe.csprojAssemblyReference.cache 4 | F:\Project\DataSpider\Spider.Pipe\obj\Debug\netcoreapp2.1\Spider.Pipe.csproj.CoreCompileInputs.cache 5 | F:\Project\DataSpider\Spider.Pipe\obj\Debug\netcoreapp2.1\Spider.Pipe.AssemblyInfoInputs.cache 6 | F:\Project\DataSpider\Spider.Pipe\obj\Debug\netcoreapp2.1\Spider.Pipe.AssemblyInfo.cs 7 | F:\Project\DataSpider\Spider.Pipe\bin\Debug\netcoreapp2.1\Spider.Pipe.pdb 8 | F:\Project\DataSpider\Spider.Pipe\obj\Debug\netcoreapp2.1\Spider.Pipe.dll 9 | F:\Project\DataSpider\Spider.Pipe\obj\Debug\netcoreapp2.1\Spider.Pipe.pdb 10 | F:\Project\DataSpider\Spider.Pipe\bin\Debug\netcoreapp2.1\Spider.Entity.dll 11 | F:\Project\DataSpider\Spider.Pipe\bin\Debug\netcoreapp2.1\Spider.Entity.pdb 12 | F:\Project\DataSpider\Spider.Pipe\obj\Debug\netcoreapp2.1\Spider.Pipe.csproj.CopyComplete 13 | -------------------------------------------------------------------------------- /Spider.Pipe/obj/Debug/netcoreapp2.1/Spider.Pipe.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Pipe/obj/Debug/netcoreapp2.1/Spider.Pipe.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Spider.Pipe/obj/Debug/netcoreapp2.1/Spider.Pipe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Pipe/obj/Debug/netcoreapp2.1/Spider.Pipe.dll -------------------------------------------------------------------------------- /Spider.Pipe/obj/Debug/netcoreapp2.1/Spider.Pipe.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Pipe/obj/Debug/netcoreapp2.1/Spider.Pipe.pdb -------------------------------------------------------------------------------- /Spider.Pipe/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Pipe/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Spider.Pipe/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Pipe/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Spider.Pipe/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Pipe/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Spider.Pipe/obj/Spider.Pipe.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "pmk4DhqHjzB6J4zbdE+dEV7X2Vv78UthQAoOC0RRKS7ZyIQeJH5WD2719lF2hUM/q9TbQYaiYtM54OfmaHvU9A==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Spider.Pipe/obj/Spider.Pipe.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | F:\Project\DataSpider\Spider.Pipe\obj\project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\admin\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 4.8.1 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Spider.Pipe/obj/Spider.Pipe.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Spider.Processor/AtzucheProcessor.cs: -------------------------------------------------------------------------------- 1 | using DotnetSpider.Core; 2 | using DotnetSpider.Core.Processor; 3 | using Newtonsoft.Json; 4 | using Spider.Entity; 5 | using System; 6 | using System.Collections.Generic; 7 | 8 | namespace Spider.Processor 9 | { 10 | public class AtzucheProcessor : IPageProcessor 11 | { 12 | public void Process(Page page, ISpider spider) 13 | { 14 | List list = new List(); 15 | var html = page.Selectable.JsonPath("$.data.content").GetValue(); 16 | list = JsonConvert.DeserializeObject>(html); 17 | page.AddResultItem("AtzucheList", list); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Spider.Processor/Spider.Processor.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Spider.Processor/bin/Debug/netcoreapp2.1/Spider.Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Processor/bin/Debug/netcoreapp2.1/Spider.Entity.dll -------------------------------------------------------------------------------- /Spider.Processor/bin/Debug/netcoreapp2.1/Spider.Entity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Processor/bin/Debug/netcoreapp2.1/Spider.Entity.pdb -------------------------------------------------------------------------------- /Spider.Processor/bin/Debug/netcoreapp2.1/Spider.Processor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Processor/bin/Debug/netcoreapp2.1/Spider.Processor.dll -------------------------------------------------------------------------------- /Spider.Processor/bin/Debug/netcoreapp2.1/Spider.Processor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Processor/bin/Debug/netcoreapp2.1/Spider.Processor.pdb -------------------------------------------------------------------------------- /Spider.Processor/obj/Debug/netcoreapp2.1/Spider.Processor.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Spider.Processor")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Spider.Processor")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Spider.Processor")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // 由 MSBuild WriteCodeFragment 类生成。 23 | 24 | -------------------------------------------------------------------------------- /Spider.Processor/obj/Debug/netcoreapp2.1/Spider.Processor.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 2c916ae0c39e95fca5a76609f8af910b2ed33e5d 2 | -------------------------------------------------------------------------------- /Spider.Processor/obj/Debug/netcoreapp2.1/Spider.Processor.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Processor/obj/Debug/netcoreapp2.1/Spider.Processor.assets.cache -------------------------------------------------------------------------------- /Spider.Processor/obj/Debug/netcoreapp2.1/Spider.Processor.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Processor/obj/Debug/netcoreapp2.1/Spider.Processor.csproj.CopyComplete -------------------------------------------------------------------------------- /Spider.Processor/obj/Debug/netcoreapp2.1/Spider.Processor.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9e992435265a7c64c5e9a634d64ae2007e58ff47 2 | -------------------------------------------------------------------------------- /Spider.Processor/obj/Debug/netcoreapp2.1/Spider.Processor.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\Project\DataSpider\Spider.Processor\bin\Debug\netcoreapp2.1\Spider.Processor.deps.json 2 | F:\Project\DataSpider\Spider.Processor\bin\Debug\netcoreapp2.1\Spider.Processor.dll 3 | F:\Project\DataSpider\Spider.Processor\obj\Debug\netcoreapp2.1\Spider.Processor.csproj.CoreCompileInputs.cache 4 | F:\Project\DataSpider\Spider.Processor\obj\Debug\netcoreapp2.1\Spider.Processor.AssemblyInfoInputs.cache 5 | F:\Project\DataSpider\Spider.Processor\obj\Debug\netcoreapp2.1\Spider.Processor.AssemblyInfo.cs 6 | F:\Project\DataSpider\Spider.Processor\obj\Debug\netcoreapp2.1\Spider.Processor.csprojAssemblyReference.cache 7 | F:\Project\DataSpider\Spider.Processor\bin\Debug\netcoreapp2.1\Spider.Processor.pdb 8 | F:\Project\DataSpider\Spider.Processor\obj\Debug\netcoreapp2.1\Spider.Processor.dll 9 | F:\Project\DataSpider\Spider.Processor\obj\Debug\netcoreapp2.1\Spider.Processor.pdb 10 | F:\Project\DataSpider\Spider.Processor\bin\Debug\netcoreapp2.1\Spider.Entity.dll 11 | F:\Project\DataSpider\Spider.Processor\bin\Debug\netcoreapp2.1\Spider.Entity.pdb 12 | F:\Project\DataSpider\Spider.Processor\obj\Debug\netcoreapp2.1\Spider.Processor.csproj.CopyComplete 13 | -------------------------------------------------------------------------------- /Spider.Processor/obj/Debug/netcoreapp2.1/Spider.Processor.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Processor/obj/Debug/netcoreapp2.1/Spider.Processor.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Spider.Processor/obj/Debug/netcoreapp2.1/Spider.Processor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Processor/obj/Debug/netcoreapp2.1/Spider.Processor.dll -------------------------------------------------------------------------------- /Spider.Processor/obj/Debug/netcoreapp2.1/Spider.Processor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Processor/obj/Debug/netcoreapp2.1/Spider.Processor.pdb -------------------------------------------------------------------------------- /Spider.Processor/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Processor/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Spider.Processor/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Processor/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Spider.Processor/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xinzheng-Li/DataSpider/5974abaf175fc5c7d822eee4e5afca8e23594f56/Spider.Processor/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Spider.Processor/obj/Spider.Processor.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "L7HXacB5rCosGwA5EaT07PGeVBjvg6Lbx2zI2LGYqOz5JlE4gyOsh/qZQUFwVjXCOD/bYHH64DHqBWPxZ6G9bw==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Spider.Processor/obj/Spider.Processor.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | F:\Project\DataSpider\Spider.Processor\obj\project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\admin\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 4.8.1 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Spider.Processor/obj/Spider.Processor.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | 10 | --------------------------------------------------------------------------------