diff --git a/.deployment b/.deployment deleted file mode 100644 index 47910ee5f54..00000000000 --- a/.deployment +++ /dev/null @@ -1,2 +0,0 @@ -[config] -project = docs/build diff --git a/.gitignore b/.gitignore index 1b07be60fbd..f7f26cd412f 100644 --- a/.gitignore +++ b/.gitignore @@ -52,6 +52,7 @@ build/tools/* !build/*.ps1 !build/*.nuspec !build/*.png +!build/*.targets !build/scripts diff --git a/.paket/Paket.Restore.targets b/.paket/Paket.Restore.targets new file mode 100644 index 00000000000..e48e078d65a --- /dev/null +++ b/.paket/Paket.Restore.targets @@ -0,0 +1,108 @@ + + + + true + $(MSBuildThisFileDirectory) + /Library/Frameworks/Mono.framework/Commands/mono + mono + + $(PaketRootPath)paket.exe + $(PaketToolsPath)paket.exe + "$(PaketExePath)" + $(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)" + + + + + + + + $(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).references + + + + + + + + + $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[0]) + $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[1]) + + + %(PaketReferencesFileLinesInfo.PackageVersion) + + + + + $(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).NuGet.Config + + + + + + + false + + + + + + $(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).references + true + + + + <_NuspecFiles Include="$(BaseIntermediateOutputPath)*.nuspec"/> + + + + + + + + + + + + + \ No newline at end of file diff --git a/.paket/paket.targets b/.paket/paket.targets deleted file mode 100644 index cef47deebcd..00000000000 --- a/.paket/paket.targets +++ /dev/null @@ -1,40 +0,0 @@ - - - - - true - - true - $(MSBuildThisFileDirectory) - $(MSBuildThisFileDirectory)..\ - /Library/Frameworks/Mono.framework/Commands/mono - mono - - - - $(PaketToolsPath)paket.exe - $(PaketToolsPath)paket.bootstrapper.exe - "$(PaketExePath)" - $(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)" - "$(PaketBootStrapperExePath)" - $(MonoPath) --runtime=v4.0.30319 $(PaketBootStrapperExePath) - - $(MSBuildProjectDirectory)\paket.references - $(MSBuildProjectFullPath).paket.references - $(PaketCommand) restore --references-files "$(PaketReferences)" - $(PaketBootStrapperCommand) - - RestorePackages; $(BuildDependsOn); - - - - - - - - - - - - - diff --git a/.travis.yml b/.travis.yml index 01fcd863ff8..1e114fb14ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,10 @@ language: csharp solution: src/Elasticsearch.sln -script: ./build.sh quick +script: ./build.sh inc +dist: trusty mono: 4.6.2 +dotnet: 1.0.1 +env: + global: + - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 + - DOTNET_CLI_TELEMETRY_OPTOUT: 1 diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000000..f96291ec315 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,8 @@ +version: 1.0.{build} +image: Visual Studio 2017 +build_script: + - cmd: build.bat +test: off +environment: + DOTNET_CLI_TELEMETRY_OPTOUT: true + DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true diff --git a/build.bat b/build.bat index 382fb9dae1b..84d48bdf01a 100644 --- a/build.bat +++ b/build.bat @@ -38,20 +38,22 @@ IF /I "%1"=="skiptests" ( IF NOT [%1]==[] (set TARGET=%1) SET SKIPPAKET=0 -IF /I "%TARGET%"=="quick" SET SKIPPAKET=1 -IF /I "%TARGET%"=="forever" SET SKIPPAKET=1 +IF /I "%TARGET%"=="inc" SET SKIPPAKET=1 +IF /I "%TARGET%"=="canary" SET SKIPTESTS=1 IF "%SKIPPAKET%" neq "1" ( .paket\paket.bootstrapper.exe - .paket\paket.exe restore + IF EXIST paket.lock (.paket\paket.exe restore) + IF NOT EXIST paket.lock (.paket\paket.exe install) ) REM if `build quick` is called on a fresh checkout force a restore anyway IF "%SKIPPAKET%"=="1" ( IF NOT EXIST .paket\paket.exe ( .paket\paket.bootstrapper.exe - .paket\paket.exe restore ) + IF EXIST paket.lock (.paket\paket.exe restore) + IF NOT EXIST paket.lock (.paket\paket.exe install) ) IF /I "%TARGET%"=="version" ( @@ -64,10 +66,7 @@ IF /I "%TARGET%"=="release" ( EXIT /B 1 ) ) -IF /I "%TARGET%"=="quick" ( - IF NOT [%2]==[] (set NEST_TEST_FILTER="%2") -) -IF /I "%TARGET%"=="forever" ( +IF /I "%TARGET%"=="inc" ( IF NOT [%2]==[] (set NEST_TEST_FILTER="%2") ) IF /I "%TARGET%"=="integrate" ( diff --git a/build.sh b/build.sh index 7e1d4bfb3b1..caf31a08b72 100755 --- a/build.sh +++ b/build.sh @@ -17,7 +17,7 @@ if [[ "${1,,}" == "skiptests" ]]; then SKIPTESTS=1; shift; fi if [[ ! -z "$1" ]]; then TARGET=$1; fi -if [[ "${TARGET,,}" == "quick" ]]; then SKIPPAKET=1; fi +if [[ "${TARGET,,}" == "inc" ]]; then SKIPPAKET=1; fi if [[ "${TARGET,,}" == "forever" ]]; then SKIPPAKET=1; fi if [[ $SKIPPAKET -ne 1 ]]; then @@ -28,7 +28,7 @@ if [[ $SKIPPAKET -eq 1 && ! -f .paket/paket.exe ]]; then mono .paket/paket.bootstrapper.exe mono .paket/paket.exe restore fi -if [[ "${TARGET,,}" == "quick" ]] || [[ "${TARGET,,}" == "forever" ]]; then +if [[ "${TARGET,,}" == "inc" ]] || [[ "${TARGET,,}" == "forever" ]]; then if [[ ! -z "$2" ]]; then NEST_TEST_FILTER=$2; fi fi diff --git a/build/Clients.Common.targets b/build/Clients.Common.targets new file mode 100644 index 00000000000..0e2c8dd177b --- /dev/null +++ b/build/Clients.Common.targets @@ -0,0 +1,44 @@ + + + + + 0.0.0-bad + 0.0.0 + 0.0.0.0 + + + $(CurrentVersion) + $(CurrentVersion) + + $(CurrentAssemblyVersion) + + $(CurrentAssemblyFileVersion) + + + + + + + + true + ..\..\build\keys\keypair.snk + true + 1591,1572,1571,1573,1587,1570 + false + $(DefineConstants);DOTNETCORE + embedded + $(BaseIntermediateOutputPath)\sl-$(MsBuildProjectName)-$(TargetFramework).json + https://raw.githubusercontent.com/elastic/elasticsearch-net + + + + + + + + + + + + + diff --git a/build/Elasticsearch.Net.nuspec b/build/Elasticsearch.Net.nuspec index 539d31fdace..4db00fdd250 100644 --- a/build/Elasticsearch.Net.nuspec +++ b/build/Elasticsearch.Net.nuspec @@ -30,18 +30,13 @@ - - - - + + - - - - + + - - - + + diff --git a/build/NEST.nuspec b/build/NEST.nuspec index fc06de369f2..9a660a98bca 100644 --- a/build/NEST.nuspec +++ b/build/NEST.nuspec @@ -11,7 +11,7 @@ https://raw.githubusercontent.com/elastic/elasticsearch-net/master/build/nuget-icon.png false Strongly typed interface to Elasticsearch. Fluent and classic object initializer mappings of requests and responses. Uses and exposes Elasticsearch.Net - Strongly typed interface to Elasticsearch. Fluent and classic object initializer mappings of requests and responses. Uses and exposes Elasticsearch.Net + Strongly typed interface to Elasticsearch. Fluent and classic object initializer mappings of requests and responses. Uses and exposes Elasticsearch.Net See https://github.com/elastic/elasticsearch-net/releases/tag/$version$ 2014-$year$ Elasticsearch BV elasticsearch,elastic,search,lucene,nest @@ -35,18 +35,13 @@ - - - - + + - - - - + + - - - + + - + \ No newline at end of file diff --git a/build/scripts/Benchmarking.fsx b/build/scripts/Benchmarking.fsx index 06f769a7bbd..8a4b8fafeba 100644 --- a/build/scripts/Benchmarking.fsx +++ b/build/scripts/Benchmarking.fsx @@ -27,14 +27,14 @@ module Benchmarker = }) DotNetCli.RunCommand(fun p -> - { p with + { p with WorkingDir = testsProjectDirectory }) "run Benchmark" finally - let benchmarkOutputFiles = + let benchmarkOutputFiles = let output = combinePaths testsProjectDirectory "BenchmarkDotNet.Artifacts" - Directory.EnumerateFiles(output, "*.*", SearchOption.AllDirectories) + Directory.EnumerateFiles(output, "*.*", SearchOption.AllDirectories) |> Seq.toList - + for file in benchmarkOutputFiles do copyToOutput file DeleteFiles benchmarkOutputFiles diff --git a/build/scripts/Building.fsx b/build/scripts/Building.fsx index d3584c0d8e9..3e635badffa 100644 --- a/build/scripts/Building.fsx +++ b/build/scripts/Building.fsx @@ -5,6 +5,7 @@ #load @"Paths.fsx" #load @"Tooling.fsx" +#load @"Versioning.fsx" open System open Fake @@ -13,78 +14,67 @@ open FSharp.Data open Paths open Projects open Tooling +open Versioning module Build = let private runningRelease = hasBuildParam "version" || hasBuildParam "apikey" || getBuildParam "target" = "canary" || getBuildParam "target" = "release" - let private quickBuild = getBuildParam "target" = "quick" || getBuildParam "target" = "forever" + let private quickBuild = not (getBuildParam "target" = "release" || getBuildParam "target" = "canary") type private GlobalJson = JsonProvider<"../../global.json"> let private pinnedSdkVersion = GlobalJson.GetSample().Sdk.Version - let private compileCore() = + let private buildingOnTravis = getEnvironmentVarAsBool "TRAVIS" + + let private sln = sprintf "src/Elasticsearch%s.sln" (if buildingOnTravis then ".DotNetCoreOnly" else "") + + let private compileCore incremental = if not (DotNetCli.isInstalled()) then failwith "You need to install the dotnet command line SDK to build for .NET Core" let runningSdkVersion = DotNetCli.getVersion() if (runningSdkVersion <> pinnedSdkVersion) then failwithf "Attempting to run with dotnet.exe with %s but global.json mandates %s" runningSdkVersion pinnedSdkVersion + let incrementalFramework = DotNetFramework.Net45 + let sourceLink = if not incremental && not isMono && runningRelease then "1" else "" + let props = + [ + "CurrentVersion", (Versioning.CurrentVersion.ToString()); + "CurrentAssemblyVersion", (Versioning.CurrentAssemblyVersion.ToString()); + "CurrentAssemblyFileVersion", (Versioning.CurrentAssemblyFileVersion.ToString()); + "DoSourceLink", sourceLink; + "DotNetCoreOnly", if buildingOnTravis then "1" else ""; + ] + |> List.map (fun (p,v) -> sprintf "%s=%s" p v) + |> String.concat ";" + |> sprintf "/property:%s" + + DotNetCli.Build + (fun p -> + { p with + Configuration = "Release" + Project = sln + TimeOut = TimeSpan.FromMinutes(3.) + AdditionalArgs = if incremental then ["-f"; incrementalFramework.Identifier.Nuget; props] else [props] + } + ) |> ignore - DotNetProject.AllPublishable - |> Seq.iter(fun p -> - let path = Paths.ProjectJson p.Name - let o = Paths.ProjectOutputFolder p DotNetFramework.NetStandard1_3 - DotNetCli.Restore - (fun p -> - { p with - Project = path - TimeOut = TimeSpan.FromMinutes(2.) - } - ) |> ignore - - DotNetCli.Build - (fun p -> - { p with - Configuration = "Release" - Project = path - Framework = DotNetFramework.NetStandard1_3.Identifier.MSBuild - TimeOut = TimeSpan.FromMinutes(2.) - AdditionalArgs = ["-o"; o] - } - ) |> ignore - - ) - - let private compileDesktop() = - Tooling.MsBuild.Rebuild DotNetFramework.Net45 - Tooling.MsBuild.Rebuild DotNetFramework.Net46 - - let private gitLink() = - DotNetProject.AllPublishable - |> Seq.iter(fun p -> - let projectName = (p.Name |> directoryInfo).Name - let link framework = - Tooling.GitLink.Exec ["."; "-u"; Paths.Repository; "-d"; (Paths.ProjectOutputFolder p framework); "-include"; projectName] - |> ignore - link DotNetFramework.Net45 - link DotNetFramework.Net46 - link DotNetFramework.NetStandard1_3 - ) + let Restore() = + DotNetCli.Restore + (fun p -> + { p with + Project = sln + TimeOut = TimeSpan.FromMinutes(3.) + } + ) |> ignore - let Compile() = - match quickBuild with - | true -> Tooling.MsBuild.Build DotNetFramework.Net45 - | false -> - compileDesktop() - compileCore() - if not isMono && runningRelease then gitLink() + let Compile incremental = + compileCore incremental let Clean() = - match quickBuild with - | true -> ignore() - | false -> + match (quickBuild, getBuildParam "target" = "clean") with + | (false, _) + | (_, true) -> + tracefn "Cleaning known output folders" CleanDir Paths.BuildOutput + DotNetCli.RunCommand (fun p -> { p with TimeOut = TimeSpan.FromMinutes(3.) }) "clean src/Elasticsearch.sln -c Release" |> ignore DotNetProject.All |> Seq.iter(fun p -> CleanDir(Paths.BinFolder p.Name)) - - let CleanAfter() = - match quickBuild with - | true -> ignore() - | false -> - DotNetProject.All |> Seq.iter(fun p -> CleanDir(Paths.BinFolder p.Name)) + | (_, _) -> + tracefn "Skiping clean target only run when calling 'release', 'canary', 'clean' as targets directly" diff --git a/build/scripts/Documentation.fsx b/build/scripts/Documentation.fsx index aaba7bf99c1..b4e3ab7383b 100644 --- a/build/scripts/Documentation.fsx +++ b/build/scripts/Documentation.fsx @@ -4,16 +4,19 @@ #load @"Paths.fsx" open System +open System.IO open Fake open Paths -open System.IO +open Projects module Documentation = let Generate() = - let generator = "build/output/v4.6/DocGenerator/DocGenerator.exe" + let prefix = "CodeGeneration" + let generatorFolder = Paths.IncrementalOutputFolderWithPrefix prefix (PrivateProject PrivateProject.DocGenerator) DotNetFramework.Net46 + let generator = generatorFolder @@ "DocGenerator.exe" ExecProcess (fun p -> p.WorkingDirectory <- "src/CodeGeneration/DocGenerator" p.FileName <- generator diff --git a/build/scripts/Paths.fsx b/build/scripts/Paths.fsx index 7164f06acc6..8bb06122c2e 100644 --- a/build/scripts/Paths.fsx +++ b/build/scripts/Paths.fsx @@ -26,6 +26,9 @@ module Paths = let IncrementalOutputFolder (project:DotNetProject) (framework:DotNetFramework) = sprintf "src/%s/bin/Release/%s" project.Name framework.Identifier.Nuget + let IncrementalOutputFolderWithPrefix prefix (project:DotNetProject) (framework:DotNetFramework) = + sprintf "src/%s/%s/bin/Release/%s" prefix project.Name framework.Identifier.Nuget + let Tool tool = sprintf "packages/build/%s" tool let CheckedInToolsFolder = "build/Tools" let KeysFolder = sprintf "%s/keys" BuildFolder diff --git a/build/scripts/Projects.fsx b/build/scripts/Projects.fsx index 0fb0dd6d4c8..deb34fd4ce3 100644 --- a/build/scripts/Projects.fsx +++ b/build/scripts/Projects.fsx @@ -17,12 +17,14 @@ module Projects = | Net45 | Net46 | NetStandard1_3 + | NetCoreApp1_1 static member All = [Net45; Net46; NetStandard1_3] member this.Identifier = match this with | Net45 -> { MSBuild = "v4.5"; Nuget = "net45"; DefineConstants = if not isMono then "TRACE;NET45" else "NET45"; } | Net46 -> { MSBuild = "v4.6"; Nuget = "net46"; DefineConstants = if not isMono then "TRACE;NET46" else "NET46"; } | NetStandard1_3 -> { MSBuild = "netstandard1.3"; Nuget = "netstandard1.3"; DefineConstants = if not isMono then "TRACE;DOTNETCORE" else "DOTNETCORE"; } + | NetCoreApp1_1 -> { MSBuild = "netcoreapp1.1"; Nuget = "netcoreapp1.1"; DefineConstants = if not isMono then "TRACE;DOTNETCORE" else "DOTNETCORE"; } type Project = | Nest diff --git a/build/scripts/Releasing.fsx b/build/scripts/Releasing.fsx index 77cbd6c0778..a23c7cf35ec 100644 --- a/build/scripts/Releasing.fsx +++ b/build/scripts/Releasing.fsx @@ -1,7 +1,5 @@ #I @"../../packages/build/FAKE/tools" -#I @"../../packages/SemanticVersioning/lib/net45" #r @"FakeLib.dll" -#r @"SemVer.dll" #load @"Projects.fsx" #load @"Paths.fsx" @@ -13,7 +11,6 @@ open System.Text open Microsoft.FSharp.Quotations open Microsoft.FSharp.Quotations.Patterns open Fake -open SemVer open Paths open Projects @@ -28,11 +25,10 @@ module Release = let name = p.Name; let nuspec = (sprintf @"build\%s.nuspec" name) - let nugetOutFile = Paths.Output(sprintf "%s.%s.nupkg" name Versioning.FileVersion) + let nugetOutFile = Paths.Output(sprintf "%s.%s.nupkg" name (Versioning.CurrentVersion.ToString())) let nextMajorVersion = - let version = new Version(Versioning.FileVersion) - let nextMajor = version.Major + 1 + let nextMajor = Versioning.CurrentVersion.Major + 1 sprintf "%i" nextMajor let year = sprintf "%i" DateTime.UtcNow.Year @@ -53,7 +49,7 @@ module Release = |> toText Tooling.Nuget.Exec [ "pack"; nuspec; - "-version"; Versioning.FileVersion; + "-version"; Versioning.CurrentVersion.ToString(); "-outputdirectory"; Paths.BuildOutput; "-properties"; properties; ] |> ignore diff --git a/build/scripts/Signing.fsx b/build/scripts/Signing.fsx index 01577025260..6697df2be19 100644 --- a/build/scripts/Signing.fsx +++ b/build/scripts/Signing.fsx @@ -8,7 +8,7 @@ open Fake open Paths open Projects -module Sign = +module StrongName = let private sn = if isMono then "sn" else Paths.CheckedInTool("sn/sn.exe") let private keyFile = Paths.Keys("keypair.snk"); let private oficialToken = "96c599bbe3e70f5d" @@ -38,10 +38,12 @@ module Sign = trace (sprintf "%s was signed with official key token %s" name t) | (_, t) -> traceFAKE "%s was not signed with the official token: %s but %s" name oficialToken t - let ValidateNugetDllAreSignedCorrectly() = + let ValidateDllsInNugetPackage () = for p in DotNetProject.AllPublishable do for f in DotNetFramework.All do let name = p.Name - let outputFolder = Paths.ProjectOutputFolder p f - let dll = sprintf "%s/%s.dll" outputFolder name - if fileExists dll then validate dll name + let folder = Paths.IncrementalOutputFolder p f + let dll = sprintf "%s/%s.dll" folder name + match fileExists dll with + | true -> validate dll name + | _ -> failwithf "Attemped to verify signature of %s but it was not found!" dll \ No newline at end of file diff --git a/build/scripts/Targets.fsx b/build/scripts/Targets.fsx index 296cad22d35..448c027e619 100644 --- a/build/scripts/Targets.fsx +++ b/build/scripts/Targets.fsx @@ -5,11 +5,11 @@ #load @"Testing.fsx" #load @"Signing.fsx" #load @"Building.fsx" -#load @"XmlDocPatcher.fsx" #load @"Documentation.fsx" #load @"Releasing.fsx" #load @"Benchmarking.fsx" #load @"Profiling.fsx" +#load @"XmlDocPatcher.fsx" open System open Fake @@ -17,7 +17,6 @@ open Fake open Paths open Building open Testing -open Signing open Versioning open Documentation open Releasing @@ -25,24 +24,26 @@ open Profiling open Benchmarking open XmlDocPatcher open Documentation +open Signing // Default target Target "Build" <| fun _ -> traceHeader "STARTING BUILD" -Target "Quick" <| fun _ -> traceHeader "STARTING INCREMENTAL BUILD" -Target "Clean" Build.Clean +Target "Inc" <| fun _ -> traceHeader "STARTING INCREMENTAL BUILD" -Target "CleanAfter" Build.CleanAfter +Target "IncrementalTest" Tests.IncrementalTest -Target "BuildApp" Build.Compile +Target "Clean" Build.Clean -Target "Test" Tests.RunTest +Target "Restore" Build.Restore -Target "UnitTests" Tests.RunUnitTests +Target "IncrementalBuild" <| fun _ -> Build.Compile false -Target "Forever" Tests.RunUnitTestsForever +Target "FullBuild" <| fun _ -> Build.Compile false +Target "UnitTests" Tests.RunUnitTests + Target "Profile" <| fun _ -> Profiler.Run() let url = getBuildParam "elasticsearch" @@ -57,13 +58,12 @@ Target "InheritDoc" InheritDoc.PatchInheritDocs Target "Documentation" Documentation.Generate Target "Version" <| fun _ -> - Versioning.PatchAssemblyInfos() - Versioning.PatchProjectJsons() + tracefn "Current Version: %s" (Versioning.CurrentVersion.ToString()) Target "Release" <| fun _ -> Release.NugetPack() - Signing.Sign.ValidateNugetDllAreSignedCorrectly() Versioning.ValidateArtifacts() + StrongName.ValidateDllsInNugetPackage() Target "Canary" <| fun _ -> trace "Running canary build" @@ -72,36 +72,33 @@ Target "Canary" <| fun _ -> if (not (String.IsNullOrWhiteSpace apiKey) || apiKey = "ignore") then Release.PublishCanaryBuild apiKey feed // Dependencies -"Clean" +"Clean" =?> ("Version", hasBuildParam "version") - ==> "BuildApp" - ==> "CleanAfter" + ==> "Restore" + ==> "FullBuild" =?> ("UnitTests", (not ((getBuildParam "skiptests") = "1"))) ==> "InheritDoc" ==> "Documentation" ==> "Build" -"Clean" - ==> "BuildApp" +"Clean" + ==> "FullBuild" ==> "Profile" "Clean" - ==> "BuildApp" + ==> "FullBuild" ==> "Benchmark" "Version" - ==> "Release" - ==> "Canary" + ==> "Release" ==> "Canary" -"BuildApp" +"FullBuild" ==> "Integrate" -"BuildApp" - =?> ("Test", (not ((getBuildParam "skiptests") = "1"))) - ==> "Quick" - -"BuildApp" - ==> "Forever" +"Restore" + ==> "IncrementalBuild" + =?> ("IncrementalTest", (not ((getBuildParam "skiptests") = "1"))) + ==> "Inc" "Build" ==> "Release" diff --git a/build/scripts/Testing.fsx b/build/scripts/Testing.fsx index ecaee148ae6..c2b8eebda0b 100644 --- a/build/scripts/Testing.fsx +++ b/build/scripts/Testing.fsx @@ -15,75 +15,34 @@ module Tests = open System.Threading open System + let private buildingOnTravis = getEnvironmentVarAsBool "TRAVIS" + let private setLocalEnvVars() = let clusterFilter = getBuildParamOrDefault "escluster" "" let testFilter = getBuildParamOrDefault "testfilter" "" setProcessEnvironVar "NEST_INTEGRATION_CLUSTER" clusterFilter setProcessEnvironVar "NEST_TEST_FILTER" testFilter - let private testProjectJson() = - DotNetProject.All - |> Seq.iter(fun p -> - let path = Paths.ProjectJson p.Name - DotNetCli.Restore - (fun p -> - { p with - Project = path - TimeOut = TimeSpan.FromMinutes(2.) - } - ) |> ignore - ) - - let testPath = Paths.Source "Tests/project.json" - DotNetCli.Restore - (fun p -> - { p with - Project = testPath - TimeOut = TimeSpan.FromMinutes(2.) - } - ) |> ignore + let private dotnetTest() = + let folder = Paths.IncrementalOutputFolder (PrivateProject PrivateProject.Tests) DotNetFramework.NetCoreApp1_1 + let testPath = sprintf "%s/Tests.dll" folder + DotNetCli.RunCommand (fun p -> { p with TimeOut = TimeSpan.FromMinutes(10.) }) (sprintf "%s -- Test" testPath) |> ignore - DotNetCli.Build - (fun p -> - { p with - Configuration = "Release" - Project = testPath - Framework = "netcoreapp1.0" - TimeOut = TimeSpan.FromMinutes(2.) - } - ) |> ignore - DotNetCli.Test - (fun p -> - { p with - Configuration = "Release" - Project = testPath - Framework = "netcoreapp1.0" - TimeOut = TimeSpan.FromMinutes(10.) - AdditionalArgs = ["-parallel"; "all"; "-xml"; Paths.Output("TestResults-Core-Clr.xml")] - } - ) |> ignore - - let private testDesktopClr() = - let folder = Paths.ProjectOutputFolder (PrivateProject PrivateProject.Tests) DotNetFramework.Net46 - let testDll = Path.Combine(folder, "Tests.exe") - Tooling.XUnit.Exec [testDll; "-parallel"; "all"; "-xml"; Paths.Output("TestResults-Desktop-Clr.xml")] - |> ignore + let private runTestExeOnDesktopCLR() = + let folder = Paths.IncrementalOutputFolder (PrivateProject PrivateProject.Tests) DotNetFramework.Net46 + let testRunner = Tooling.BuildTooling(folder @@ "Tests.exe") + testRunner.Exec ["Test"; "-parallel"; "-xml"; Paths.Output("TestResults-Desktop-Clr.xml")] |> ignore - let RunTest() = + let IncrementalTest() = setLocalEnvVars() - let folder = Paths.IncrementalOutputFolder (PrivateProject PrivateProject.Tests) DotNetFramework.Net45 - let testDll = Path.Combine(folder, "Tests.exe") - Tooling.XUnit.Exec [testDll; "-parallel"; "all"] |> ignore - - let RunUnitTestsForever() = - while true do - RunTest() - Thread.Sleep(1000) + match buildingOnTravis with + | false -> runTestExeOnDesktopCLR() + | true -> dotnetTest() let RunUnitTests() = setLocalEnvVars() - testDesktopClr() - testProjectJson() + dotnetTest() + runTestExeOnDesktopCLR() let RunIntegrationTests() = setLocalEnvVars() @@ -95,4 +54,6 @@ module Tests = for esVersion in esVersions do setProcessEnvironVar "NEST_INTEGRATION_VERSION" esVersion - testDesktopClr() + runTestExeOnDesktopCLR() + //TODO enable integration testing on .net CORE + //dotnetTest() diff --git a/build/scripts/Versioning.fsx b/build/scripts/Versioning.fsx index 893f4731714..041cb5711a9 100644 --- a/build/scripts/Versioning.fsx +++ b/build/scripts/Versioning.fsx @@ -1,5 +1,8 @@ #I @"../../packages/build/FAKE/tools" +#I @"../../packages/build/FSharp.Data/lib/net40" #r @"FakeLib.dll" +#r @"FSharp.Data.dll" +#r @"System.Xml.Linq.dll" #load @"Projects.fsx" #load @"Paths.fsx" @@ -7,123 +10,59 @@ open System open System.Diagnostics open System.IO +open System.Xml open System.Text.RegularExpressions +open FSharp.Data open Fake open AssemblyInfoFile open SemVerHelper open Paths open Projects +open SemVerHelper -type Versioning() = - - static let regexReplaceFirstOccurrence pattern (replacement:string) encoding file = - let oldContent = File.ReadAllLines(file, encoding) - let mutable replaced = false - let newContent = oldContent |> Seq.map (fun l -> - if replaced then l - else ( - if Regex.IsMatch(l, pattern) then ( - replaced <- true - Regex.Replace(l, pattern, replacement) - ) else l - ) - ) - File.WriteAllLines(file, newContent, encoding) - - static let suffix = fun (prerelease: PreRelease) -> sprintf "-%s%i" prerelease.Name prerelease.Number.Value - - //returns the current version number - //when version is passed to script we always use that - //otherwise we get the current version number and append -ci-datestamp - static let currentInformationalVersion = - let assemblyFileContents = ReadFileAsString @"src/Nest/Properties/AssemblyInfo.cs" - let re = @"\[assembly\: AssemblyInformationalVersionAttribute\(""([^""]+)""\)\]" - let matches = Regex.Matches(assemblyFileContents,re) - regex_replace re "$1" (matches.Item(0).Captures.Item(0).Value) - - static let currentFileVersion = - let assemblyFileContents = ReadFileAsString @"src/Nest/Properties/AssemblyInfo.cs" - let re = @"\[assembly\: AssemblyFileVersionAttribute\(""([^""]+)""\)\]" - let matches = Regex.Matches(assemblyFileContents,re) - regex_replace re "$1" (matches.Item(0).Captures.Item(0).Value) +module Versioning = + // We used to rely on AssemblyInfo.cs from NEST to read and write the current version. + // Since that file is now generated by the dotnet tooling and GitVersion and similar tooling all still have + // active issues related to dotnet core, we now just burn this info in global.json - static let fileVersion = - let timestampedVersion = (sprintf "%s-ci%s" currentFileVersion (DateTime.UtcNow.ToString("yyyyMMddHHmmss"))) - let fileVersion = (getBuildParamOrDefault "version" timestampedVersion) - let fv = if isNullOrEmpty fileVersion then timestampedVersion else fileVersion - fv - - //CI builds need to be one minor ahead of the whatever we find in master - static member FileVersion = - //only increment minor when the current assembly informational version is not already -ci - let i = if currentInformationalVersion.Contains("-ci") then 0 else 1 - match fileVersion with - | f when f.Contains("-ci") -> - let v = regex_replace "-ci.+$" "" f - let prerelease = regex_replace "^.+-(ci.+)$" "$1" f - let version = SemVerHelper.parse v - (sprintf "%d.%d.0-%s" version.Major (version.Minor + i) prerelease).Trim() - | _ -> fileVersion.Trim() + //Versions in form of e.g 6.1.0 is inferred as datetime so we bake the json shape into the provider like this + type private GlobalJson = JsonProvider<""" { "sdk": { "version":"x" }, "version": "x" } """ > + let globalJson = GlobalJson.Load("../../global.json"); + let writeVersionIntoGlobalJson version = + let newGlobalJson = GlobalJson.Root (GlobalJson.Sdk(globalJson.Sdk.Version), version.ToString()) + use tw = new StreamWriter("global.json") + newGlobalJson.JsonValue.WriteTo(tw, JsonSaveOptions.None) + tracefn "Written (%s) to global.json as the current version will use this version from now on as current in the build" (version.ToString()) - static member AssemblyVersion = - let fileVersion = Versioning.FileVersion - let fv = if fileVersion.Contains("-ci") then (regex_replace "-ci.+$" "" fileVersion) else fileVersion - traceFAKE "patched fileVersion %s" fileVersion - let version = SemVerHelper.parse fv - - let assemblySuffix = if version.PreRelease.IsSome then suffix version.PreRelease.Value else ""; - let assemblyVersion = sprintf "%i.0.0%s" version.Major assemblySuffix - - match (assemblySuffix, version.Minor, version.Patch) with - | (s, m, p) when s <> "" && s <> "ci" && (m <> 0 || p <> 0) -> failwithf "Cannot create prereleases for minor or major builds!" - | ("", _, _) -> traceFAKE "Building fileversion %s for asssembly version %s" fileVersion assemblyVersion - | _ -> traceFAKE "Building prerelease %s for major assembly version %s " fileVersion assemblyVersion + let CurrentVersion = + tracefn "Version found in global.json %s" globalJson.Version + let currentVersion = parse(globalJson.Version) + let bv = getBuildParam "version" + let buildVersion = if (isNullOrEmpty bv) then None else Some(parse(bv)) + match (getBuildParam "target", buildVersion) with + | ("release", None) -> failwithf "can not run release because no explicit version number was passed on the command line" + | ("release", Some v) -> + if (currentVersion >= v) then failwithf "tried to create release %s but current version is already at %s" (v.ToString()) (currentVersion.ToString()) + writeVersionIntoGlobalJson v + v + | ("canary", Some v) -> failwithf "can not run canary release, expected no version number to specified but received %s" (v.ToString()) + | ("canary", None) -> + let timestampedVersion = (sprintf "ci%s" (DateTime.UtcNow.ToString("MMddHHmmss"))) + tracefn "Canary suffix %s " timestampedVersion + let canaryVersion = parse ((sprintf "%d.%d.0-%s" currentVersion.Major (currentVersion.Minor + 1) timestampedVersion).Trim()) + tracefn "Canary build increased currentVersion (%s) to (%s) " (currentVersion.ToString()) (canaryVersion.ToString()) + canaryVersion + | _ -> + tracefn "Not running 'release' or 'canary' target so using version in global.json (%s) as current" (currentVersion.ToString()) + currentVersion - assemblyVersion - - static member PatchAssemblyInfos() = - let assemblyVersion = Versioning.AssemblyVersion - let fileVersion = Versioning.FileVersion - !! "src/**/AssemblyInfo.cs" - |> Seq.iter(fun f -> - let name = (directoryInfo f).Parent.Parent.Name - let projectName = DotNetProject.TryFindName name - let assemblyDescription = - match projectName with - | Some "Nest" -> "NEST - official high level elasticsearch client" - | Some "Elasticsearch.Net" -> "Elasticsearch.Net - official low level elasticsearch client" - | _ -> "" - - CreateCSharpAssemblyInfo f [ - Attribute.Title name - Attribute.Copyright (sprintf "Elasticsearch %i" DateTime.UtcNow.Year) - Attribute.Description assemblyDescription - Attribute.Company "Elasticsearch" - Attribute.Configuration "Release" - Attribute.Version assemblyVersion - Attribute.FileVersion fileVersion - Attribute.InformationalVersion fileVersion - ] - ) - - static member PatchProjectJsons() = - !! "src/**/project.json" - |> Seq.iter(fun f -> - regexReplaceFirstOccurrence - "\"version\"\\s?:\\s?\".*\"" - (sprintf "\"version\": \"%s\"" fileVersion) - (new System.Text.UTF8Encoding(false)) f - - RegexReplaceInFileWithEncoding - "\"releaseNotes\"\\s?:\\s?\".*\"" - (sprintf "\"releaseNotes\": \"See https://github.com/elastic/elasticsearch-net/releases/tag/%s\"" fileVersion) - (new System.Text.UTF8Encoding(false)) f - ) + let CurrentAssemblyVersion = parse (sprintf "%s.0.0" (CurrentVersion.Major.ToString())) + let CurrentAssemblyFileVersion = parse (sprintf "%s.%s.%s.0" (CurrentVersion.Major.ToString()) (CurrentVersion.Minor.ToString()) (CurrentVersion.Patch.ToString())) - static member ValidateArtifacts() = - let assemblyVersion = Versioning.AssemblyVersion - let fileVersion = Versioning.FileVersion + let ValidateArtifacts() = + let fileVersion = CurrentVersion + let assemblyVersion = parse (sprintf "%i.0.0" fileVersion.Major) let tmp = "build/output/_packages/tmp" !! "build/output/_packages/*.nupkg" |> Seq.iter(fun f -> @@ -134,7 +73,7 @@ type Versioning() = let a = GetAssemblyVersion f traceFAKE "Assembly: %A File: %s Product: %s => %s" a fv.FileVersion fv.ProductVersion f if (a.Minor > 0 || a.Revision > 0 || a.Build > 0) then failwith (sprintf "%s assembly version is not sticky to its major component" f) - if (fv.ProductVersion <> fileVersion) then failwith (sprintf "Expected product info %s to match new version %s " fv.ProductVersion fileVersion) + if (parse (fv.ProductVersion) <> fileVersion) then failwith (sprintf "Expected product info %s to match new version %s " fv.ProductVersion (fileVersion.ToString())) ) DeleteDir tmp ) \ No newline at end of file diff --git a/build/scripts/scripts.fsproj b/build/scripts/scripts.fsproj index 36ee0d7f162..ae049c9076c 100644 --- a/build/scripts/scripts.fsproj +++ b/build/scripts/scripts.fsproj @@ -1,58 +1,8 @@ - - - + - Debug - AnyCPU - {28328694-2598-44D3-BB25-8B6C3FBDD3EF} - Library - scripts - scripts - v4.5 - true - 4.3.1.0 - scripts + Exe + netcoreapp1.0 - - true - false - false - bin\Debug\ - DEBUG;TRACE - 3 - AnyCPU - bin\Debug\scripts.XML - true - - - pdbonly - true - true - bin\Release\ - TRACE - 3 - AnyCPU - bin\Release\scripts.XML - true - true - - - 11 - - - - - $(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets - - - - - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets - - - - - @@ -77,8 +27,7 @@ - - True - + + \ No newline at end of file diff --git a/global.json b/global.json index 5c524ceb1e8..c78b2e69c8e 100644 --- a/global.json +++ b/global.json @@ -1,8 +1,6 @@ { - "projects": [ - "src" - ], "sdk": { - "version": "1.0.0-preview2-003156" - } -} + "version": "1.0.1" + }, + "version": "6.0.0-alpha1" +} \ No newline at end of file diff --git a/paket.dependencies b/paket.dependencies index 6a13815d832..a40da8c5898 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,47 +1,11 @@ source https://www.nuget.org/api/v2 -nuget Newtonsoft.Json - -//codegen -nuget ShellProgressBar -nuget Microsoft.CodeAnalysis.CSharp -nuget Microsoft.CodeAnalysis.CSharp.Workspaces -nuget CsQuery -nuget RazorMachine 2.6.1 -nuget System.Collections.Immutable -nuget System.Reflection.Metadata - -//tests -nuget FluentAssertions -nuget Bogus -nuget DiffPlex - -// profiling / benchmarking -nuget JetBrains.Profiler.Kernel.Windows.Api -nuget BenchmarkDotNet 0.10.0 -nuget System.Buffers - -nuget System.Reactive -nuget SemanticVersioning - -source https://api.nuget.org/v3/index.json - -nuget AsciiDocNet -nuget NuDoq - -source https://www.myget.org/F/aspnetvnext/api/v3/index.json - -source https://www.myget.org/F/xunit/ -nuget xunit 2.2.0-beta5-build3474 -nuget xunit.abstractions 2.0.1-rc2 - group build source https://www.nuget.org/api/v2 nuget FAKE nuget FSharp.Data - nuget GitLink prerelease - nuget NEST - source https://www.myget.org/F/xunit/ - nuget xunit.runner.console 2.2.0-beta5-build3474 + + #Profiling.fsx uses this + nuget Nest framework: net45 diff --git a/paket.lock b/paket.lock index f34e10d175b..f9c80275af9 100644 --- a/paket.lock +++ b/paket.lock @@ -1,1433 +1,14 @@ -NUGET - remote: https://www.nuget.org/api/v2 - AsciiDocNet (1.0.0-alpha5) - NETStandard.Library (>= 1.6) - framework: >= netstandard13 - System.Collections.Specialized (>= 4.0.1) - framework: >= netstandard13 - System.ComponentModel.Annotations (>= 4.1) - framework: >= netstandard13 - System.Reflection.TypeExtensions (>= 4.1) - framework: >= netstandard13 - BenchmarkDotNet (0.10) - BenchmarkDotNet.Core (>= 0.10) - framework: >= netstandard15 - BenchmarkDotNet.Toolchains.Roslyn (>= 0.10) - framework: >= net45 - BenchmarkDotNet.Core (0.10.2) - framework: >= net45, >= netstandard15 - BenchmarkDotNet.Toolchains.Roslyn (0.10.2) - framework: >= net45 - BenchmarkDotNet.Core (>= 0.10.2) - framework: >= net45 - Microsoft.CodeAnalysis.CSharp (>= 1.3.2) - framework: >= net45 - System.Threading.Tasks (>= 4.0) - framework: >= net45 - Bogus (9.0.2) - NETStandard.Library (>= 1.6) - framework: >= netstandard13 - Newtonsoft.Json (>= 9.0.1) - framework: >= net40, >= netstandard13 - System.Linq (>= 4.1) - framework: >= netstandard13 - System.Linq.Expressions (>= 4.1) - framework: >= netstandard13 - System.Reflection (>= 4.1) - framework: >= netstandard13 - System.Reflection.TypeExtensions (>= 4.1) - framework: >= netstandard13 - CsQuery (1.3.4) - DiffPlex (1.2.1) - FluentAssertions (4.19) - NETStandard.Library (>= 1.6) - framework: >= netstandard13 - System.Reflection.TypeExtensions (>= 4.1) - framework: >= netstandard13 - JetBrains.Profiler.Kernel.Windows.Api (108.0.20170407.123535) - Wave (8.0) - Microsoft.CodeAnalysis.Analyzers (1.1) - framework: >= net45, >= netstandard11, portable-net45+win8 - Microsoft.CodeAnalysis.Common (1.3.2) - Microsoft.CodeAnalysis.Analyzers (>= 1.1) - framework: >= net45, >= netstandard11, portable-net45+win8 - System.AppContext (>= 4.1) - framework: >= net46, >= netstandard13 - System.Collections (>= 4.0.11) - framework: >= net46, >= netstandard13 - System.Collections.Concurrent (>= 4.0.12) - framework: >= net46, >= netstandard13 - System.Collections.Immutable (>= 1.1.37) - framework: >= net45, >= netstandard11, portable-net45+win8 - System.Collections.Immutable (>= 1.2) - framework: >= net46, >= netstandard13 - System.Console (>= 4.0) - framework: >= net46, >= netstandard13 - System.Diagnostics.Debug (>= 4.0.11) - framework: >= net46, >= netstandard13 - System.Diagnostics.FileVersionInfo (>= 4.0) - framework: >= net46, >= netstandard13 - System.Diagnostics.StackTrace (>= 4.0.1) - framework: >= net46, >= netstandard13 - System.Diagnostics.Tools (>= 4.0.1) - framework: >= net46, >= netstandard13 - System.Dynamic.Runtime (>= 4.0.11) - framework: >= net46, >= netstandard13 - System.Globalization (>= 4.0.11) - framework: >= net46, >= netstandard13 - System.IO.FileSystem (>= 4.0.1) - framework: >= net46, >= netstandard13 - System.IO.FileSystem.Primitives (>= 4.0.1) - framework: >= net46, >= netstandard13 - System.Linq (>= 4.1) - framework: >= net46, >= netstandard13 - System.Linq.Expressions (>= 4.1) - framework: >= net46, >= netstandard13 - System.Reflection (>= 4.1) - framework: >= net46, >= netstandard13 - System.Reflection.Metadata (>= 1.2) - framework: >= net45, >= netstandard11, portable-net45+win8 - System.Reflection.Metadata (>= 1.3) - framework: >= net46, >= netstandard13 - System.Reflection.Primitives (>= 4.0.1) - framework: >= net46, >= netstandard13 - System.Resources.ResourceManager (>= 4.0.1) - framework: >= net46, >= netstandard13 - System.Runtime (>= 4.1) - framework: >= net46, >= netstandard13 - System.Runtime.Extensions (>= 4.1) - framework: >= net46, >= netstandard13 - System.Runtime.Handles (>= 4.0.1) - framework: >= net46, >= netstandard13 - System.Runtime.InteropServices (>= 4.1) - framework: >= net46, >= netstandard13 - System.Runtime.Numerics (>= 4.0.1) - framework: >= net46, >= netstandard13 - System.Security.Cryptography.Algorithms (>= 4.2) - framework: >= net46, >= netstandard13 - System.Security.Cryptography.Encoding (>= 4.0) - framework: >= net46, >= netstandard13 - System.Security.Cryptography.X509Certificates (>= 4.1) - framework: >= net46, >= netstandard13 - System.Text.Encoding (>= 4.0.11) - framework: >= net46, >= netstandard13 - System.Text.Encoding.CodePages (>= 4.0.1) - framework: >= net46, >= netstandard13 - System.Text.Encoding.Extensions (>= 4.0.11) - framework: >= net46, >= netstandard13 - System.Threading (>= 4.0.11) - framework: >= net46, >= netstandard13 - System.Threading.Tasks (>= 4.0.11) - framework: >= net46, >= netstandard13 - System.Threading.Tasks.Parallel (>= 4.0.1) - framework: >= net46, >= netstandard13 - System.Threading.Thread (>= 4.0) - framework: >= net46, >= netstandard13 - System.Xml.ReaderWriter (>= 4.0.11) - framework: >= net46, >= netstandard13 - System.Xml.XDocument (>= 4.0.11) - framework: >= net46, >= netstandard13 - System.Xml.XmlDocument (>= 4.0.1) - framework: >= net46, >= netstandard13 - System.Xml.XPath.XDocument (>= 4.0.1) - framework: >= net46, >= netstandard13 - Microsoft.CodeAnalysis.CSharp (1.3.2) - Microsoft.CodeAnalysis.Common (1.3.2) - Microsoft.CodeAnalysis.CSharp.Workspaces (1.3.2) - Microsoft.CodeAnalysis.CSharp (1.3.2) - Microsoft.CodeAnalysis.Workspaces.Common (1.3.2) - Microsoft.CodeAnalysis.Workspaces.Common (1.3.2) - Microsoft.CodeAnalysis.Common (1.3.2) - Microsoft.Composition (>= 1.0.27) - Microsoft.Composition (1.0.30) - Microsoft.CSharp (4.3) - framework: netstandard10, >= netstandard13 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Dynamic.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Linq (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Linq.Expressions (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.ObjectModel (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Reflection (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Reflection.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Reflection.Primitives (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Reflection.TypeExtensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard13 - Microsoft.NETCore.Platforms (1.1) - framework: >= net45, >= netstandard10, netstandard11, netstandard12, netstandard13, netstandard14 - Microsoft.NETCore.Targets (1.1) - framework: >= net45, >= netstandard10, netstandard11, netstandard12, netstandard13, netstandard14 - Microsoft.Win32.Primitives (4.3) - framework: >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - NETStandard.Library (1.6.1) - framework: >= netstandard10 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard10 - Microsoft.Win32.Primitives (>= 4.3) - framework: >= net46, >= netstandard13 - System.AppContext (>= 4.3) - framework: >= net46, >= netstandard13 - System.Collections (>= 4.3) - framework: >= netstandard10 - System.Collections.Concurrent (>= 4.3) - framework: >= net45, >= netstandard11 - System.Console (>= 4.3) - framework: >= net46, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: >= netstandard10 - System.Diagnostics.Tools (>= 4.3) - framework: >= netstandard10 - System.Diagnostics.Tracing (>= 4.3) - framework: >= net45, >= netstandard11 - System.Globalization (>= 4.3) - framework: >= netstandard10 - System.Globalization.Calendars (>= 4.3) - framework: >= net46, >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard10 - System.IO.Compression (>= 4.3) - framework: >= net45, >= netstandard11 - System.IO.Compression.ZipFile (>= 4.3) - framework: >= net46, >= netstandard13 - System.IO.FileSystem (>= 4.3) - framework: >= net46, >= netstandard13 - System.IO.FileSystem.Primitives (>= 4.3) - framework: >= net46, >= netstandard13 - System.Linq (>= 4.3) - framework: >= netstandard10 - System.Linq.Expressions (>= 4.3) - framework: >= netstandard10 - System.Net.Http (>= 4.3) - framework: >= net45, >= netstandard11 - System.Net.Primitives (>= 4.3) - framework: >= netstandard10 - System.Net.Sockets (>= 4.3) - framework: >= net46, >= netstandard13 - System.ObjectModel (>= 4.3) - framework: >= netstandard10 - System.Reflection (>= 4.3) - framework: >= netstandard10 - System.Reflection.Extensions (>= 4.3) - framework: >= netstandard10 - System.Reflection.Primitives (>= 4.3) - framework: >= netstandard10 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard10 - System.Runtime (>= 4.3) - framework: >= netstandard10 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard10 - System.Runtime.Handles (>= 4.3) - framework: >= net46, >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: >= net45, >= netstandard11 - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - framework: >= net45, >= netstandard11 - System.Runtime.Numerics (>= 4.3) - framework: >= net45, >= netstandard11 - System.Security.Cryptography.Algorithms (>= 4.3) - framework: >= net46, >= netstandard13 - System.Security.Cryptography.Encoding (>= 4.3) - framework: >= net46, >= netstandard13 - System.Security.Cryptography.Primitives (>= 4.3) - framework: >= net46, >= netstandard13 - System.Security.Cryptography.X509Certificates (>= 4.3) - framework: >= net46, >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: >= netstandard10 - System.Text.Encoding.Extensions (>= 4.3) - framework: >= netstandard10 - System.Text.RegularExpressions (>= 4.3) - framework: >= netstandard10 - System.Threading (>= 4.3) - framework: >= netstandard10 - System.Threading.Tasks (>= 4.3) - framework: >= netstandard10 - System.Threading.Timer (>= 4.3) - framework: >= net451, >= netstandard12 - System.Xml.ReaderWriter (>= 4.3) - framework: >= netstandard10 - System.Xml.XDocument (>= 4.3) - framework: >= netstandard10 - Newtonsoft.Json (10.0.2) - Microsoft.CSharp (>= 4.3) - framework: netstandard10, >= netstandard13 - NETStandard.Library (>= 1.6.1) - framework: netstandard10, >= netstandard13 - System.ComponentModel.TypeConverter (>= 4.3) - framework: netstandard10, >= netstandard13 - System.Runtime.Serialization.Formatters (>= 4.3) - framework: >= netstandard13 - System.Runtime.Serialization.Primitives (>= 4.3) - framework: netstandard10, >= netstandard13 - System.Xml.XmlDocument (>= 4.3) - framework: >= netstandard13 - NuDoq (1.2.5) - RazorMachine (2.6.1) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net46, >= net46, >= netstandard13, netstandard14 - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net46, >= net46, >= netstandard13, netstandard14 - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net46, >= net46, >= netstandard13, netstandard14 - runtime.native.System (4.3) - framework: >= net46, >= netstandard11 - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3) - framework: >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Http (4.3) - framework: >= net46, >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3) - framework: net46, >= net46, >= netstandard16 - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net46, >= net46, >= netstandard13, netstandard14 - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net46, >= net46, >= netstandard13, netstandard14 - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net46, >= net46, >= netstandard13, netstandard14 - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - framework: net46, >= net46, >= netstandard16 - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net46, >= net46, >= netstandard13, netstandard14 - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net46, >= net46, >= netstandard13, netstandard14 - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net46, >= net46, >= netstandard13, netstandard14 - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net46, >= net46, >= netstandard13, netstandard14 - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net46, >= net46, >= netstandard13, netstandard14 - SemanticVersioning (0.7.6) - NETStandard.Library (>= 1.6) - framework: >= netstandard11 - ShellProgressBar (3.0) - System.AppContext (4.3) - framework: >= net46, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Buffers (4.3) - System.Diagnostics.Debug (>= 4.3) - framework: >= netstandard11 - System.Diagnostics.Tracing (>= 4.3) - framework: >= netstandard11 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard11 - System.Runtime (>= 4.3) - framework: >= netstandard11 - System.Threading (>= 4.3) - framework: >= netstandard11 - System.Collections (4.3) - framework: net46, >= net46, >= netstandard10, netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Collections.Concurrent (4.3) - framework: net46, >= net46, >= netstandard11, netstandard14 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Tracing (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Reflection (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading.Tasks (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Collections.Immutable (1.3.1) - System.Collections (>= 4.3) - framework: >= netstandard10 - System.Diagnostics.Debug (>= 4.3) - framework: >= netstandard10 - System.Globalization (>= 4.3) - framework: >= netstandard10 - System.Linq (>= 4.3) - framework: >= netstandard10 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard10 - System.Runtime (>= 4.3) - framework: >= netstandard10 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard10 - System.Threading (>= 4.3) - framework: >= netstandard10 - System.Collections.NonGeneric (4.3) - framework: >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: >= netstandard13 - System.Globalization (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Threading (>= 4.3) - framework: >= netstandard13 - System.Collections.Specialized (4.3) - framework: >= netstandard13 - System.Collections.NonGeneric (>= 4.3) - framework: >= netstandard13 - System.Globalization (>= 4.3) - framework: >= netstandard13 - System.Globalization.Extensions (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Threading (>= 4.3) - framework: >= netstandard13 - System.ComponentModel (4.3) - framework: netstandard10, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.ComponentModel.Annotations (4.3) - framework: >= netstandard13 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard14 - System.ComponentModel (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard14 - System.Linq (>= 4.3) - framework: dnxcore50, >= netstandard14 - System.Reflection (>= 4.3) - framework: dnxcore50, >= netstandard14 - System.Reflection.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard14 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard14 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard14 - System.Text.RegularExpressions (>= 4.3) - framework: dnxcore50, >= netstandard14 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard14 - System.ComponentModel.Primitives (4.3) - framework: netstandard10, >= netstandard15 - System.ComponentModel (>= 4.3) - framework: >= netstandard10 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard10 - System.Runtime (>= 4.3) - framework: >= netstandard10 - System.ComponentModel.TypeConverter (4.3) - framework: netstandard10, >= netstandard13 - System.Collections (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Collections.NonGeneric (>= 4.3) - framework: >= net462, >= netstandard15 - System.Collections.Specialized (>= 4.3) - framework: >= netstandard15 - System.ComponentModel (>= 4.3) - framework: netstandard10, >= netstandard15 - System.ComponentModel.Primitives (>= 4.3) - framework: net45, >= net462, netstandard10, >= netstandard15, winv4.5, wpv8.0, wpav8.1 - System.Globalization (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Linq (>= 4.3) - framework: >= netstandard15 - System.Reflection (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Reflection.Extensions (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Reflection.Primitives (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Reflection.TypeExtensions (>= 4.3) - framework: >= netstandard15 - System.Resources.ResourceManager (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Runtime (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Runtime.Extensions (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Threading (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Console (4.3) - framework: >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: >= netstandard13 - System.Diagnostics.Debug (4.3) - framework: net46, >= net46, >= netstandard10, netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Diagnostics.DiagnosticSource (4.3) - framework: netstandard13, >= netstandard16 - System.Collections (>= 4.3) - framework: netstandard11, >= netstandard13 - System.Diagnostics.Tracing (>= 4.3) - framework: netstandard11, >= netstandard13 - System.Reflection (>= 4.3) - framework: netstandard11, >= netstandard13 - System.Runtime (>= 4.3) - framework: netstandard11, >= netstandard13 - System.Threading (>= 4.3) - framework: netstandard11, >= netstandard13 - System.Diagnostics.FileVersionInfo (4.3) - framework: >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, >= netstandard13 - System.Globalization (>= 4.3) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.IO.FileSystem (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.IO.FileSystem.Primitives (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Reflection.Metadata (>= 1.4.1) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: >= netstandard13 - System.Diagnostics.StackTrace (4.3) - framework: >= net46, >= netstandard13 - System.IO.FileSystem (>= 4.3) - framework: >= netstandard13 - System.Reflection (>= 4.3) - framework: >= netstandard13 - System.Reflection.Metadata (>= 1.4.1) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Diagnostics.Tools (4.3) - framework: >= net46, >= netstandard10 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, >= netstandard10 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, >= netstandard10 - System.Runtime (>= 4.3) - framework: dnxcore50, >= netstandard10 - System.Diagnostics.Tracing (4.3) - framework: net46, >= net46, >= netstandard11, netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15 - System.Dynamic.Runtime (4.3) - framework: >= net46, netstandard10, >= netstandard13 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Linq (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Linq.Expressions (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.ObjectModel (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Reflection (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Reflection.Emit (>= 4.3) - framework: >= netstandard13 - System.Reflection.Emit.ILGeneration (>= 4.3) - framework: >= netstandard13 - System.Reflection.Primitives (>= 4.3) - framework: >= netstandard13 - System.Reflection.TypeExtensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Globalization (4.3) - framework: net46, >= net46, >= netstandard10, netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Globalization.Calendars (4.3) - framework: >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: >= netstandard13 - System.Globalization (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Globalization.Extensions (4.3) - framework: >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - System.Globalization (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: >= netstandard13 - System.IO (4.3) - framework: net46, >= net46, >= netstandard10, netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Threading.Tasks (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.IO.Compression (4.3) - framework: >= netstandard11 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - runtime.native.System (>= 4.3) - framework: >= netstandard13 - runtime.native.System.IO.Compression (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Buffers (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.IO (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime.Handles (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading.Tasks (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.IO.Compression.ZipFile (4.3) - framework: >= netstandard13 - System.Buffers (>= 4.3) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard13 - System.IO.Compression (>= 4.3) - framework: >= netstandard13 - System.IO.FileSystem (>= 4.3) - framework: >= netstandard13 - System.IO.FileSystem.Primitives (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: >= netstandard13 - System.IO.FileSystem (4.3) - framework: >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard13 - System.IO.FileSystem.Primitives (>= 4.3) - framework: >= net46, >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Handles (>= 4.3) - framework: >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: >= netstandard13 - System.Threading.Tasks (>= 4.3) - framework: >= netstandard13 - System.IO.FileSystem.Primitives (4.3) - framework: >= net46, >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Linq (4.3) - framework: net46, >= net46, >= netstandard10, netstandard14 - System.Collections (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard16 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard16 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Linq.Expressions (4.3) - framework: >= net46, >= netstandard10 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.IO (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Linq (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.ObjectModel (>= 4.3) - framework: >= netstandard16 - System.Reflection (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard16 - System.Reflection.Emit (>= 4.3) - framework: >= netstandard16 - System.Reflection.Emit.ILGeneration (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Reflection.Emit.Lightweight (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Reflection.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Reflection.Primitives (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Reflection.TypeExtensions (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard16 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Net.Http (4.3.1) - framework: >= netstandard11 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard13, >= netstandard16 - Microsoft.Win32.Primitives (>= 4.3) - framework: netstandard13 - runtime.native.System (>= 4.3) - framework: >= netstandard16 - runtime.native.System.Net.Http (>= 4.3) - framework: >= netstandard16 - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - framework: >= netstandard16 - System.Collections (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Diagnostics.DiagnosticSource (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Diagnostics.Tracing (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Globalization (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Globalization.Extensions (>= 4.3) - framework: >= netstandard16 - System.IO (>= 4.3) - framework: dnxcore50, netstandard11, netstandard13, >= netstandard16 - System.IO.Compression (>= 4.3) - framework: netstandard13 - System.IO.FileSystem (>= 4.3) - framework: >= netstandard16 - System.Net.Primitives (>= 4.3) - framework: dnxcore50, netstandard11, netstandard13, >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard11, netstandard13, >= netstandard16 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Runtime.Handles (>= 4.3) - framework: netstandard13, >= netstandard16 - System.Runtime.InteropServices (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Security.Cryptography.Algorithms (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.Encoding (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.OpenSsl (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.Primitives (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.X509Certificates (>= 4.3) - framework: >= net46, dnxcore50, netstandard13, >= netstandard16 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, netstandard11, netstandard13, >= netstandard16 - System.Threading (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Threading.Tasks (>= 4.3) - framework: dnxcore50, netstandard11, netstandard13, >= netstandard16 - System.Net.Primitives (4.3) - framework: >= netstandard10 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, netstandard11, >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, netstandard11, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, netstandard11, >= netstandard13 - System.Runtime.Handles (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Net.Sockets (4.3) - framework: >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard13 - System.Net.Primitives (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Threading.Tasks (>= 4.3) - framework: >= netstandard13 - System.ObjectModel (4.3) - framework: >= net46, >= netstandard10 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Reactive (3.1.1) - System.Reactive.PlatformServices (>= 3.1.1) - System.Reactive.Windows.Threading (>= 3.1.1) - framework: >= net45, winv4.5.1, wpav8.1 - System.Reactive.WindowsRuntime (>= 3.1.1) - framework: winv4.5.1, wpav8.1 - System.Reactive.Core (3.1.1) - framework: >= net45, >= netstandard10, winv4.5.1, wpav8.1 - System.Reactive.Interfaces (>= 3.1.1) - framework: >= net45, >= netstandard10, netcore10 - System.Reactive.Interfaces (3.1.1) - framework: >= net45, >= netstandard10 - System.Reactive.Linq (3.1.1) - System.Reactive.Core (>= 3.1.1) - framework: >= net45, >= netstandard10 - System.Runtime.InteropServices.WindowsRuntime (>= 4.0.1) - framework: >= netstandard10 - System.Reactive.PlatformServices (3.1.1) - System.Reactive.Linq (>= 3.1.1) - System.Reactive.Windows.Threading (3.1.1) - framework: >= net45, winv4.5.1, wpav8.1 - System.Reactive.Core (>= 3.1.1) - System.Reactive.WindowsRuntime (3.1.1) - framework: winv4.5.1, wpav8.1 - System.Reactive.Linq (>= 3.1.1) - System.Reflection (4.3) - framework: net46, >= net46, >= netstandard10, netstandard11, netstandard12, netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.IO (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Reflection.Primitives (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Reflection.Emit (4.3) - framework: >= net46, >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard11 - System.Reflection (>= 4.3) - framework: >= netstandard11 - System.Reflection.Emit.ILGeneration (>= 4.3) - framework: >= netstandard11 - System.Reflection.Primitives (>= 4.3) - framework: >= netstandard11 - System.Runtime (>= 4.3) - framework: >= netstandard11 - System.Reflection.Emit.ILGeneration (4.3) - framework: >= net46, >= netstandard13 - System.Reflection (>= 4.3) - framework: >= netstandard10 - System.Reflection.Primitives (>= 4.3) - framework: >= netstandard10 - System.Runtime (>= 4.3) - framework: >= netstandard10 - System.Reflection.Emit.Lightweight (4.3) - framework: >= net46, >= netstandard16 - System.Reflection (>= 4.3) - framework: >= netstandard10 - System.Reflection.Emit.ILGeneration (>= 4.3) - framework: >= netstandard10 - System.Reflection.Primitives (>= 4.3) - framework: >= netstandard10 - System.Runtime (>= 4.3) - framework: >= netstandard10 - System.Reflection.Extensions (4.3) - framework: >= net46, >= netstandard10 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, >= netstandard10 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, >= netstandard10 - System.Reflection (>= 4.3) - framework: dnxcore50, >= netstandard10 - System.Runtime (>= 4.3) - framework: dnxcore50, >= netstandard10 - System.Reflection.Metadata (1.4.2) - System.Collections (>= 4.3) - framework: >= netstandard11 - System.Collections.Immutable (>= 1.1.37) - framework: portable-net45+win8 - System.Collections.Immutable (>= 1.3.1) - framework: >= net45, >= netstandard11, monoandroid, monotouch, xamarinios, xamarinmac, winv4.5, wpav8.1 - System.Diagnostics.Debug (>= 4.3) - framework: >= netstandard11 - System.IO (>= 4.3) - framework: >= netstandard11 - System.IO.Compression (>= 4.3) - framework: >= netstandard11 - System.Linq (>= 4.3) - framework: >= netstandard11 - System.Reflection (>= 4.3) - framework: >= netstandard11 - System.Reflection.Extensions (>= 4.3) - framework: >= netstandard11 - System.Reflection.Primitives (>= 4.3) - framework: >= netstandard11 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard11 - System.Runtime (>= 4.3) - framework: >= netstandard11 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard11 - System.Runtime.InteropServices (>= 4.3) - framework: >= netstandard11 - System.Text.Encoding (>= 4.3) - framework: >= netstandard11 - System.Text.Encoding.Extensions (>= 4.3) - framework: >= netstandard11 - System.Threading (>= 4.3) - framework: >= netstandard11 - System.Reflection.Primitives (4.3) - framework: net46, >= net46, >= netstandard10, netstandard11, netstandard12, netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, >= netstandard10 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, >= netstandard10 - System.Runtime (>= 4.3) - framework: dnxcore50, >= netstandard10 - System.Reflection.TypeExtensions (4.3) - framework: >= net46, >= netstandard13 - System.Reflection (>= 4.3) - framework: >= net462, dnxcore50, netstandard13, >= netstandard15 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard15 - System.Resources.ResourceManager (4.3) - framework: net46, >= net46, >= netstandard10, netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, >= netstandard10 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, >= netstandard10 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard10 - System.Reflection (>= 4.3) - framework: dnxcore50, >= netstandard10 - System.Runtime (>= 4.3) - framework: dnxcore50, >= netstandard10 - System.Runtime (4.3) - framework: >= net45, >= netstandard10, netstandard11, netstandard12, netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, netstandard12, netstandard13, >= netstandard15 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, netstandard12, netstandard13, >= netstandard15 - System.Runtime.Extensions (4.3) - framework: net46, >= net46, >= netstandard10, netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Runtime.Handles (4.3) - framework: net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.InteropServices (4.3) - framework: net46, >= net46, >= netstandard11, netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15, netcore11 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15, netcore11 - System.Reflection (>= 4.3) - framework: dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15, netcore11 - System.Reflection.Primitives (>= 4.3) - framework: dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15, netcore11 - System.Runtime (>= 4.3) - framework: net462, >= net463, dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15, netcore11 - System.Runtime.Handles (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard15, netcore11 - System.Runtime.InteropServices.RuntimeInformation (4.3) - framework: >= netstandard11 - runtime.native.System (>= 4.3) - framework: >= netstandard11 - System.Reflection (>= 4.3) - framework: dnxcore50, >= netstandard11 - System.Reflection.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard11 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard11 - System.Runtime (>= 4.3) - framework: dnxcore50, >= netstandard11 - System.Runtime.InteropServices (>= 4.3) - framework: >= netstandard11 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard11 - System.Runtime.InteropServices.WindowsRuntime (4.3) - framework: >= netstandard10 - System.Runtime (>= 4.3) - framework: dnxcore50, >= netstandard10 - System.Runtime.Numerics (4.3) - framework: net46, >= net46, >= netstandard11 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime.Serialization.Formatters (4.3) - framework: >= netstandard13 - System.Collections (>= 4.3) - framework: >= netstandard14 - System.Reflection (>= 4.3) - framework: >= netstandard14 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard14 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Serialization.Primitives (>= 4.3) - framework: >= net46, >= netstandard13 - System.Runtime.Serialization.Primitives (4.3) - framework: netstandard10, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Security.Cryptography.Algorithms (4.3) - framework: net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, >= netstandard16 - runtime.native.System.Security.Cryptography.Apple (>= 4.3) - framework: >= netstandard16 - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - framework: >= netstandard16 - System.Collections (>= 4.3) - framework: >= netstandard16 - System.IO (>= 4.3) - framework: >= net463, dnxcore50, netstandard13, netstandard14, >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime (>= 4.3) - framework: >= net463, dnxcore50, netstandard13, netstandard14, >= netstandard16 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime.Handles (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime.InteropServices (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime.Numerics (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.Encoding (>= 4.3) - framework: >= net463, dnxcore50, >= netstandard16 - System.Security.Cryptography.Primitives (>= 4.3) - framework: net46, net461, >= net463, dnxcore50, netstandard13, netstandard14, >= netstandard16 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Security.Cryptography.Cng (4.3) - framework: >= net46, >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - framework: netstandard14, >= netstandard16 - System.IO (>= 4.3) - framework: netstandard13, netstandard14, >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: netstandard14, >= netstandard16 - System.Runtime (>= 4.3) - framework: netstandard13, netstandard14, >= netstandard16 - System.Runtime.Extensions (>= 4.3) - framework: netstandard14, >= netstandard16 - System.Runtime.Handles (>= 4.3) - framework: netstandard13, netstandard14, >= netstandard16 - System.Runtime.InteropServices (>= 4.3) - framework: netstandard14, >= netstandard16 - System.Security.Cryptography.Algorithms (>= 4.3) - framework: net46, net461, >= net463, netstandard13, netstandard14, >= netstandard16 - System.Security.Cryptography.Encoding (>= 4.3) - framework: netstandard14, >= netstandard16 - System.Security.Cryptography.Primitives (>= 4.3) - framework: net46, net461, >= net463, netstandard13, netstandard14, >= netstandard16 - System.Text.Encoding (>= 4.3) - framework: netstandard14, >= netstandard16 - System.Security.Cryptography.Csp (4.3) - framework: >= net46, >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard13 - System.Reflection (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Runtime.Handles (>= 4.3) - framework: >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: >= netstandard13 - System.Security.Cryptography.Algorithms (>= 4.3) - framework: >= net46, >= netstandard13 - System.Security.Cryptography.Encoding (>= 4.3) - framework: >= netstandard13 - System.Security.Cryptography.Primitives (>= 4.3) - framework: >= net46, >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: >= netstandard13 - System.Threading (>= 4.3) - framework: >= netstandard13 - System.Security.Cryptography.Encoding (4.3) - framework: net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - framework: >= netstandard13 - System.Collections (>= 4.3) - framework: >= netstandard13 - System.Collections.Concurrent (>= 4.3) - framework: >= netstandard13 - System.Linq (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Runtime.Handles (>= 4.3) - framework: >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: >= netstandard13 - System.Security.Cryptography.Primitives (>= 4.3) - framework: >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: >= netstandard13 - System.Security.Cryptography.OpenSsl (4.3) - framework: >= net46, >= netstandard16 - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - framework: >= net463, >= netstandard16, monoandroid, monotouch, xamarinios, xamarinmac - System.Collections (>= 4.3) - framework: >= netstandard16 - System.IO (>= 4.3) - framework: >= net463, >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard16 - System.Runtime (>= 4.3) - framework: >= net463, >= netstandard16 - System.Runtime.Extensions (>= 4.3) - framework: >= net463, >= netstandard16 - System.Runtime.Handles (>= 4.3) - framework: >= netstandard16 - System.Runtime.InteropServices (>= 4.3) - framework: >= netstandard16 - System.Runtime.Numerics (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.Algorithms (>= 4.3) - framework: >= net463, >= netstandard16 - System.Security.Cryptography.Encoding (>= 4.3) - framework: >= net463, >= netstandard16 - System.Security.Cryptography.Primitives (>= 4.3) - framework: >= net463, >= netstandard16 - System.Text.Encoding (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.Primitives (4.3) - framework: net46, >= net46, >= netstandard13, netstandard14 - System.Diagnostics.Debug (>= 4.3) - framework: >= netstandard13 - System.Globalization (>= 4.3) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Threading (>= 4.3) - framework: >= netstandard13 - System.Threading.Tasks (>= 4.3) - framework: >= netstandard13 - System.Security.Cryptography.X509Certificates (4.3) - framework: >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, >= netstandard16 - runtime.native.System (>= 4.3) - framework: >= netstandard16 - runtime.native.System.Net.Http (>= 4.3) - framework: >= netstandard16 - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - framework: >= netstandard16 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Diagnostics.Debug (>= 4.3) - framework: >= netstandard16 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Globalization.Calendars (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.IO (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.IO.FileSystem (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.IO.FileSystem.Primitives (>= 4.3) - framework: >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard13, netstandard14, >= netstandard16 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime.Handles (>= 4.3) - framework: dnxcore50, netstandard13, netstandard14, >= netstandard16 - System.Runtime.InteropServices (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime.Numerics (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Security.Cryptography.Algorithms (>= 4.3) - framework: net46, >= net461, dnxcore50, netstandard13, netstandard14, >= netstandard16 - System.Security.Cryptography.Cng (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Security.Cryptography.Csp (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.Encoding (>= 4.3) - framework: net46, >= net461, dnxcore50, netstandard13, netstandard14, >= netstandard16 - System.Security.Cryptography.OpenSsl (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.Primitives (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Text.Encoding (4.3) - framework: net46, >= net46, >= netstandard10, netstandard11, netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Text.Encoding.CodePages (4.3) - framework: >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - System.Collections (>= 4.3) - framework: >= netstandard13 - System.Globalization (>= 4.3) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard13 - System.Reflection (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Runtime.Handles (>= 4.3) - framework: >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: >= netstandard13 - System.Threading (>= 4.3) - framework: >= netstandard13 - System.Text.Encoding.Extensions (4.3) - framework: >= net46, >= netstandard10 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Text.RegularExpressions (4.3) - framework: >= net46, >= netstandard10 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard16, netcore11 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Threading (4.3) - framework: net46, >= net46, >= netstandard10, netstandard13, netstandard14 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Threading.Tasks (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Threading.Tasks (4.3) - framework: >= net45, >= netstandard10, netstandard11, netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Threading.Tasks.Extensions (4.3) - framework: >= net46, >= netstandard13 - System.Collections (>= 4.3) - framework: >= netstandard10 - System.Runtime (>= 4.3) - framework: >= netstandard10 - System.Threading.Tasks (>= 4.3) - framework: >= netstandard10 - System.Threading.Tasks.Parallel (4.3) - framework: >= net46, >= netstandard13 - System.Collections.Concurrent (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Tracing (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading.Tasks (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Threading.Thread (4.3) - framework: >= net46, >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Threading.Timer (4.3) - framework: >= netstandard12 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, >= netstandard12 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, >= netstandard12 - System.Runtime (>= 4.3) - framework: dnxcore50, >= netstandard12 - System.Xml.ReaderWriter (4.3) - framework: >= net46, >= netstandard10 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.IO (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.IO.FileSystem (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.IO.FileSystem.Primitives (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Text.Encoding.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Text.RegularExpressions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading.Tasks (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Threading.Tasks.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Xml.XDocument (4.3) - framework: >= net46, >= netstandard10 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Tools (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.IO (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Reflection (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Xml.ReaderWriter (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Xml.XmlDocument (4.3) - framework: >= net46, >= netstandard13 - System.Collections (>= 4.3) - framework: >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: >= netstandard13 - System.Globalization (>= 4.3) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: >= netstandard13 - System.Threading (>= 4.3) - framework: >= netstandard13 - System.Xml.ReaderWriter (>= 4.3) - framework: >= netstandard13 - System.Xml.XPath (4.3) - framework: >= net46, >= netstandard13 - System.Collections (>= 4.3) - framework: >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: >= netstandard13 - System.Globalization (>= 4.3) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Threading (>= 4.3) - framework: >= netstandard13 - System.Xml.ReaderWriter (>= 4.3) - framework: >= netstandard13 - System.Xml.XPath.XDocument (4.3) - framework: >= net46, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: >= netstandard13 - System.Linq (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Threading (>= 4.3) - framework: >= netstandard13 - System.Xml.ReaderWriter (>= 4.3) - framework: >= netstandard13 - System.Xml.XDocument (>= 4.3) - framework: >= netstandard13 - System.Xml.XPath (>= 4.3) - framework: >= net46, >= netstandard13 - Wave (8.0) - xunit (2.2.0-beta5-build3474) - xunit.assert (2.2.0-beta5-build3474) - xunit.core (2.2.0-beta5-build3474) - xunit.abstractions (2.0.1-rc2) - System.Collections (>= 4.0.11-rc2-24027) - framework: >= netstandard10 - System.Diagnostics.Tools (>= 4.0.1-rc2-24027) - framework: >= netstandard10 - System.Reflection (>= 4.1.0-rc2-24027) - framework: >= netstandard10 - System.Runtime (>= 4.1.0-rc2-24027) - framework: >= netstandard10 - xunit.assert (2.2.0-beta5-build3474) - NETStandard.Library (>= 1.6) - framework: >= netstandard10 - xunit.core (2.2.0-beta5-build3474) - xunit.extensibility.core (2.2.0-beta5-build3474) - xunit.extensibility.execution (2.2.0-beta5-build3474) - xunit.extensibility.core (2.2.0-beta5-build3474) - NETStandard.Library (>= 1.6) - framework: >= netstandard10 - xunit.abstractions (>= 2.0.1) - framework: >= netstandard10, portable-net45+win8+wp8+wpa81 - xunit.extensibility.execution (2.2.0-beta5-build3474) - NETStandard.Library (>= 1.6) - framework: >= netstandard10 - xunit.extensibility.core (2.2.0-beta5-build3474) - framework: >= netstandard10, portable-net45+win8+wp8+wpa81 + GROUP build NUGET remote: https://www.nuget.org/api/v2 - Elasticsearch.Net (5.0.1) - framework: net45, >= net46, >= netstandard13 - Microsoft.CSharp (>= 4.0.1) - framework: >= netstandard13 - NETStandard.Library (>= 1.6) - framework: >= netstandard13 - System.Collections.Specialized (>= 4.0.1) - framework: >= netstandard13 - System.ComponentModel.TypeConverter (>= 4.1) - framework: >= netstandard13 - System.Dynamic.Runtime (>= 4.0.11) - framework: >= netstandard13 - System.Reflection.TypeExtensions (>= 4.1) - framework: >= netstandard13 - System.Runtime.Serialization.Primitives (>= 4.1.1) - framework: >= netstandard13 - FAKE (4.50) + Elasticsearch.Net (5.3) - framework: net45 + FAKE (4.57.4) FSharp.Data (2.3.2) Zlib.Portable (>= 1.11) - framework: >= netstandard11, portable-net45+sl5+win8, portable-net45+win8, portable-net45+win8+wp8+wpa81 - gitlink (2.4.1) - Microsoft.CSharp (4.3) - framework: net45, >= net46, >= netstandard13 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Dynamic.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Linq (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Linq.Expressions (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.ObjectModel (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Reflection (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Reflection.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Reflection.Primitives (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Reflection.TypeExtensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard13 - Microsoft.NETCore.Platforms (1.1) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Targets (1.1) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.Win32.Primitives (4.3) - framework: net45, >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - NEST (5.0.1) - Elasticsearch.Net (>= 5.0.1) - framework: net45, >= net46, >= netstandard13 - NETStandard.Library (>= 1.6) - framework: >= netstandard13 + NEST (5.3) - framework: net45 + Elasticsearch.Net (>= 5.3 < 6.0) - framework: net45, >= net46, >= netstandard13 Newtonsoft.Json (>= 9.0 < 10.0) - framework: net45, >= net46, >= netstandard13 - System.Collections.Specialized (>= 4.0.1) - framework: >= netstandard13 - System.Linq.Queryable (>= 4.0.1) - framework: >= netstandard13 - System.Reflection.TypeExtensions (>= 4.1) - framework: >= netstandard13 - NETStandard.Library (1.6.1) - framework: net45, >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard10 - Microsoft.Win32.Primitives (>= 4.3) - framework: >= net46, >= netstandard13 - System.AppContext (>= 4.3) - framework: >= net46, >= netstandard13 - System.Collections (>= 4.3) - framework: >= netstandard10 - System.Collections.Concurrent (>= 4.3) - framework: >= net45, >= netstandard11 - System.Console (>= 4.3) - framework: >= net46, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: >= netstandard10 - System.Diagnostics.Tools (>= 4.3) - framework: >= netstandard10 - System.Diagnostics.Tracing (>= 4.3) - framework: >= net45, >= netstandard11 - System.Globalization (>= 4.3) - framework: >= netstandard10 - System.Globalization.Calendars (>= 4.3) - framework: >= net46, >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard10 - System.IO.Compression (>= 4.3) - framework: >= net45, >= netstandard11 - System.IO.Compression.ZipFile (>= 4.3) - framework: >= net46, >= netstandard13 - System.IO.FileSystem (>= 4.3) - framework: >= net46, >= netstandard13 - System.IO.FileSystem.Primitives (>= 4.3) - framework: >= net46, >= netstandard13 - System.Linq (>= 4.3) - framework: >= netstandard10 - System.Linq.Expressions (>= 4.3) - framework: >= netstandard10 - System.Net.Http (>= 4.3) - framework: >= net45, >= netstandard11 - System.Net.Primitives (>= 4.3) - framework: >= netstandard10 - System.Net.Sockets (>= 4.3) - framework: >= net46, >= netstandard13 - System.ObjectModel (>= 4.3) - framework: >= netstandard10 - System.Reflection (>= 4.3) - framework: >= netstandard10 - System.Reflection.Extensions (>= 4.3) - framework: >= netstandard10 - System.Reflection.Primitives (>= 4.3) - framework: >= netstandard10 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard10 - System.Runtime (>= 4.3) - framework: >= netstandard10 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard10 - System.Runtime.Handles (>= 4.3) - framework: >= net46, >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: >= net45, >= netstandard11 - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - framework: >= net45, >= netstandard11 - System.Runtime.Numerics (>= 4.3) - framework: >= net45, >= netstandard11 - System.Security.Cryptography.Algorithms (>= 4.3) - framework: >= net46, >= netstandard13 - System.Security.Cryptography.Encoding (>= 4.3) - framework: >= net46, >= netstandard13 - System.Security.Cryptography.Primitives (>= 4.3) - framework: >= net46, >= netstandard13 - System.Security.Cryptography.X509Certificates (>= 4.3) - framework: >= net46, >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: >= netstandard10 - System.Text.Encoding.Extensions (>= 4.3) - framework: >= netstandard10 - System.Text.RegularExpressions (>= 4.3) - framework: >= netstandard10 - System.Threading (>= 4.3) - framework: >= netstandard10 - System.Threading.Tasks (>= 4.3) - framework: >= netstandard10 - System.Threading.Timer (>= 4.3) - framework: >= net451, >= netstandard12 - System.Xml.ReaderWriter (>= 4.3) - framework: >= netstandard10 - System.Xml.XDocument (>= 4.3) - framework: >= netstandard10 - Newtonsoft.Json (9.0.1) - framework: net45, >= net46, >= netstandard13 - Microsoft.CSharp (>= 4.0.1) - framework: >= netstandard10 - System.Collections (>= 4.0.11) - framework: >= netstandard10 - System.Diagnostics.Debug (>= 4.0.11) - framework: >= netstandard10 - System.Dynamic.Runtime (>= 4.0.11) - framework: >= netstandard10 - System.Globalization (>= 4.0.11) - framework: >= netstandard10 - System.IO (>= 4.1) - framework: >= netstandard10 - System.Linq (>= 4.1) - framework: >= netstandard10 - System.Linq.Expressions (>= 4.1) - framework: >= netstandard10 - System.ObjectModel (>= 4.0.12) - framework: >= netstandard10 - System.Reflection (>= 4.1) - framework: >= netstandard10 - System.Reflection.Extensions (>= 4.0.1) - framework: >= netstandard10 - System.Resources.ResourceManager (>= 4.0.1) - framework: >= netstandard10 - System.Runtime (>= 4.1) - framework: >= netstandard10 - System.Runtime.Extensions (>= 4.1) - framework: >= netstandard10 - System.Runtime.Serialization.Primitives (>= 4.1.1) - framework: >= netstandard10 - System.Text.Encoding (>= 4.0.11) - framework: >= netstandard10 - System.Text.Encoding.Extensions (>= 4.0.11) - framework: >= netstandard10 - System.Text.RegularExpressions (>= 4.1) - framework: >= netstandard10 - System.Threading (>= 4.0.11) - framework: >= netstandard10 - System.Threading.Tasks (>= 4.0.11) - framework: >= netstandard10 - System.Xml.ReaderWriter (>= 4.0.11) - framework: >= netstandard10 - System.Xml.XDocument (>= 4.0.11) - framework: >= netstandard10 - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - runtime.native.System (4.3) - framework: net45, >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3) - framework: net45, >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Http (4.3) - framework: net45, >= net46, >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3) - framework: net45, net46, >= net46, >= netstandard16 - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - framework: net45, net46, >= net46, >= netstandard16 - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - System.AppContext (4.3) - framework: >= net46, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Buffers (4.3) - framework: net45, >= net46, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: >= netstandard11 - System.Diagnostics.Tracing (>= 4.3) - framework: >= netstandard11 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard11 - System.Runtime (>= 4.3) - framework: >= netstandard11 - System.Threading (>= 4.3) - framework: >= netstandard11 - System.Collections (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Collections.Concurrent (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Tracing (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Reflection (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading.Tasks (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Collections.NonGeneric (4.3) - framework: net45, >= net46, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: >= netstandard13 - System.Globalization (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Threading (>= 4.3) - framework: >= netstandard13 - System.Collections.Specialized (4.3) - framework: net45, >= net46, >= netstandard13 - System.Collections.NonGeneric (>= 4.3) - framework: >= netstandard13 - System.Globalization (>= 4.3) - framework: >= netstandard13 - System.Globalization.Extensions (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Threading (>= 4.3) - framework: >= netstandard13 - System.ComponentModel (4.3) - framework: net45, >= net46, >= netstandard15 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.ComponentModel.Primitives (4.3) - framework: net45, >= net462, >= netstandard15 - System.ComponentModel (>= 4.3) - framework: >= netstandard10 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard10 - System.Runtime (>= 4.3) - framework: >= netstandard10 - System.ComponentModel.TypeConverter (4.3) - framework: net45, >= net46, >= netstandard13 - System.Collections (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Collections.NonGeneric (>= 4.3) - framework: >= net462, >= netstandard15 - System.Collections.Specialized (>= 4.3) - framework: >= netstandard15 - System.ComponentModel (>= 4.3) - framework: netstandard10, >= netstandard15 - System.ComponentModel.Primitives (>= 4.3) - framework: net45, >= net462, netstandard10, >= netstandard15, winv4.5, wpv8.0, wpav8.1 - System.Globalization (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Linq (>= 4.3) - framework: >= netstandard15 - System.Reflection (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Reflection.Extensions (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Reflection.Primitives (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Reflection.TypeExtensions (>= 4.3) - framework: >= netstandard15 - System.Resources.ResourceManager (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Runtime (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Runtime.Extensions (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Threading (>= 4.3) - framework: netstandard10, >= netstandard15 - System.Console (4.3) - framework: >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: >= netstandard13 - System.Diagnostics.Debug (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Diagnostics.DiagnosticSource (4.3) - framework: >= net46, netstandard13, >= netstandard16 - System.Collections (>= 4.3) - framework: netstandard11, >= netstandard13 - System.Diagnostics.Tracing (>= 4.3) - framework: netstandard11, >= netstandard13 - System.Reflection (>= 4.3) - framework: netstandard11, >= netstandard13 - System.Runtime (>= 4.3) - framework: netstandard11, >= netstandard13 - System.Threading (>= 4.3) - framework: netstandard11, >= netstandard13 - System.Diagnostics.Tools (4.3) - framework: net45, >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, >= netstandard10 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, >= netstandard10 - System.Runtime (>= 4.3) - framework: dnxcore50, >= netstandard10 - System.Diagnostics.Tracing (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15 - System.Dynamic.Runtime (4.3) - framework: net45, >= net46, >= netstandard13 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Linq (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Linq.Expressions (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.ObjectModel (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Reflection (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Reflection.Emit (>= 4.3) - framework: >= netstandard13 - System.Reflection.Emit.ILGeneration (>= 4.3) - framework: >= netstandard13 - System.Reflection.Primitives (>= 4.3) - framework: >= netstandard13 - System.Reflection.TypeExtensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Globalization (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Globalization.Calendars (4.3) - framework: >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: >= netstandard13 - System.Globalization (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Globalization.Extensions (4.3) - framework: net45, >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - System.Globalization (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: >= netstandard13 - System.IO (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Threading.Tasks (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.IO.Compression (4.3) - framework: net45, >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - runtime.native.System (>= 4.3) - framework: >= netstandard13 - runtime.native.System.IO.Compression (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Buffers (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.IO (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime.Handles (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading.Tasks (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.IO.Compression.ZipFile (4.3) - framework: >= net46, >= netstandard13 - System.Buffers (>= 4.3) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard13 - System.IO.Compression (>= 4.3) - framework: >= netstandard13 - System.IO.FileSystem (>= 4.3) - framework: >= netstandard13 - System.IO.FileSystem.Primitives (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: >= netstandard13 - System.IO.FileSystem (4.3) - framework: net45, >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard13 - System.IO.FileSystem.Primitives (>= 4.3) - framework: >= net46, >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Handles (>= 4.3) - framework: >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: >= netstandard13 - System.Threading.Tasks (>= 4.3) - framework: >= netstandard13 - System.IO.FileSystem.Primitives (4.3) - framework: net45, >= net46, >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Linq (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - System.Collections (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard16 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard16 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Linq.Expressions (4.3) - framework: net45, >= net46, >= netstandard13 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.IO (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Linq (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.ObjectModel (>= 4.3) - framework: >= netstandard16 - System.Reflection (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard16 - System.Reflection.Emit (>= 4.3) - framework: >= netstandard16 - System.Reflection.Emit.ILGeneration (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Reflection.Emit.Lightweight (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Reflection.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Reflection.Primitives (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Reflection.TypeExtensions (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard16 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Linq.Queryable (4.3) - framework: >= netstandard13 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Linq (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Linq.Expressions (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Reflection (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Reflection.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Net.Http (4.3) - framework: net45, >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard13, >= netstandard16 - Microsoft.Win32.Primitives (>= 4.3) - framework: netstandard13 - runtime.native.System (>= 4.3) - framework: >= netstandard16 - runtime.native.System.Net.Http (>= 4.3) - framework: >= netstandard16 - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - framework: >= netstandard16 - System.Collections (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Diagnostics.DiagnosticSource (>= 4.3) - framework: >= net46, dnxcore50, netstandard13, >= netstandard16 - System.Diagnostics.Tracing (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Globalization (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Globalization.Extensions (>= 4.3) - framework: >= netstandard16 - System.IO (>= 4.3) - framework: dnxcore50, netstandard11, netstandard13, >= netstandard16 - System.IO.Compression (>= 4.3) - framework: netstandard13 - System.IO.FileSystem (>= 4.3) - framework: >= netstandard16 - System.Net.Primitives (>= 4.3) - framework: dnxcore50, netstandard11, netstandard13, >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard11, netstandard13, >= netstandard16 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Runtime.Handles (>= 4.3) - framework: netstandard13, >= netstandard16 - System.Runtime.InteropServices (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Security.Cryptography.Algorithms (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.Encoding (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.OpenSsl (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.Primitives (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.X509Certificates (>= 4.3) - framework: >= net46, dnxcore50, netstandard13, >= netstandard16 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, netstandard11, netstandard13, >= netstandard16 - System.Threading (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard16 - System.Threading.Tasks (>= 4.3) - framework: dnxcore50, netstandard11, netstandard13, >= netstandard16 - System.Net.Primitives (4.3) - framework: net45, >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, netstandard11, >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, netstandard11, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, netstandard11, >= netstandard13 - System.Runtime.Handles (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Net.Sockets (4.3) - framework: >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard13 - System.Net.Primitives (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Threading.Tasks (>= 4.3) - framework: >= netstandard13 - System.ObjectModel (4.3) - framework: net45, >= net46, >= netstandard13 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Reflection (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.IO (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Reflection.Primitives (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Reflection.Emit (4.3) - framework: net45, >= net46, >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard11 - System.Reflection (>= 4.3) - framework: >= netstandard11 - System.Reflection.Emit.ILGeneration (>= 4.3) - framework: >= netstandard11 - System.Reflection.Primitives (>= 4.3) - framework: >= netstandard11 - System.Runtime (>= 4.3) - framework: >= netstandard11 - System.Reflection.Emit.ILGeneration (4.3) - framework: net45, >= net46, >= netstandard13 - System.Reflection (>= 4.3) - framework: >= netstandard10 - System.Reflection.Primitives (>= 4.3) - framework: >= netstandard10 - System.Runtime (>= 4.3) - framework: >= netstandard10 - System.Reflection.Emit.Lightweight (4.3) - framework: net45, >= net46, >= netstandard16 - System.Reflection (>= 4.3) - framework: >= netstandard10 - System.Reflection.Emit.ILGeneration (>= 4.3) - framework: >= netstandard10 - System.Reflection.Primitives (>= 4.3) - framework: >= netstandard10 - System.Runtime (>= 4.3) - framework: >= netstandard10 - System.Reflection.Extensions (4.3) - framework: net45, >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, >= netstandard10 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, >= netstandard10 - System.Reflection (>= 4.3) - framework: dnxcore50, >= netstandard10 - System.Runtime (>= 4.3) - framework: dnxcore50, >= netstandard10 - System.Reflection.Primitives (4.3) - framework: net45, net46, >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, >= netstandard10 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, >= netstandard10 - System.Runtime (>= 4.3) - framework: dnxcore50, >= netstandard10 - System.Reflection.TypeExtensions (4.3) - framework: net45, >= net46, >= netstandard13 - System.Reflection (>= 4.3) - framework: >= net462, dnxcore50, netstandard13, >= netstandard15 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard15 - System.Resources.ResourceManager (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, >= netstandard10 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, >= netstandard10 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard10 - System.Reflection (>= 4.3) - framework: dnxcore50, >= netstandard10 - System.Runtime (>= 4.3) - framework: dnxcore50, >= netstandard10 - System.Runtime (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, netstandard12, netstandard13, >= netstandard15 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, netstandard12, netstandard13, >= netstandard15 - System.Runtime.Extensions (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard15 - System.Runtime.Handles (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.InteropServices (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15 - System.Reflection (>= 4.3) - framework: dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15 - System.Reflection.Primitives (>= 4.3) - framework: dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15 - System.Runtime (>= 4.3) - framework: net462, >= net463, dnxcore50, netstandard11, netstandard12, netstandard13, >= netstandard15 - System.Runtime.Handles (>= 4.3) - framework: dnxcore50, netstandard13, >= netstandard15 - System.Runtime.InteropServices.RuntimeInformation (4.3) - framework: net45, >= net46, >= netstandard13 - runtime.native.System (>= 4.3) - framework: >= netstandard11 - System.Reflection (>= 4.3) - framework: dnxcore50, >= netstandard11 - System.Reflection.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard11 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard11 - System.Runtime (>= 4.3) - framework: dnxcore50, >= netstandard11 - System.Runtime.InteropServices (>= 4.3) - framework: >= netstandard11 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard11 - System.Runtime.Numerics (4.3) - framework: net45, net46, >= net46, >= netstandard13 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard11, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime.Serialization.Primitives (4.3) - framework: net45, >= net46, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Security.Cryptography.Algorithms (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, >= netstandard16 - runtime.native.System.Security.Cryptography.Apple (>= 4.3) - framework: >= netstandard16 - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - framework: >= netstandard16 - System.Collections (>= 4.3) - framework: >= netstandard16 - System.IO (>= 4.3) - framework: >= net463, dnxcore50, netstandard13, netstandard14, >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime (>= 4.3) - framework: >= net463, dnxcore50, netstandard13, netstandard14, >= netstandard16 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime.Handles (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime.InteropServices (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime.Numerics (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.Encoding (>= 4.3) - framework: >= net463, dnxcore50, >= netstandard16 - System.Security.Cryptography.Primitives (>= 4.3) - framework: net46, net461, >= net463, dnxcore50, netstandard13, netstandard14, >= netstandard16 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Security.Cryptography.Cng (4.3) - framework: >= net46, >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - framework: netstandard14, >= netstandard16 - System.IO (>= 4.3) - framework: netstandard13, netstandard14, >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: netstandard14, >= netstandard16 - System.Runtime (>= 4.3) - framework: netstandard13, netstandard14, >= netstandard16 - System.Runtime.Extensions (>= 4.3) - framework: netstandard14, >= netstandard16 - System.Runtime.Handles (>= 4.3) - framework: netstandard13, netstandard14, >= netstandard16 - System.Runtime.InteropServices (>= 4.3) - framework: netstandard14, >= netstandard16 - System.Security.Cryptography.Algorithms (>= 4.3) - framework: net46, net461, >= net463, netstandard13, netstandard14, >= netstandard16 - System.Security.Cryptography.Encoding (>= 4.3) - framework: netstandard14, >= netstandard16 - System.Security.Cryptography.Primitives (>= 4.3) - framework: net46, net461, >= net463, netstandard13, netstandard14, >= netstandard16 - System.Text.Encoding (>= 4.3) - framework: netstandard14, >= netstandard16 - System.Security.Cryptography.Csp (4.3) - framework: >= net46, >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard13 - System.Reflection (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Runtime.Handles (>= 4.3) - framework: >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: >= netstandard13 - System.Security.Cryptography.Algorithms (>= 4.3) - framework: >= net46, >= netstandard13 - System.Security.Cryptography.Encoding (>= 4.3) - framework: >= netstandard13 - System.Security.Cryptography.Primitives (>= 4.3) - framework: >= net46, >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: >= netstandard13 - System.Threading (>= 4.3) - framework: >= netstandard13 - System.Security.Cryptography.Encoding (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: >= netstandard13 - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - framework: >= netstandard13 - System.Collections (>= 4.3) - framework: >= netstandard13 - System.Collections.Concurrent (>= 4.3) - framework: >= netstandard13 - System.Linq (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: >= netstandard13 - System.Runtime.Handles (>= 4.3) - framework: >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: >= netstandard13 - System.Security.Cryptography.Primitives (>= 4.3) - framework: >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: >= netstandard13 - System.Security.Cryptography.OpenSsl (4.3) - framework: net45, >= net46, >= netstandard16 - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - framework: >= net463, >= netstandard16, monoandroid, monotouch, xamarinios, xamarinmac - System.Collections (>= 4.3) - framework: >= netstandard16 - System.IO (>= 4.3) - framework: >= net463, >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard16 - System.Runtime (>= 4.3) - framework: >= net463, >= netstandard16 - System.Runtime.Extensions (>= 4.3) - framework: >= net463, >= netstandard16 - System.Runtime.Handles (>= 4.3) - framework: >= netstandard16 - System.Runtime.InteropServices (>= 4.3) - framework: >= netstandard16 - System.Runtime.Numerics (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.Algorithms (>= 4.3) - framework: >= net463, >= netstandard16 - System.Security.Cryptography.Encoding (>= 4.3) - framework: >= net463, >= netstandard16 - System.Security.Cryptography.Primitives (>= 4.3) - framework: >= net463, >= netstandard16 - System.Text.Encoding (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.Primitives (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - System.Diagnostics.Debug (>= 4.3) - framework: >= netstandard13 - System.Globalization (>= 4.3) - framework: >= netstandard13 - System.IO (>= 4.3) - framework: >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: >= netstandard13 - System.Runtime (>= 4.3) - framework: >= netstandard13 - System.Threading (>= 4.3) - framework: >= netstandard13 - System.Threading.Tasks (>= 4.3) - framework: >= netstandard13 - System.Security.Cryptography.X509Certificates (4.3) - framework: >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, >= netstandard16 - runtime.native.System (>= 4.3) - framework: >= netstandard16 - runtime.native.System.Net.Http (>= 4.3) - framework: >= netstandard16 - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - framework: >= netstandard16 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Diagnostics.Debug (>= 4.3) - framework: >= netstandard16 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Globalization.Calendars (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.IO (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.IO.FileSystem (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.IO.FileSystem.Primitives (>= 4.3) - framework: >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard13, netstandard14, >= netstandard16 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime.Handles (>= 4.3) - framework: dnxcore50, netstandard13, netstandard14, >= netstandard16 - System.Runtime.InteropServices (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime.Numerics (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Security.Cryptography.Algorithms (>= 4.3) - framework: net46, >= net461, dnxcore50, netstandard13, netstandard14, >= netstandard16 - System.Security.Cryptography.Cng (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Security.Cryptography.Csp (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.Encoding (>= 4.3) - framework: net46, >= net461, dnxcore50, netstandard13, netstandard14, >= netstandard16 - System.Security.Cryptography.OpenSsl (>= 4.3) - framework: >= netstandard16 - System.Security.Cryptography.Primitives (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Text.Encoding (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Text.Encoding.Extensions (4.3) - framework: net45, >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Text.RegularExpressions (4.3) - framework: net45, >= net46, >= netstandard13 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, netstandard13, >= netstandard16 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard16 - System.Threading (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Threading.Tasks (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Threading.Tasks (4.3) - framework: net45, net46, >= net46, >= netstandard13, netstandard14 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Threading.Tasks.Extensions (4.3) - framework: net45, >= net46, >= netstandard13 - System.Collections (>= 4.3) - framework: >= netstandard10 - System.Runtime (>= 4.3) - framework: >= netstandard10 - System.Threading.Tasks (>= 4.3) - framework: >= netstandard10 - System.Threading.Timer (4.3) - framework: >= net46, >= netstandard13 - Microsoft.NETCore.Platforms (>= 1.1) - framework: dnxcore50, >= netstandard12 - Microsoft.NETCore.Targets (>= 1.1) - framework: dnxcore50, >= netstandard12 - System.Runtime (>= 4.3) - framework: dnxcore50, >= netstandard12 - System.Xml.ReaderWriter (4.3) - framework: net45, >= net46, >= netstandard13 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.IO (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.IO.FileSystem (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.IO.FileSystem.Primitives (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Text.Encoding.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Text.RegularExpressions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading.Tasks (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Threading.Tasks.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Xml.XDocument (4.3) - framework: net45, >= net46, >= netstandard13 - System.Collections (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Diagnostics.Tools (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Globalization (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.IO (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Reflection (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Resources.ResourceManager (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Runtime (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - System.Runtime.Extensions (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Text.Encoding (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Threading (>= 4.3) - framework: dnxcore50, >= netstandard13 - System.Xml.ReaderWriter (>= 4.3) - framework: dnxcore50, netstandard10, >= netstandard13 - xunit.runner.console (2.2.0-beta5-build3474) + Newtonsoft.Json (9.0.1) - framework: net45 Zlib.Portable (1.11) - framework: >= netstandard11, portable-net45+sl5+win8, portable-net45+win8, portable-net45+win8+wp8+wpa81 diff --git a/src/CodeGeneration/ApiGenerator/ApiGenerator.csproj b/src/CodeGeneration/ApiGenerator/ApiGenerator.csproj index 966b67b49a4..3029f7bc7dc 100644 --- a/src/CodeGeneration/ApiGenerator/ApiGenerator.csproj +++ b/src/CodeGeneration/ApiGenerator/ApiGenerator.csproj @@ -1,1655 +1,16 @@ - - - + - Debug - AnyCPU - {56A87048-9065-459B-826D-3DF68B409845} Exe - Properties - ApiGenerator - ApiGenerator - v4.5 - 512 - ..\ - false + net46 + 6.0.0 + alpha - - AnyCPU - true - full - false - bin\Net45\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Net45\Release\ - TRACE - prompt - 4 - 1591,1572,1571,1573,1587,1570 - - - - - True - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - - - ..\..\..\packages\CsQuery\lib\net40\CsQuery.dll - True - True - - - - - - - - - ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll - False - True - - - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\net20\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\net35\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\net40\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\netstandard1.0\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\netstandard1.3\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wpa81+wp8\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wpa81+wp8\Newtonsoft.Json.dll - True - True - - - - - - - - - ..\..\..\packages\RazorMachine\lib\net40\System.Web.Razor.dll - True - True - - - ..\..\..\packages\RazorMachine\lib\net40\Xipton.Razor.dll - True - True - - - - - - - - - ..\..\..\packages\ShellProgressBar\lib\NET4\ShellProgressBar.dll - True - True - - - - - - - - - True - - - ..\..\..\packages\System.AppContext\lib\net46\System.AppContext.dll - True - True - - - - - - - True - - - ..\..\..\packages\System.AppContext\lib\net463\System.AppContext.dll - True - True - - - - - - - ..\..\..\packages\System.AppContext\ref\netstandard1.3\System.AppContext.dll - False - True - - - - - - - ..\..\..\packages\System.AppContext\lib\netstandard1.6\System.AppContext.dll - True - True - - - - - - - - - ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll - True - True - - - - - - - - - ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll - False - True - - - - - - - ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll - False - True - - - - - - - - - ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll - True - True - - - - - - - - - ..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll - True - True - - - - - - - - - ..\..\..\packages\System.Collections.Specialized\lib\netstandard1.3\System.Collections.Specialized.dll - True - True - - - - - - - - - ..\..\..\packages\System.ComponentModel\ref\netstandard1.0\System.ComponentModel.dll - False - True - - - - - - - ..\..\..\packages\System.ComponentModel\lib\netstandard1.3\System.ComponentModel.dll - True - True - - - - - - - - - ..\..\..\packages\System.ComponentModel.Primitives\lib\netstandard1.0\System.ComponentModel.Primitives.dll - True - True - - - - - - - - - ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.0\System.ComponentModel.TypeConverter.dll - True - True - - - - - - - ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll - True - True - - - - - - - - - ..\..\..\packages\System.Console\lib\net46\System.Console.dll - True - True - - - - - - - ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll - False - True - - - - - - - - - ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.0\System.Diagnostics.Debug.dll - False - True - - - - - - - ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll - False - True - - - - - - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll - True - True - - - - - - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - - - - - ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.1\System.Diagnostics.Tracing.dll - False - True - - - - - - - ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.2\System.Diagnostics.Tracing.dll - False - True - - - - - - - ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll - False - True - - - - - - - ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll - False - True - - - - - - - - - ..\..\..\packages\System.Dynamic.Runtime\ref\netstandard1.0\System.Dynamic.Runtime.dll - False - True - - - - - - - ..\..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll - True - True - - - - - - - - - ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll - False - True - - - - - - - ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll - False - True - - - - - - - - - ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll - True - True - - - - - - - ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll - False - True - - - - - - - - - ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll - False - True - - - - - - - - - ..\..\..\packages\System.IO\lib\net462\System.IO.dll - True - True - - - - - - - ..\..\..\packages\System.IO\ref\netstandard1.0\System.IO.dll - False - True - - - - - - - ..\..\..\packages\System.IO\ref\netstandard1.3\System.IO.dll - False - True - - - - - - - ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll - False - True - - - - - - - - - ..\..\..\packages\System.IO.Compression\ref\netstandard1.1\System.IO.Compression.dll - False - True - - - - - - - ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll - False - True - - - - - - - - - ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll - True - True - - - - - - - - - ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll - True - True - - - - - - - ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False - True - - - - - - - - - ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll - True - True - - - - - - - ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll - True - True - - - - - - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - - - - - ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll - True - True - - - - - - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - - - - - ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll - False - True - - - - - - - ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll - False - True - - - - - - - ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll - True - True - - - - - - - - - ..\..\..\packages\System.Net.Http\ref\netstandard1.1\System.Net.Http.dll - False - True - - - - - - - ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll - False - True - - - - - - - - - ..\..\..\packages\System.Net.Primitives\ref\netstandard1.0\System.Net.Primitives.dll - False - True - - - - - - - ..\..\..\packages\System.Net.Primitives\ref\netstandard1.1\System.Net.Primitives.dll - False - True - - - - - - - ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll - False - True - - - - - - - - - ..\..\..\packages\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll - False - True - - - - - - - - - ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll - True - True - - - - - - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - - - - - ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll - False - True - - - - - - - ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll - False - True - - - - - - - ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll - False - True - - - - - - - - - ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll - True - True - - - - - - - - - ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll - True - True - - - - - - - - - ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll - True - True - - - - - - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net46\System.Reflection.TypeExtensions.dll - True - True - - - - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net462\System.Reflection.TypeExtensions.dll - True - True - - - - - - - ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll - False - True - - - - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll - True - True - - - - - - - - - True - - - - - - - True - - - ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll - True - True - - - - - - - ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime\ref\netstandard1.2\System.Runtime.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime\ref\netstandard1.3\System.Runtime.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll - False - True - - - - - - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - - - - - ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll - False - True - - - - - - - - - ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll - False - True - - - - - - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll - True - True - - - - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - - - - - ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.1\System.Runtime.InteropServices.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.2\System.Runtime.InteropServices.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll - False - True - - - - - - - - - ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll - True - True - - - - - - - - - True - - - - - - - ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll - True - True - - - - - - - - - ..\..\..\packages\System.Runtime.Serialization.Formatters\ref\netstandard1.3\System.Runtime.Serialization.Formatters.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.Serialization.Formatters\lib\netstandard1.4\System.Runtime.Serialization.Formatters.dll - True - True - - - - - - - - - ..\..\..\packages\System.Runtime.Serialization.Primitives\ref\netstandard1.0\System.Runtime.Serialization.Primitives.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.Serialization.Primitives\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll - True - True - - - - - - - - - ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll - False - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll - False - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll - False - True - - - - - - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net46\System.Security.Cryptography.Cng.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net461\System.Security.Cryptography.Cng.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net463\System.Security.Cryptography.Cng.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll - False - True - - - - - - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll - False - True - - - - - - - - - ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll - False - True - - - - - - - - - ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll - True - True - - - - - - - - - ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll - True - True - - - - - - - - - ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.3\System.Security.Cryptography.X509Certificates.dll - False - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll - False - True - - - - - - - - - ..\..\..\packages\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll - False - True - - - - - - - ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll - False - True - - - - - - - - - ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll - False - True - - - - - - - ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll - False - True - - - - - - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - - - - - ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.0\System.Text.RegularExpressions.dll - False - True - - - - - - - ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll - False - True - - - - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll - True - True - - - - - - - - - ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll - True - True - - - - - - - - - ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll - False - True - - - - - - - ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll - False - True - - - - - - - - - ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll - True - True - - - - - - - - - ..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll - True - True - - - - - - - ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll - True - True - - - - - - - - - ..\..\..\packages\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll - True - True - - - - - - - - - ..\..\..\packages\System.Xml.XmlDocument\lib\net46\System.Xml.XmlDocument.dll - True - True - - - - - - - ..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll - True - True - - - - - \ No newline at end of file + diff --git a/src/CodeGeneration/ApiGenerator/Properties/AssemblyInfo.cs b/src/CodeGeneration/ApiGenerator/Properties/AssemblyInfo.cs deleted file mode 100644 index f01a95517a6..00000000000 --- a/src/CodeGeneration/ApiGenerator/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -// -using System.Reflection; - -[assembly: AssemblyTitleAttribute("ApiGenerator")] -[assembly: AssemblyCopyrightAttribute("Elasticsearch 2017")] -[assembly: AssemblyDescriptionAttribute("")] -[assembly: AssemblyCompanyAttribute("Elasticsearch")] -[assembly: AssemblyConfigurationAttribute("Release")] -[assembly: AssemblyVersionAttribute("2.0.0")] -[assembly: AssemblyFileVersionAttribute("2.5.4")] -[assembly: AssemblyInformationalVersionAttribute("2.5.4")] -namespace System { - internal static class AssemblyVersionInformation { - internal const System.String AssemblyTitle = "ApiGenerator"; - internal const System.String AssemblyCopyright = "Elasticsearch 2017"; - internal const System.String AssemblyDescription = ""; - internal const System.String AssemblyCompany = "Elasticsearch"; - internal const System.String AssemblyConfiguration = "Release"; - internal const System.String AssemblyVersion = "2.0.0"; - internal const System.String AssemblyFileVersion = "2.5.4"; - internal const System.String AssemblyInformationalVersion = "2.5.4"; - } -} diff --git a/src/CodeGeneration/ApiGenerator/paket.references b/src/CodeGeneration/ApiGenerator/paket.references index 4652622c78d..5f282702bb0 100644 --- a/src/CodeGeneration/ApiGenerator/paket.references +++ b/src/CodeGeneration/ApiGenerator/paket.references @@ -1,4 +1 @@ -CsQuery -Newtonsoft.Json -RazorMachine -ShellProgressBar \ No newline at end of file + \ No newline at end of file diff --git a/src/CodeGeneration/DocGenerator/DocGenerator.csproj b/src/CodeGeneration/DocGenerator/DocGenerator.csproj index 54e12ac2177..1c56d79df07 100644 --- a/src/CodeGeneration/DocGenerator/DocGenerator.csproj +++ b/src/CodeGeneration/DocGenerator/DocGenerator.csproj @@ -1,1854 +1,21 @@ - - - + - Debug - AnyCPU - {98400F59-4BA8-4534-9A78-9C7FA0B42901} + Exe - Properties - DocGenerator - DocGenerator - v4.5.2 - 512 - - true - false + net46 + 6.0.0 + alpha - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {e97ccf40-0ba6-43fe-9f2d-58d454134088} - Elasticsearch.Net - - - {072BA7DA-7B60-407D-8B6E-95E3186BE70C} - Nest - - - - - - - ..\..\..\packages\AsciiDocNet\lib\net45\AsciiDocNet.dll - True - True - - - - - - - ..\..\..\packages\AsciiDocNet\lib\netstandard1.3\AsciiDocNet.dll - True - True - - - - - - True - - - True - + + + + + + + + + - - - - - ..\..\..\packages\Microsoft.CodeAnalysis.Common\lib\net45\Microsoft.CodeAnalysis.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.CodeAnalysis.Common\lib\netstandard1.3\Microsoft.CodeAnalysis.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.CodeAnalysis.Common\lib\portable-net45+win8\Microsoft.CodeAnalysis.dll - True - True - - - - - - - - - ..\..\..\packages\Microsoft.CodeAnalysis.CSharp\lib\net45\Microsoft.CodeAnalysis.CSharp.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.CodeAnalysis.CSharp\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.CodeAnalysis.CSharp\lib\portable-net45+win8\Microsoft.CodeAnalysis.CSharp.dll - True - True - - - - - - - - - ..\..\..\packages\Microsoft.CodeAnalysis.CSharp.Workspaces\lib\net45\Microsoft.CodeAnalysis.CSharp.Workspaces.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.CodeAnalysis.CSharp.Workspaces\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.Workspaces.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.CodeAnalysis.CSharp.Workspaces\lib\portable-net45+win8\Microsoft.CodeAnalysis.CSharp.Workspaces.dll - True - True - - - - - - - - - ..\..\..\packages\Microsoft.CodeAnalysis.Workspaces.Common\lib\net45\Microsoft.CodeAnalysis.Workspaces.dll - True - True - - - ..\..\..\packages\Microsoft.CodeAnalysis.Workspaces.Common\lib\net45\Microsoft.CodeAnalysis.Workspaces.Desktop.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.CodeAnalysis.Workspaces.Common\lib\netstandard1.3\Microsoft.CodeAnalysis.Workspaces.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.CodeAnalysis.Workspaces.Common\lib\portable-net45+win8\Microsoft.CodeAnalysis.Workspaces.dll - True - True - - - - - - - - - ..\..\..\packages\Microsoft.Composition\lib\portable-net45+win8+wp8+wpa81\System.Composition.AttributedModel.dll - True - True - - - ..\..\..\packages\Microsoft.Composition\lib\portable-net45+win8+wp8+wpa81\System.Composition.Convention.dll - True - True - - - ..\..\..\packages\Microsoft.Composition\lib\portable-net45+win8+wp8+wpa81\System.Composition.Hosting.dll - True - True - - - ..\..\..\packages\Microsoft.Composition\lib\portable-net45+win8+wp8+wpa81\System.Composition.Runtime.dll - True - True - - - ..\..\..\packages\Microsoft.Composition\lib\portable-net45+win8+wp8+wpa81\System.Composition.TypedParts.dll - True - True - - - - - - - - - ..\..\..\packages\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll - False - True - - - - - - - ..\..\..\packages\Microsoft.CSharp\lib\netstandard1.3\Microsoft.CSharp.dll - True - True - - - - - - - - - ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll - False - True - - - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\net20\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\net35\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\net40\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\netstandard1.0\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\netstandard1.3\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wpa81+wp8\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wpa81+wp8\Newtonsoft.Json.dll - True - True - - - - - - - - - ..\..\..\packages\NuDoq\lib\net35\NuDoq.dll - True - True - - - - - - - - - True - - - ..\..\..\packages\System.AppContext\lib\net46\System.AppContext.dll - True - True - - - - - - - True - - - ..\..\..\packages\System.AppContext\lib\net463\System.AppContext.dll - True - True - - - - - - - ..\..\..\packages\System.AppContext\ref\netstandard1.3\System.AppContext.dll - False - True - - - - - - - ..\..\..\packages\System.AppContext\lib\netstandard1.6\System.AppContext.dll - True - True - - - - - - - - - ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll - True - True - - - - - - - - - ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll - False - True - - - - - - - ..\..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll - False - True - - - - - - - - - ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll - True - True - - - - - - - - - ..\..\..\packages\System.Collections.Immutable\lib\netstandard1.0\System.Collections.Immutable.dll - True - True - - - - - - - ..\..\..\packages\System.Collections.Immutable\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll - True - True - - - - - - - - - ..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll - True - True - - - - - - - - - ..\..\..\packages\System.Collections.Specialized\lib\netstandard1.3\System.Collections.Specialized.dll - True - True - - - - - - - - - ..\..\..\packages\System.ComponentModel\ref\netstandard1.0\System.ComponentModel.dll - False - True - - - - - - - ..\..\..\packages\System.ComponentModel\lib\netstandard1.3\System.ComponentModel.dll - True - True - - - - - - - - - ..\..\..\packages\System.ComponentModel.Annotations\lib\netstandard1.4\System.ComponentModel.Annotations.dll - True - True - - - - - - - - - ..\..\..\packages\System.ComponentModel.Primitives\lib\netstandard1.0\System.ComponentModel.Primitives.dll - True - True - - - - - - - - - ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.0\System.ComponentModel.TypeConverter.dll - True - True - - - - - - - ..\..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll - True - True - - - - - - - - - ..\..\..\packages\System.Console\lib\net46\System.Console.dll - True - True - - - - - - - ..\..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll - False - True - - - - - - - - - ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.0\System.Diagnostics.Debug.dll - False - True - - - - - - - ..\..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll - False - True - - - - - - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll - True - True - - - - - - - - - ..\..\..\packages\System.Diagnostics.FileVersionInfo\lib\net46\System.Diagnostics.FileVersionInfo.dll - True - True - - - - - - - ..\..\..\packages\System.Diagnostics.FileVersionInfo\ref\netstandard1.3\System.Diagnostics.FileVersionInfo.dll - False - True - - - - - - - - - ..\..\..\packages\System.Diagnostics.StackTrace\lib\net46\System.Diagnostics.StackTrace.dll - True - True - - - - - - - ..\..\..\packages\System.Diagnostics.StackTrace\lib\netstandard1.3\System.Diagnostics.StackTrace.dll - True - True - - - - - - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - - - - - ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.1\System.Diagnostics.Tracing.dll - False - True - - - - - - - ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.2\System.Diagnostics.Tracing.dll - False - True - - - - - - - ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll - False - True - - - - - - - ..\..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll - False - True - - - - - - - - - ..\..\..\packages\System.Dynamic.Runtime\ref\netstandard1.0\System.Dynamic.Runtime.dll - False - True - - - - - - - ..\..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll - True - True - - - - - - - - - ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll - False - True - - - - - - - ..\..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll - False - True - - - - - - - - - ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll - True - True - - - - - - - ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll - False - True - - - - - - - - - ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll - False - True - - - - - - - - - ..\..\..\packages\System.IO\lib\net462\System.IO.dll - True - True - - - - - - - ..\..\..\packages\System.IO\ref\netstandard1.0\System.IO.dll - False - True - - - - - - - ..\..\..\packages\System.IO\ref\netstandard1.3\System.IO.dll - False - True - - - - - - - ..\..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll - False - True - - - - - - - - - ..\..\..\packages\System.IO.Compression\ref\netstandard1.1\System.IO.Compression.dll - False - True - - - - - - - ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll - False - True - - - - - - - - - ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll - True - True - - - - - - - - - ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll - True - True - - - - - - - ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False - True - - - - - - - - - ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll - True - True - - - - - - - ..\..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll - True - True - - - - - - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - - - - - ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll - True - True - - - - - - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - - - - - ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll - False - True - - - - - - - ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll - False - True - - - - - - - ..\..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll - True - True - - - - - - - - - ..\..\..\packages\System.Net.Http\ref\netstandard1.1\System.Net.Http.dll - False - True - - - - - - - ..\..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll - False - True - - - - - - - - - ..\..\..\packages\System.Net.Primitives\ref\netstandard1.0\System.Net.Primitives.dll - False - True - - - - - - - ..\..\..\packages\System.Net.Primitives\ref\netstandard1.1\System.Net.Primitives.dll - False - True - - - - - - - ..\..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll - False - True - - - - - - - - - ..\..\..\packages\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll - False - True - - - - - - - - - ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll - True - True - - - - - - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - - - - - ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll - False - True - - - - - - - ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll - False - True - - - - - - - ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll - False - True - - - - - - - - - ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll - True - True - - - - - - - - - ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll - True - True - - - - - - - - - ..\..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll - True - True - - - - - - - - - ..\..\..\packages\System.Reflection.Metadata\lib\netstandard1.1\System.Reflection.Metadata.dll - True - True - - - - - - - ..\..\..\packages\System.Reflection.Metadata\lib\portable-net45+win8\System.Reflection.Metadata.dll - True - True - - - - - - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net46\System.Reflection.TypeExtensions.dll - True - True - - - - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net462\System.Reflection.TypeExtensions.dll - True - True - - - - - - - ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll - False - True - - - - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll - True - True - - - - - - - - - True - - - - - - - True - - - ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll - True - True - - - - - - - ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime\ref\netstandard1.2\System.Runtime.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime\ref\netstandard1.3\System.Runtime.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll - False - True - - - - - - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - - - - - ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll - False - True - - - - - - - - - ..\..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll - False - True - - - - - - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll - True - True - - - - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - - - - - ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.1\System.Runtime.InteropServices.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.2\System.Runtime.InteropServices.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll - False - True - - - - - - - - - ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll - True - True - - - - - - - - - True - - - - - - - ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll - True - True - - - - - - - - - ..\..\..\packages\System.Runtime.Serialization.Formatters\ref\netstandard1.3\System.Runtime.Serialization.Formatters.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.Serialization.Formatters\lib\netstandard1.4\System.Runtime.Serialization.Formatters.dll - True - True - - - - - - - - - ..\..\..\packages\System.Runtime.Serialization.Primitives\ref\netstandard1.0\System.Runtime.Serialization.Primitives.dll - False - True - - - - - - - ..\..\..\packages\System.Runtime.Serialization.Primitives\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll - True - True - - - - - - - - - ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll - False - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll - False - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll - False - True - - - - - - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net46\System.Security.Cryptography.Cng.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net461\System.Security.Cryptography.Cng.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net463\System.Security.Cryptography.Cng.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll - False - True - - - - - - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll - False - True - - - - - - - - - ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll - False - True - - - - - - - - - ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll - True - True - - - - - - - - - ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll - True - True - - - - - - - - - ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.3\System.Security.Cryptography.X509Certificates.dll - False - True - - - - - - - ..\..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll - False - True - - - - - - - - - ..\..\..\packages\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll - False - True - - - - - - - ..\..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll - False - True - - - - - - - - - ..\..\..\packages\System.Text.Encoding.CodePages\lib\net46\System.Text.Encoding.CodePages.dll - True - True - - - - - - - ..\..\..\packages\System.Text.Encoding.CodePages\ref\netstandard1.3\System.Text.Encoding.CodePages.dll - False - True - - - - - - - - - ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll - False - True - - - - - - - ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll - False - True - - - - - - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - - - - - ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.0\System.Text.RegularExpressions.dll - False - True - - - - - - - ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll - False - True - - - - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll - True - True - - - - - - - - - ..\..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll - True - True - - - - - - - - - ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll - False - True - - - - - - - ..\..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll - False - True - - - - - - - - - ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll - True - True - - - - - - - - - ..\..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll - True - True - - - - - - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - - - - - ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll - True - True - - - - - - - - - ..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll - True - True - - - - - - - ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll - True - True - - - - - - - - - True - - - - - - - ..\..\..\packages\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll - True - True - - - - - - - - - ..\..\..\packages\System.Xml.XmlDocument\lib\net46\System.Xml.XmlDocument.dll - True - True - - - - - - - ..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll - True - True - - - - - - - - - ..\..\..\packages\System.Xml.XPath\lib\net46\System.Xml.XPath.dll - True - True - - - - - - - ..\..\..\packages\System.Xml.XPath\lib\netstandard1.3\System.Xml.XPath.dll - True - True - - - - - - - - - ..\..\..\packages\System.Xml.XPath.XDocument\lib\net46\System.Xml.XPath.XDocument.dll - True - True - - - - - - - ..\..\..\packages\System.Xml.XPath.XDocument\lib\netstandard1.3\System.Xml.XPath.XDocument.dll - True - True - - - - - \ No newline at end of file + diff --git a/src/CodeGeneration/DocGenerator/LitUp.cs b/src/CodeGeneration/DocGenerator/LitUp.cs index 659a4750de7..63e584c3360 100644 --- a/src/CodeGeneration/DocGenerator/LitUp.cs +++ b/src/CodeGeneration/DocGenerator/LitUp.cs @@ -45,7 +45,8 @@ public static IEnumerable> GetDocumentFiles(Dicti public static async Task GoAsync(string[] args) { - var workspace = MSBuildWorkspace.Create(); + + var workspace = MSBuildWorkspace.Create(); var testProject = workspace.OpenProjectAsync(GetProjectFile("Tests")); var nestProject = workspace.OpenProjectAsync(GetProjectFile("Nest")); var elasticSearchNetProject = workspace.OpenProjectAsync(GetProjectFile("Elasticsearch.Net")); diff --git a/src/CodeGeneration/DocGenerator/Program.cs b/src/CodeGeneration/DocGenerator/Program.cs index 39fb9b591ce..8244e65a80f 100644 --- a/src/CodeGeneration/DocGenerator/Program.cs +++ b/src/CodeGeneration/DocGenerator/Program.cs @@ -28,16 +28,19 @@ static Program() public static string OutputDirPath { get; } - static void Main(string[] args) + static int Main(string[] args) { try { LitUp.GoAsync(args).Wait(); - } + return 0; + } catch (AggregateException ae) { - throw ae.InnerException ?? ae; - } + var ex = ae.InnerException ?? ae; + Console.WriteLine(ex.Message); + return 1; + } } } } diff --git a/src/CodeGeneration/DocGenerator/Properties/AssemblyInfo.cs b/src/CodeGeneration/DocGenerator/Properties/AssemblyInfo.cs deleted file mode 100644 index d3511b35ebf..00000000000 --- a/src/CodeGeneration/DocGenerator/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -// -using System.Reflection; - -[assembly: AssemblyTitleAttribute("DocGenerator")] -[assembly: AssemblyCopyrightAttribute("Elasticsearch 2017")] -[assembly: AssemblyDescriptionAttribute("")] -[assembly: AssemblyCompanyAttribute("Elasticsearch")] -[assembly: AssemblyConfigurationAttribute("Release")] -[assembly: AssemblyVersionAttribute("2.0.0")] -[assembly: AssemblyFileVersionAttribute("2.5.4")] -[assembly: AssemblyInformationalVersionAttribute("2.5.4")] -namespace System { - internal static class AssemblyVersionInformation { - internal const System.String AssemblyTitle = "DocGenerator"; - internal const System.String AssemblyCopyright = "Elasticsearch 2017"; - internal const System.String AssemblyDescription = ""; - internal const System.String AssemblyCompany = "Elasticsearch"; - internal const System.String AssemblyConfiguration = "Release"; - internal const System.String AssemblyVersion = "2.0.0"; - internal const System.String AssemblyFileVersion = "2.5.4"; - internal const System.String AssemblyInformationalVersion = "2.5.4"; - } -} diff --git a/src/CodeGeneration/DocGenerator/paket.references b/src/CodeGeneration/DocGenerator/paket.references index 7e54cd90512..5f282702bb0 100644 --- a/src/CodeGeneration/DocGenerator/paket.references +++ b/src/CodeGeneration/DocGenerator/paket.references @@ -1,6 +1 @@ -Microsoft.CodeAnalysis.CSharp -Microsoft.CodeAnalysis.CSharp.Workspaces -AsciiDocNet -Newtonsoft.Json -System.Collections.Immutable -NuDoq + \ No newline at end of file diff --git a/src/Elasticsearch.DotNetCoreOnly.sln b/src/Elasticsearch.DotNetCoreOnly.sln new file mode 100644 index 00000000000..91d0d4bfd37 --- /dev/null +++ b/src/Elasticsearch.DotNetCoreOnly.sln @@ -0,0 +1,62 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26124.0 +MinimumVisualStudioVersion = 15.0.26124.0 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nest", "Nest\Nest.csproj", "{9DE47FF2-26DC-440E-9477-6520A19766E1}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Elasticsearch.Net", "Elasticsearch.Net\Elasticsearch.Net.csproj", "{07BC7529-C147-44E5-B7CE-ABC60F46E6FC}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{309A043F-8C57-4019-A1E0-F140AA414D44}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9DE47FF2-26DC-440E-9477-6520A19766E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9DE47FF2-26DC-440E-9477-6520A19766E1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9DE47FF2-26DC-440E-9477-6520A19766E1}.Debug|x64.ActiveCfg = Debug|x64 + {9DE47FF2-26DC-440E-9477-6520A19766E1}.Debug|x64.Build.0 = Debug|x64 + {9DE47FF2-26DC-440E-9477-6520A19766E1}.Debug|x86.ActiveCfg = Debug|x86 + {9DE47FF2-26DC-440E-9477-6520A19766E1}.Debug|x86.Build.0 = Debug|x86 + {9DE47FF2-26DC-440E-9477-6520A19766E1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9DE47FF2-26DC-440E-9477-6520A19766E1}.Release|Any CPU.Build.0 = Release|Any CPU + {9DE47FF2-26DC-440E-9477-6520A19766E1}.Release|x64.ActiveCfg = Release|x64 + {9DE47FF2-26DC-440E-9477-6520A19766E1}.Release|x64.Build.0 = Release|x64 + {9DE47FF2-26DC-440E-9477-6520A19766E1}.Release|x86.ActiveCfg = Release|x86 + {9DE47FF2-26DC-440E-9477-6520A19766E1}.Release|x86.Build.0 = Release|x86 + {07BC7529-C147-44E5-B7CE-ABC60F46E6FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {07BC7529-C147-44E5-B7CE-ABC60F46E6FC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {07BC7529-C147-44E5-B7CE-ABC60F46E6FC}.Debug|x64.ActiveCfg = Debug|x64 + {07BC7529-C147-44E5-B7CE-ABC60F46E6FC}.Debug|x64.Build.0 = Debug|x64 + {07BC7529-C147-44E5-B7CE-ABC60F46E6FC}.Debug|x86.ActiveCfg = Debug|x86 + {07BC7529-C147-44E5-B7CE-ABC60F46E6FC}.Debug|x86.Build.0 = Debug|x86 + {07BC7529-C147-44E5-B7CE-ABC60F46E6FC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {07BC7529-C147-44E5-B7CE-ABC60F46E6FC}.Release|Any CPU.Build.0 = Release|Any CPU + {07BC7529-C147-44E5-B7CE-ABC60F46E6FC}.Release|x64.ActiveCfg = Release|x64 + {07BC7529-C147-44E5-B7CE-ABC60F46E6FC}.Release|x64.Build.0 = Release|x64 + {07BC7529-C147-44E5-B7CE-ABC60F46E6FC}.Release|x86.ActiveCfg = Release|x86 + {07BC7529-C147-44E5-B7CE-ABC60F46E6FC}.Release|x86.Build.0 = Release|x86 + {309A043F-8C57-4019-A1E0-F140AA414D44}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {309A043F-8C57-4019-A1E0-F140AA414D44}.Debug|Any CPU.Build.0 = Debug|Any CPU + {309A043F-8C57-4019-A1E0-F140AA414D44}.Debug|x64.ActiveCfg = Debug|x64 + {309A043F-8C57-4019-A1E0-F140AA414D44}.Debug|x64.Build.0 = Debug|x64 + {309A043F-8C57-4019-A1E0-F140AA414D44}.Debug|x86.ActiveCfg = Debug|x86 + {309A043F-8C57-4019-A1E0-F140AA414D44}.Debug|x86.Build.0 = Debug|x86 + {309A043F-8C57-4019-A1E0-F140AA414D44}.Release|Any CPU.ActiveCfg = Release|Any CPU + {309A043F-8C57-4019-A1E0-F140AA414D44}.Release|Any CPU.Build.0 = Release|Any CPU + {309A043F-8C57-4019-A1E0-F140AA414D44}.Release|x64.ActiveCfg = Release|x64 + {309A043F-8C57-4019-A1E0-F140AA414D44}.Release|x64.Build.0 = Release|x64 + {309A043F-8C57-4019-A1E0-F140AA414D44}.Release|x86.ActiveCfg = Release|x86 + {309A043F-8C57-4019-A1E0-F140AA414D44}.Release|x86.Build.0 = Release|x86 + EndGlobalSection +EndGlobal diff --git a/src/Elasticsearch.Dotnet.sln b/src/Elasticsearch.Dotnet.sln deleted file mode 100644 index df544cfb223..00000000000 --- a/src/Elasticsearch.Dotnet.sln +++ /dev/null @@ -1,33 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Elasticsearch.Net", "Elasticsearch.Net\Elasticsearch.Net.xproj", "{C837B88B-1395-424C-8A6D-BFB5B47B8B8E}" -EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Nest", "Nest\Nest.xproj", "{5CED4B1F-25CF-4632-9EA0-023E7FAFA217}" -EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Tests", "Tests\Tests.xproj", "{0BD06B70-32E2-4C2F-8EFA-B37CC72CB462}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C837B88B-1395-424C-8A6D-BFB5B47B8B8E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C837B88B-1395-424C-8A6D-BFB5B47B8B8E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C837B88B-1395-424C-8A6D-BFB5B47B8B8E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C837B88B-1395-424C-8A6D-BFB5B47B8B8E}.Release|Any CPU.Build.0 = Release|Any CPU - {5CED4B1F-25CF-4632-9EA0-023E7FAFA217}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5CED4B1F-25CF-4632-9EA0-023E7FAFA217}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5CED4B1F-25CF-4632-9EA0-023E7FAFA217}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5CED4B1F-25CF-4632-9EA0-023E7FAFA217}.Release|Any CPU.Build.0 = Release|Any CPU - {0BD06B70-32E2-4C2F-8EFA-B37CC72CB462}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0BD06B70-32E2-4C2F-8EFA-B37CC72CB462}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0BD06B70-32E2-4C2F-8EFA-B37CC72CB462}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0BD06B70-32E2-4C2F-8EFA-B37CC72CB462}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/src/Elasticsearch.Net/Elasticsearch.Net.csproj b/src/Elasticsearch.Net/Elasticsearch.Net.csproj index 7f2d2ac557e..e3fb50de0a1 100644 --- a/src/Elasticsearch.Net/Elasticsearch.Net.csproj +++ b/src/Elasticsearch.Net/Elasticsearch.Net.csproj @@ -1,135 +1,19 @@ - - - + + - Debug - AnyCPU - {E97CCF40-0BA6-43FE-9F2D-58D454134088} - Library - Properties - Elasticsearch.Net - Elasticsearch.Net - v4.5 - 512 - - false + net45;net46;netstandard1.3 + netstandard1.3 - - true - full - false - bin\Debug\net45\ - TRACE;DEBUG;NET45 - prompt - 4 - false - false - AllRules.ruleset - - - pdbonly - true - bin\Release\net45\ - TRACE;NET45 - prompt - 4 - bin\Release\net45\Elasticsearch.Net.XML - 1591,1572,1571,1573,1587,1570 - false - - - true - - - ..\..\build\keys\keypair.snk - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + - - - diff --git a/src/Elasticsearch.Net/Elasticsearch.Net.project.json b/src/Elasticsearch.Net/Elasticsearch.Net.project.json deleted file mode 100644 index faf891318d9..00000000000 --- a/src/Elasticsearch.Net/Elasticsearch.Net.project.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "frameworks": { - "net45": {} - }, - "runtimes": { - "win": {} - } -} \ No newline at end of file diff --git a/src/Elasticsearch.Net/Elasticsearch.Net.xproj b/src/Elasticsearch.Net/Elasticsearch.Net.xproj deleted file mode 100644 index a12dd3568f5..00000000000 --- a/src/Elasticsearch.Net/Elasticsearch.Net.xproj +++ /dev/null @@ -1,26 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - c837b88b-1395-424c-8a6d-bfb5b47b8b8e - Elasticsearch.Net - ..\..\artifacts\obj\$(MSBuildProjectName) - .\bin\ - - - 2.0 - - - True - - - - - - - - \ No newline at end of file diff --git a/src/Elasticsearch.Net/Properties/AssemblyInfo.cs b/src/Elasticsearch.Net/Properties/AssemblyInfo.cs deleted file mode 100644 index 8c72cfd5b0d..00000000000 --- a/src/Elasticsearch.Net/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -// -using System.Reflection; - -[assembly: AssemblyTitleAttribute("Elasticsearch.Net")] -[assembly: AssemblyCopyrightAttribute("Elasticsearch 2017")] -[assembly: AssemblyDescriptionAttribute("Elasticsearch.Net - official low level elasticsearch client")] -[assembly: AssemblyCompanyAttribute("Elasticsearch")] -[assembly: AssemblyConfigurationAttribute("Release")] -[assembly: AssemblyVersionAttribute("2.0.0")] -[assembly: AssemblyFileVersionAttribute("2.5.4")] -[assembly: AssemblyInformationalVersionAttribute("2.5.4")] -namespace System { - internal static class AssemblyVersionInformation { - internal const System.String AssemblyTitle = "Elasticsearch.Net"; - internal const System.String AssemblyCopyright = "Elasticsearch 2017"; - internal const System.String AssemblyDescription = "Elasticsearch.Net - official low level elasticsearch client"; - internal const System.String AssemblyCompany = "Elasticsearch"; - internal const System.String AssemblyConfiguration = "Release"; - internal const System.String AssemblyVersion = "2.0.0"; - internal const System.String AssemblyFileVersion = "2.5.4"; - internal const System.String AssemblyInformationalVersion = "2.5.4"; - } -} diff --git a/src/Elasticsearch.Net/paket.references b/src/Elasticsearch.Net/paket.references index e69de29bb2d..5f282702bb0 100644 --- a/src/Elasticsearch.Net/paket.references +++ b/src/Elasticsearch.Net/paket.references @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/Elasticsearch.Net/project.json b/src/Elasticsearch.Net/project.json deleted file mode 100644 index c2cc81bcef2..00000000000 --- a/src/Elasticsearch.Net/project.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "version": "2.5.4", - "authors": [ - "Elastic and contributors" - ], - "packOptions": { - "owners": [ - "Elastic" - ], - "projectUrl": "https://github.com/elastic/elasticsearch-net", - "licenseUrl": "https://github.com/elastic/elasticsearch-net/blob/master/license.txt", - "requireLicenseAcceptance": false, - "iconUrl": "https://raw.githubusercontent.com/elastic/elasticsearch-net/master/build/nuget-icon.png", - "summary": "Exposes all the elasticsearch API endpoints but leaves you in control of building the request and response bodies. Comes with built in cluster failover/connection pooling support.", - "description": "Exposes all the elasticsearch API endpoints but leaves you in control of building the request and response bodies. Comes with built in cluster failover/connection pooling support.", - "title": "Elasticsearch.NET - Official low level Elasticsearch client", - "tags": [ - "elasticsearch", - "elastic", - "search", - "lucene", - "nest" - ], - "repository": { - "type": "git", - "url": "https://github.com/elastic/elasticsearch-net" - }, - "releaseNotes": "See https://github.com/elastic/elasticsearch-net/releases/tag/2.5.4" - }, - "copyright": "2014-2016 Elasticsearch BV", - "buildOptions": { - "warningsAsErrors": false - }, - "configurations": { - "Debug": { - "buildOptions": { - "define": [ - "DEBUG", - "TRACE" - ] - } - }, - "Release": { - "buildOptions": { - "define": [ - "RELEASE", - "TRACE" - ], - "optimize": true, - "keyFile": "../../build/keys/keypair.snk" - } - } - }, - "dependencies": {}, - "commands": {}, - "frameworks": { - "netstandard1.3": { - "buildOptions": { - "define": [ - "DOTNETCORE" - ] - }, - "dependencies": { - "NETStandard.Library": "1.6.0", - "System.Collections.Specialized": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "Microsoft.CSharp": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0" - } - } - } -} diff --git a/src/Elasticsearch.Net45.sln b/src/Elasticsearch.Net45.sln deleted file mode 100644 index d0b9a6610d6..00000000000 --- a/src/Elasticsearch.Net45.sln +++ /dev/null @@ -1,68 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nest", "Nest\Nest.csproj", "{072BA7DA-7B60-407D-8B6E-95E3186BE70C}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_Build", "_Build", "{432D5575-2347-4D3C-BF8C-3E38410C46CA}" - ProjectSection(SolutionItems) = preProject - ..\.deployment = ..\.deployment - ..\.editorconfig = ..\.editorconfig - ..\.gitignore = ..\.gitignore - ..\.travis.yml = ..\.travis.yml - ..\build.bat = ..\build.bat - ..\build.sh = ..\build.sh - ..\contributing.md = ..\contributing.md - ..\build\Elasticsearch.Net.nuspec = ..\build\Elasticsearch.Net.nuspec - ..\global.json = ..\global.json - ..\license.txt = ..\license.txt - ..\build\NEST.nuspec = ..\build\NEST.nuspec - ..\paket.bat = ..\paket.bat - ..\paket.dependencies = ..\paket.dependencies - ..\readme.md = ..\readme.md - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CodeGeneration", "CodeGeneration", "{93331BEE-0AA0-47B7-B1D2-BD5BD31634D1}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ApiGenerator", "CodeGeneration\ApiGenerator\ApiGenerator.csproj", "{56A87048-9065-459B-826D-3DF68B409845}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Elasticsearch.Net", "Elasticsearch.Net\Elasticsearch.Net.csproj", "{E97CCF40-0BA6-43FE-9F2D-58D454134088}" -EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "scripts", "..\build\scripts\scripts.fsproj", "{28328694-2598-44D3-BB25-8B6C3FBDD3EF}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{37164C11-88EF-4428-803A-9AA24FB8B44D}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {072BA7DA-7B60-407D-8B6E-95E3186BE70C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {072BA7DA-7B60-407D-8B6E-95E3186BE70C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {072BA7DA-7B60-407D-8B6E-95E3186BE70C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {072BA7DA-7B60-407D-8B6E-95E3186BE70C}.Release|Any CPU.Build.0 = Release|Any CPU - {56A87048-9065-459B-826D-3DF68B409845}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {56A87048-9065-459B-826D-3DF68B409845}.Debug|Any CPU.Build.0 = Debug|Any CPU - {56A87048-9065-459B-826D-3DF68B409845}.Release|Any CPU.ActiveCfg = Release|Any CPU - {56A87048-9065-459B-826D-3DF68B409845}.Release|Any CPU.Build.0 = Release|Any CPU - {E97CCF40-0BA6-43FE-9F2D-58D454134088}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E97CCF40-0BA6-43FE-9F2D-58D454134088}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E97CCF40-0BA6-43FE-9F2D-58D454134088}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E97CCF40-0BA6-43FE-9F2D-58D454134088}.Release|Any CPU.Build.0 = Release|Any CPU - {28328694-2598-44D3-BB25-8B6C3FBDD3EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {28328694-2598-44D3-BB25-8B6C3FBDD3EF}.Release|Any CPU.ActiveCfg = Release|Any CPU - {37164C11-88EF-4428-803A-9AA24FB8B44D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {37164C11-88EF-4428-803A-9AA24FB8B44D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {37164C11-88EF-4428-803A-9AA24FB8B44D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {37164C11-88EF-4428-803A-9AA24FB8B44D}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {56A87048-9065-459B-826D-3DF68B409845} = {93331BEE-0AA0-47B7-B1D2-BD5BD31634D1} - {28328694-2598-44D3-BB25-8B6C3FBDD3EF} = {432D5575-2347-4D3C-BF8C-3E38410C46CA} - EndGlobalSection -EndGlobal diff --git a/src/Elasticsearch.sln b/src/Elasticsearch.sln index 2bc54235fe1..a271908dc98 100644 --- a/src/Elasticsearch.sln +++ b/src/Elasticsearch.sln @@ -1,18 +1,18 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 +# Visual Studio 15 +VisualStudioVersion = 15.0.26228.9 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nest", "Nest\Nest.csproj", "{072BA7DA-7B60-407D-8B6E-95E3186BE70C}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Nest", "Nest\Nest.csproj", "{072BA7DA-7B60-407D-8B6E-95E3186BE70C}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_Build", "_Build", "{432D5575-2347-4D3C-BF8C-3E38410C46CA}" ProjectSection(SolutionItems) = preProject - ..\.deployment = ..\.deployment ..\.editorconfig = ..\.editorconfig ..\.gitignore = ..\.gitignore ..\.travis.yml = ..\.travis.yml ..\build.bat = ..\build.bat ..\build.sh = ..\build.sh + ..\build\Clients.Common.targets = ..\build\Clients.Common.targets ..\contributing.md = ..\contributing.md ..\build\Elasticsearch.Net.nuspec = ..\build\Elasticsearch.Net.nuspec ..\global.json = ..\global.json @@ -25,15 +25,15 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_Build", "_Build", "{432D55 EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Code Generation", "Code Generation", "{93331BEE-0AA0-47B7-B1D2-BD5BD31634D1}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ApiGenerator", "CodeGeneration\ApiGenerator\ApiGenerator.csproj", "{56A87048-9065-459B-826D-3DF68B409845}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApiGenerator", "CodeGeneration\ApiGenerator\ApiGenerator.csproj", "{56A87048-9065-459B-826D-3DF68B409845}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Elasticsearch.Net", "Elasticsearch.Net\Elasticsearch.Net.csproj", "{E97CCF40-0BA6-43FE-9F2D-58D454134088}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Elasticsearch.Net", "Elasticsearch.Net\Elasticsearch.Net.csproj", "{E97CCF40-0BA6-43FE-9F2D-58D454134088}" EndProject Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "scripts", "..\build\scripts\scripts.fsproj", "{28328694-2598-44D3-BB25-8B6C3FBDD3EF}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{37164C11-88EF-4428-803A-9AA24FB8B44D}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tests", "Tests\Tests.csproj", "{37164C11-88EF-4428-803A-9AA24FB8B44D}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocGenerator", "CodeGeneration\DocGenerator\DocGenerator.csproj", "{98400F59-4BA8-4534-9A78-9C7FA0B42901}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DocGenerator", "CodeGeneration\DocGenerator\DocGenerator.csproj", "{98400F59-4BA8-4534-9A78-9C7FA0B42901}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/src/Nest/Nest.csproj b/src/Nest/Nest.csproj index 830fd49c131..0fea1e599f8 100644 --- a/src/Nest/Nest.csproj +++ b/src/Nest/Nest.csproj @@ -1,2841 +1,22 @@ - - - + + - Debug - AnyCPU - {072BA7DA-7B60-407D-8B6E-95E3186BE70C} - Library - Properties - Nest - Nest - v4.5 - 512 - - false + net45;net46;netstandard1.3 + netstandard1.3 - - true - full - false - bin\Debug\net45\ - DEBUG;TRACE - prompt - 4 - BasicCorrectnessRules.ruleset - AnyCPU - bin\Debug\net45\Nest.XML - false - 1591,1572,1571,1573,1587,1570 - false - - - pdbonly - True - bin\Release\net45\ - TRACE - prompt - 4 - AllRules.ruleset - bin\Release\net45\Nest.XML - 1591,1572,1571,1573,1587,1570 - false - - - true - - - ..\..\build\keys\keypair.snk - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - False - .NET Framework 3.5 SP1 Client Profile - false - - - False - .NET Framework 3.5 SP1 - true - - - False - Windows Installer 3.1 - true - + + - - - {E97CCF40-0BA6-43FE-9F2D-58D454134088} - Elasticsearch.Net - + + + - - + + + + + - - - - - - - - ..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll - False - True - - - - - - - - - ..\..\packages\Newtonsoft.Json\lib\net20\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\packages\Newtonsoft.Json\lib\net35\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\packages\Newtonsoft.Json\lib\net40\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\packages\Newtonsoft.Json\lib\netstandard1.0\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\packages\Newtonsoft.Json\lib\netstandard1.3\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wpa81+wp8\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wpa81+wp8\Newtonsoft.Json.dll - True - True - - - - - - - - - True - - - ..\..\packages\System.AppContext\lib\net46\System.AppContext.dll - True - True - - - - - - - True - - - ..\..\packages\System.AppContext\lib\net463\System.AppContext.dll - True - True - - - - - - - ..\..\packages\System.AppContext\ref\netstandard1.3\System.AppContext.dll - False - True - - - - - - - ..\..\packages\System.AppContext\lib\netstandard1.6\System.AppContext.dll - True - True - - - - - - - - - ..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll - True - True - - - - - - - - - ..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll - False - True - - - - - - - ..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll - False - True - - - - - - - - - ..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll - True - True - - - - - - - - - ..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll - True - True - - - - - - - - - ..\..\packages\System.Collections.Specialized\lib\netstandard1.3\System.Collections.Specialized.dll - True - True - - - - - - - - - ..\..\packages\System.ComponentModel\ref\netstandard1.0\System.ComponentModel.dll - False - True - - - - - - - ..\..\packages\System.ComponentModel\lib\netstandard1.3\System.ComponentModel.dll - True - True - - - - - - - - - ..\..\packages\System.ComponentModel.Primitives\lib\netstandard1.0\System.ComponentModel.Primitives.dll - True - True - - - - - - - - - ..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.0\System.ComponentModel.TypeConverter.dll - True - True - - - - - - - ..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll - True - True - - - - - - - - - ..\..\packages\System.Console\lib\net46\System.Console.dll - True - True - - - - - - - ..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll - False - True - - - - - - - - - ..\..\packages\System.Diagnostics.Debug\ref\netstandard1.0\System.Diagnostics.Debug.dll - False - True - - - - - - - ..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll - False - True - - - - - - - - - ..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll - True - True - - - - - - - - - ..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - - - - - ..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.1\System.Diagnostics.Tracing.dll - False - True - - - - - - - ..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.2\System.Diagnostics.Tracing.dll - False - True - - - - - - - ..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll - False - True - - - - - - - ..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll - False - True - - - - - - - - - ..\..\packages\System.Dynamic.Runtime\ref\netstandard1.0\System.Dynamic.Runtime.dll - False - True - - - - - - - ..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll - True - True - - - - - - - - - ..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll - False - True - - - - - - - ..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll - False - True - - - - - - - - - ..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll - True - True - - - - - - - ..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll - False - True - - - - - - - - - ..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll - False - True - - - - - - - - - ..\..\packages\System.IO\lib\net462\System.IO.dll - True - True - - - - - - - ..\..\packages\System.IO\ref\netstandard1.0\System.IO.dll - False - True - - - - - - - ..\..\packages\System.IO\ref\netstandard1.3\System.IO.dll - False - True - - - - - - - ..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll - False - True - - - - - - - - - ..\..\packages\System.IO.Compression\ref\netstandard1.1\System.IO.Compression.dll - False - True - - - - - - - ..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll - False - True - - - - - - - - - ..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll - True - True - - - - - - - - - ..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll - True - True - - - - - - - ..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False - True - - - - - - - - - ..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll - True - True - - - - - - - ..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll - True - True - - - - - - - - - ..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - - - - - ..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll - True - True - - - - - - - - - ..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - - - - - ..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll - False - True - - - - - - - ..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll - False - True - - - - - - - ..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll - True - True - - - - - - - - - ..\..\packages\System.Net.Http\ref\netstandard1.1\System.Net.Http.dll - False - True - - - - - - - ..\..\packages\System.Net.Http\ref\netstandard1.3\System.Net.Http.dll - False - True - - - - - - - - - ..\..\packages\System.Net.Primitives\ref\netstandard1.0\System.Net.Primitives.dll - False - True - - - - - - - ..\..\packages\System.Net.Primitives\ref\netstandard1.1\System.Net.Primitives.dll - False - True - - - - - - - ..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll - False - True - - - - - - - - - ..\..\packages\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll - False - True - - - - - - - - - ..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll - True - True - - - - - - - - - ..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - - - - - ..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll - False - True - - - - - - - ..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll - False - True - - - - - - - ..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll - False - True - - - - - - - - - ..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll - True - True - - - - - - - - - ..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll - True - True - - - - - - - - - ..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll - True - True - - - - - - - - - ..\..\packages\System.Reflection.TypeExtensions\lib\net46\System.Reflection.TypeExtensions.dll - True - True - - - - - - - ..\..\packages\System.Reflection.TypeExtensions\lib\net462\System.Reflection.TypeExtensions.dll - True - True - - - - - - - ..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll - False - True - - - - - - - ..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll - True - True - - - - - - - - - True - - - - - - - True - - - ..\..\packages\System.Runtime\lib\net462\System.Runtime.dll - True - True - - - - - - - ..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll - False - True - - - - - - - ..\..\packages\System.Runtime\ref\netstandard1.2\System.Runtime.dll - False - True - - - - - - - ..\..\packages\System.Runtime\ref\netstandard1.3\System.Runtime.dll - False - True - - - - - - - ..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll - False - True - - - - - - - - - ..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - - - - - ..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll - False - True - - - - - - - ..\..\packages\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll - False - True - - - - - - - ..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll - False - True - - - - - - - - - ..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll - False - True - - - - - - - - - ..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll - True - True - - - - - - - ..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - - - - - ..\..\packages\System.Runtime.InteropServices\ref\netstandard1.1\System.Runtime.InteropServices.dll - False - True - - - - - - - ..\..\packages\System.Runtime.InteropServices\ref\netstandard1.2\System.Runtime.InteropServices.dll - False - True - - - - - - - ..\..\packages\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll - False - True - - - - - - - ..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll - False - True - - - - - - - - - ..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll - True - True - - - - - - - - - True - - - - - - - ..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll - False - True - - - - - - - ..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll - True - True - - - - - - - - - ..\..\packages\System.Runtime.Serialization.Formatters\ref\netstandard1.3\System.Runtime.Serialization.Formatters.dll - False - True - - - - - - - ..\..\packages\System.Runtime.Serialization.Formatters\lib\netstandard1.4\System.Runtime.Serialization.Formatters.dll - True - True - - - - - - - - - ..\..\packages\System.Runtime.Serialization.Primitives\ref\netstandard1.0\System.Runtime.Serialization.Primitives.dll - False - True - - - - - - - ..\..\packages\System.Runtime.Serialization.Primitives\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll - True - True - - - - - - - - - ..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll - False - True - - - - - - - ..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll - False - True - - - - - - - ..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll - False - True - - - - - - - - - ..\..\packages\System.Security.Cryptography.Cng\lib\net46\System.Security.Cryptography.Cng.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Cng\lib\net461\System.Security.Cryptography.Cng.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Cng\lib\net463\System.Security.Cryptography.Cng.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll - False - True - - - - - - - - - ..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll - False - True - - - - - - - - - ..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll - False - True - - - - - - - - - ..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll - True - True - - - - - - - - - ..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll - True - True - - - - - - - - - ..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.3\System.Security.Cryptography.X509Certificates.dll - False - True - - - - - - - ..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll - False - True - - - - - - - - - ..\..\packages\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll - False - True - - - - - - - ..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll - False - True - - - - - - - - - ..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll - False - True - - - - - - - ..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll - False - True - - - - - - - - - ..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - - - - - ..\..\packages\System.Text.RegularExpressions\ref\netstandard1.0\System.Text.RegularExpressions.dll - False - True - - - - - - - ..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll - False - True - - - - - - - ..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll - True - True - - - - - - - - - ..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll - True - True - - - - - - - - - ..\..\packages\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll - False - True - - - - - - - ..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll - False - True - - - - - - - - - ..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll - True - True - - - - - - - - - True - - - ..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll - True - True - - - - - - - ..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll - True - True - - - - - - - - - True - - - - - - - ..\..\packages\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll - True - True - - - - - - - - - ..\..\packages\System.Xml.XmlDocument\lib\net46\System.Xml.XmlDocument.dll - True - True - - - - - - - ..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll - True - True - - - - - \ No newline at end of file + + diff --git a/src/Nest/Nest.pidb b/src/Nest/Nest.pidb deleted file mode 100644 index 029fe8a7f68..00000000000 Binary files a/src/Nest/Nest.pidb and /dev/null differ diff --git a/src/Nest/Nest.project.json b/src/Nest/Nest.project.json deleted file mode 100644 index faf891318d9..00000000000 --- a/src/Nest/Nest.project.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "frameworks": { - "net45": {} - }, - "runtimes": { - "win": {} - } -} \ No newline at end of file diff --git a/src/Nest/Nest.xproj b/src/Nest/Nest.xproj deleted file mode 100644 index 610e3e0a394..00000000000 --- a/src/Nest/Nest.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 5ced4b1f-25cf-4632-9ea0-023e7fafa217 - Nest - ..\artifacts\obj\$(MSBuildProjectName) - .\bin\ - - - 2.0 - - - True - - - \ No newline at end of file diff --git a/src/Nest/Properties/AssemblyInfo.cs b/src/Nest/Properties/AssemblyInfo.cs deleted file mode 100644 index e825cc3a661..00000000000 --- a/src/Nest/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -// -using System.Reflection; - -[assembly: AssemblyTitleAttribute("Nest")] -[assembly: AssemblyCopyrightAttribute("Elasticsearch 2017")] -[assembly: AssemblyDescriptionAttribute("NEST - official high level elasticsearch client")] -[assembly: AssemblyCompanyAttribute("Elasticsearch")] -[assembly: AssemblyConfigurationAttribute("Release")] -[assembly: AssemblyVersionAttribute("2.0.0")] -[assembly: AssemblyFileVersionAttribute("2.5.4")] -[assembly: AssemblyInformationalVersionAttribute("2.5.4")] -namespace System { - internal static class AssemblyVersionInformation { - internal const System.String AssemblyTitle = "Nest"; - internal const System.String AssemblyCopyright = "Elasticsearch 2017"; - internal const System.String AssemblyDescription = "NEST - official high level elasticsearch client"; - internal const System.String AssemblyCompany = "Elasticsearch"; - internal const System.String AssemblyConfiguration = "Release"; - internal const System.String AssemblyVersion = "2.0.0"; - internal const System.String AssemblyFileVersion = "2.5.4"; - internal const System.String AssemblyInformationalVersion = "2.5.4"; - } -} diff --git a/src/Nest/paket.references b/src/Nest/paket.references index 1063d003b92..5f282702bb0 100644 --- a/src/Nest/paket.references +++ b/src/Nest/paket.references @@ -1 +1 @@ -Newtonsoft.Json \ No newline at end of file + \ No newline at end of file diff --git a/src/Nest/project.json b/src/Nest/project.json deleted file mode 100644 index 13b127aba02..00000000000 --- a/src/Nest/project.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "version": "2.5.4", - "authors": [ - "Elastic and contributors" - ], - "packOptions": { - "owners": [ - "Elastic" - ], - "projectUrl": "https://github.com/elastic/elasticsearch-net", - "licenseUrl": "https://github.com/elastic/elasticsearch-net/blob/master/license.txt", - "requireLicenseAcceptance": false, - "iconUrl": "https://raw.githubusercontent.com/elastic/elasticsearch-net/master/build/nuget-icon.png", - "summary": "Strongly typed interface to Elasticsearch. Fluent and classic object initializer mappings of requests and responses. Uses and exposes Elasticsearch.Net", - "description": "Strongly typed interface to Elasticsearch. Fluent and classic object initializer mappings of requests and responses. Uses and exposes Elasticsearch.Net", - "title": "NEST - Elasticsearch .NET client", - "tags": [ - "elasticsearch", - "elastic", - "search", - "lucene", - "nest" - ], - "repository": { - "type": "git", - "url": "https://github.com/elastic/elasticsearch-net" - }, - "releaseNotes": "See https://github.com/elastic/elasticsearch-net/releases/tag/2.5.4" - }, - - "copyright": "2014-2016 Elasticsearch BV", - "buildOptions": { - "warningsAsErrors": false - }, - "configurations": { - "Debug": { - "buildOptions": { - "define": [ - "DEBUG", - "TRACE" - ] - } - }, - "Release": { - "buildOptions": { - "define": [ - "RELEASE", - "TRACE" - ], - "optimize": true, - "keyFile": "../../build/keys/keypair.snk" - } - } - }, - "dependencies": { - "Elasticsearch.Net": { - "target": "project" - }, - "Newtonsoft.Json": "10.0.1" - }, - "frameworks": { - "netstandard1.3": { - "buildOptions": { - "define": [ - "DOTNETCORE" - ] - }, - "dependencies": { - "NETStandard.Library": "1.6.0", - "System.Collections.Specialized": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Linq.Queryable": "4.0.1" - } - } - } -} diff --git a/src/Tests/ClientConcepts/HighLevel/Caching/FieldResolverBenchmarkTests.cs b/src/Tests/ClientConcepts/HighLevel/Caching/FieldResolverBenchmarkTests.cs index 95ececa9436..3953dd22956 100644 --- a/src/Tests/ClientConcepts/HighLevel/Caching/FieldResolverBenchmarkTests.cs +++ b/src/Tests/ClientConcepts/HighLevel/Caching/FieldResolverBenchmarkTests.cs @@ -114,8 +114,7 @@ public string Resolve(MemberInfo info) var name = info.Name; - IPropertyMapping propertyMapping = null; - if (this._settings.PropertyMappings.TryGetValue(info, out propertyMapping)) + if (this._settings.PropertyMappings.TryGetValue(info, out IPropertyMapping propertyMapping)) return propertyMapping.Name; var att = ElasticsearchPropertyAttributeBase.From(info); diff --git a/src/Tests/Framework/ManagedElasticsearch/Tasks/InstallationTasks/InstallPlugins.cs b/src/Tests/Framework/ManagedElasticsearch/Tasks/InstallationTasks/InstallPlugins.cs index 6018b935011..14925a76f5e 100644 --- a/src/Tests/Framework/ManagedElasticsearch/Tasks/InstallationTasks/InstallPlugins.cs +++ b/src/Tests/Framework/ManagedElasticsearch/Tasks/InstallationTasks/InstallPlugins.cs @@ -26,8 +26,7 @@ from plugin in ElasticsearchPluginCollection.Supported foreach (var plugin in plugins) { var installParameter = !v.IsSnapshot ? plugin.Moniker : this.DownloadSnapshotIfNeeded(fileSystem, plugin, v); - var installCommand = v.Major >= 5 ? "install --batch" : "install"; - this.ExecuteBinary(fileSystem.PluginBinary, $"install elasticsearch plugin: {plugin.Moniker}", installCommand, installParameter); + this.ExecuteBinary(fileSystem.PluginBinary, $"install elasticsearch plugin: {plugin.Moniker}", "install --batch", installParameter); } } @@ -53,8 +52,15 @@ private void DownloadPluginSnapshot(string downloadLocation, ElasticsearchPlugin if (File.Exists(downloadLocation)) return; var downloadUrl = plugin.SnapshotDownloadUrl(v); Console.WriteLine($"Download plugin snapshot {plugin.Moniker}: {downloadUrl}"); - this.DownloadFile(downloadUrl, downloadLocation); - Console.WriteLine($"Download plugin snapshot {plugin.Moniker}"); + try + { + this.DownloadFile(downloadUrl, downloadLocation); + Console.WriteLine($"Downloaded plugin snapshot {plugin.Moniker}"); + } + catch (Exception e) + { + Console.WriteLine($"Failed downloading plugin snapshot {plugin.Moniker}, {e.Message}"); + } } } } diff --git a/src/Tests/Framework/Xunit/TestRunner.cs b/src/Tests/Framework/Xunit/TestRunner.cs new file mode 100644 index 00000000000..9b0240e8e13 --- /dev/null +++ b/src/Tests/Framework/Xunit/TestRunner.cs @@ -0,0 +1,123 @@ +using System; +using System.Threading; +using Xunit.Runners; +using System.Reflection; +using Tests.Framework; +using Xunit; +using System.Collections.ObjectModel; +using System.Collections.Concurrent; + +namespace Tests +{ + class TestRunner + { + // We use consoleLock because messages can arrive in parallel, so we want to make sure we get + // consistent console output. + static object consoleLock = new object(); + + // Use an event to know when we're done + static ManualResetEvent finished = new ManualResetEvent(false); + + // Start out assuming success; we'll set this to 1 if we get a failed test + static int _result = 0; + + private static readonly ConcurrentBag FailedTests = new ConcurrentBag(); + + public static int Run(string[] args) + { + + var testAssembly = typeof(TestRunner).Assembly(); + var clrVersion = System.Diagnostics.FileVersionInfo.GetVersionInfo(typeof(int).Assembly().Location).ProductVersion; + Console.WriteLine($"Running tests from {testAssembly.Location} using CLR: {clrVersion}"); + try + { + return RunTests(testAssembly); + } + catch (InvalidOperationException e) when (e.Message.Contains("runner when it's not idle")) + { + Console.WriteLine(e); + } + return _result; + } + + private static int RunTests(Assembly testAssembly) + { +#if DOTNETCORE + using (var runner = AssemblyRunner.WithoutAppDomain(testAssembly.Location)) +#else + using (var runner = AssemblyRunner.WithAppDomain(testAssembly.Location)) +#endif + { + runner.OnDiscoveryComplete = OnDiscoveryComplete; + runner.OnExecutionComplete = OnExecutionComplete; + runner.OnTestFailed = OnTestFailed; + runner.OnTestSkipped = OnTestSkipped; + + Console.WriteLine("Discovering..."); + runner.Start(); + + finished.WaitOne(); + finished.Dispose(); + return _result; + } + } + + static void OnDiscoveryComplete(DiscoveryCompleteInfo info) + { + lock (consoleLock) + Console.WriteLine($"Running {info.TestCasesToRun} of {info.TestCasesDiscovered} tests..."); + } + + static void OnExecutionComplete(ExecutionCompleteInfo info) + { + lock (consoleLock) + { + foreach (var t in FailedTests) + { + Console.ForegroundColor = ConsoleColor.Red; + + Console.Write("[FAIL] {0}: ", t.TestDisplayName); + Console.ForegroundColor = ConsoleColor.Blue; + Console.WriteLine(t.ExceptionMessage); + Console.ResetColor(); + } + + Console.WriteLine($"Finished: {info.TotalTests} tests in {Math.Round(info.ExecutionTime, 3)}s ({info.TestsFailed} failed, {info.TestsSkipped} skipped)"); + } + + finished.Set(); + } + + static void OnTestFailed(TestFailedInfo info) + { + FailedTests.Add(info); + lock (consoleLock) + { + Console.ForegroundColor = ConsoleColor.Red; + + Console.Write("[FAIL] {0}: ", info.TestDisplayName); + Console.ForegroundColor = ConsoleColor.Blue; + Console.WriteLine(info.ExceptionMessage); + if (info.ExceptionStackTrace != null) + { + Console.ForegroundColor = ConsoleColor.DarkGray; + Console.WriteLine(info.ExceptionStackTrace); + } + + Console.ResetColor(); + } + + _result = 1; + } + + static void OnTestSkipped(TestSkippedInfo info) + { + lock (consoleLock) + { + Console.ForegroundColor = ConsoleColor.Yellow; + Console.WriteLine("[SKIP] {0}: {1}", info.TestDisplayName, info.SkipReason); + Console.ResetColor(); + } + } + } +} diff --git a/src/Tests/Program.cs b/src/Tests/Program.cs index 08338125094..94618f78904 100644 --- a/src/Tests/Program.cs +++ b/src/Tests/Program.cs @@ -59,16 +59,11 @@ static Program() public static void Main(string[] args) { if (args.Length == 0) - Console.WriteLine("Must specify at least one argument: Profile or Benchmark"); + Console.WriteLine("Must specify at least one argument: TestAssemblyPath, Profile or Benchmark "); var arguments = args.Skip(1).ToArray(); - if (args[0].Equals("Benchmark", StringComparison.OrdinalIgnoreCase)) - { - var benchmarkSwitcher = new BenchmarkSwitcher(GetBenchmarkTypes()); - benchmarkSwitcher.Run(arguments); - } - else + if (args[0].Equals("Profile", StringComparison.OrdinalIgnoreCase)) { #if DOTNETCORE Console.Error.WriteLine("DotTrace Profiling is not currently supported on .NET Core"); @@ -90,6 +85,15 @@ public static void Main(string[] args) } #endif } + else if (args[0].Equals("Benchmark", StringComparison.OrdinalIgnoreCase)) + { + var benchmarkSwitcher = new BenchmarkSwitcher(GetBenchmarkTypes()); + benchmarkSwitcher.Run(arguments); + } + else + { + TestRunner.Run(arguments); + } } #if !DOTNETCORE diff --git a/src/Tests/Properties/AssemblyInfo.cs b/src/Tests/Properties/AssemblyInfo.cs deleted file mode 100644 index bd257bb5d1e..00000000000 --- a/src/Tests/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -// -using System.Reflection; - -[assembly: AssemblyTitleAttribute("Tests")] -[assembly: AssemblyCopyrightAttribute("Elasticsearch 2017")] -[assembly: AssemblyDescriptionAttribute("")] -[assembly: AssemblyCompanyAttribute("Elasticsearch")] -[assembly: AssemblyConfigurationAttribute("Release")] -[assembly: AssemblyVersionAttribute("2.0.0")] -[assembly: AssemblyFileVersionAttribute("2.5.4")] -[assembly: AssemblyInformationalVersionAttribute("2.5.4")] -namespace System { - internal static class AssemblyVersionInformation { - internal const System.String AssemblyTitle = "Tests"; - internal const System.String AssemblyCopyright = "Elasticsearch 2017"; - internal const System.String AssemblyDescription = ""; - internal const System.String AssemblyCompany = "Elasticsearch"; - internal const System.String AssemblyConfiguration = "Release"; - internal const System.String AssemblyVersion = "2.0.0"; - internal const System.String AssemblyFileVersion = "2.5.4"; - internal const System.String AssemblyInformationalVersion = "2.5.4"; - } -} diff --git a/src/Tests/Tests.csproj b/src/Tests/Tests.csproj index d1aa3d2b861..caa37c44272 100644 --- a/src/Tests/Tests.csproj +++ b/src/Tests/Tests.csproj @@ -1,3018 +1,37 @@ - - - + - Debug - AnyCPU - {37164C11-88EF-4428-803A-9AA24FB8B44D} Exe - Properties - Tests - Tests - v4.5 - 512 - - false - 0219 - true + netcoreapp1.1;net45;net46 + netcoreapp1.1 + 6.0.0 + alpha + $(DefineConstants);DOTNETCORE - - true - full - false - bin\Debug\net45\ - DEBUG;TRACE - prompt - 4 - - - - - pdbonly - true - bin\Release\net45\ - TRACE - prompt - 4 - - - - - - - - - False - ..\..\build\profiling\JetBrains.Profiler.Windows.SelfApi.dll - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {E97CCF40-0BA6-43FE-9F2D-58D454134088} - Elasticsearch.Net - - - {072ba7da-7b60-407d-8b6e-95e3186be70c} - Nest - + + + + + + + + + + + + + - - + + + + - - - - - - - - - - + + + - - - - - - <__paket__xunit_core_props>uap10.0\xunit.core - - - - - <__paket__xunit_core_props>win81\xunit.core - - - - - <__paket__xunit_core_props>wpa81\xunit.core - - - - - - - - - - ..\..\packages\BenchmarkDotNet\lib\net45\BenchmarkDotNet.dll - True - True - - - - - - - ..\..\packages\BenchmarkDotNet\lib\netstandard1.5\BenchmarkDotNet.dll - True - True - - - - - - - - - True - - - ..\..\packages\BenchmarkDotNet.Core\lib\net45\BenchmarkDotNet.Core.dll - True - True - - - - - - - - - ..\..\packages\BenchmarkDotNet.Toolchains.Roslyn\lib\net45\BenchmarkDotNet.Toolchains.Roslyn.dll - True - True - - - - - - - - - ..\..\packages\Bogus\lib\net40\Bogus.dll - True - True - - - - - - - ..\..\packages\Bogus\lib\netstandard1.3\Bogus.dll - True - True - - - - - - - - - ..\..\packages\DiffPlex\lib\portable-net40+sl50+win+wpa81+wp80\DiffPlex.dll - True - True - - - - - - - - - ..\..\packages\FluentAssertions\lib\net40\FluentAssertions.dll - True - True - - - ..\..\packages\FluentAssertions\lib\net40\FluentAssertions.Core.dll - True - True - - - - - - - ..\..\packages\FluentAssertions\lib\net45\FluentAssertions.dll - True - True - - - ..\..\packages\FluentAssertions\lib\net45\FluentAssertions.Core.dll - True - True - - - - - - - ..\..\packages\FluentAssertions\lib\netstandard1.3\FluentAssertions.dll - True - True - - - ..\..\packages\FluentAssertions\lib\netstandard1.3\FluentAssertions.Core.dll - True - True - - - - - - - ..\..\packages\FluentAssertions\lib\portable-net40+sl5+win8+wp8+wpa81\FluentAssertions.dll - True - True - - - ..\..\packages\FluentAssertions\lib\portable-net40+sl5+win8+wp8+wpa81\FluentAssertions.Core.dll - True - True - - - - - - - ..\..\packages\FluentAssertions\lib\portable-win81+wpa81\FluentAssertions.dll - True - True - - - ..\..\packages\FluentAssertions\lib\portable-win81+wpa81\FluentAssertions.Core.dll - True - True - - - - - - - ..\..\packages\FluentAssertions\lib\sl5\FluentAssertions.dll - True - True - - - ..\..\packages\FluentAssertions\lib\sl5\FluentAssertions.Core.dll - True - True - - - ..\..\packages\FluentAssertions\lib\sl5\Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll - True - True - - - - - - - ..\..\packages\FluentAssertions\lib\uap10.0\FluentAssertions.dll - True - True - - - ..\..\packages\FluentAssertions\lib\uap10.0\FluentAssertions.Core.dll - True - True - - - - - - - ..\..\packages\FluentAssertions\lib\win81\FluentAssertions.dll - True - True - - - ..\..\packages\FluentAssertions\lib\win81\FluentAssertions.Core.dll - True - True - - - - - - - ..\..\packages\FluentAssertions\lib\wp8\FluentAssertions.dll - True - True - - - ..\..\packages\FluentAssertions\lib\wp8\FluentAssertions.Core.dll - True - True - - - - - - - ..\..\packages\FluentAssertions\lib\wpa81\FluentAssertions.dll - True - True - - - ..\..\packages\FluentAssertions\lib\wpa81\FluentAssertions.Core.dll - True - True - - - - - - - True - - - True - + - - - - - ..\..\packages\Microsoft.CodeAnalysis.Common\lib\net45\Microsoft.CodeAnalysis.dll - True - True - - - - - - - ..\..\packages\Microsoft.CodeAnalysis.Common\lib\netstandard1.3\Microsoft.CodeAnalysis.dll - True - True - - - - - - - ..\..\packages\Microsoft.CodeAnalysis.Common\lib\portable-net45+win8\Microsoft.CodeAnalysis.dll - True - True - - - - - - - - - ..\..\packages\Microsoft.CodeAnalysis.CSharp\lib\net45\Microsoft.CodeAnalysis.CSharp.dll - True - True - - - - - - - ..\..\packages\Microsoft.CodeAnalysis.CSharp\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.dll - True - True - - - - - - - ..\..\packages\Microsoft.CodeAnalysis.CSharp\lib\portable-net45+win8\Microsoft.CodeAnalysis.CSharp.dll - True - True - - - - - - - - - ..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll - False - True - - - - - - - - - ..\..\packages\Newtonsoft.Json\lib\net20\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\packages\Newtonsoft.Json\lib\net35\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\packages\Newtonsoft.Json\lib\net40\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\packages\Newtonsoft.Json\lib\netstandard1.0\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\packages\Newtonsoft.Json\lib\netstandard1.3\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wpa81+wp8\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wpa81+wp8\Newtonsoft.Json.dll - True - True - - - - - - - - - True - - - ..\..\packages\SemanticVersioning\lib\net45\SemVer.dll - True - True - - - - - - - ..\..\packages\SemanticVersioning\lib\netstandard1.1\SemVer.dll - True - True - - - - - - - - - ..\..\packages\System.AppContext\lib\net46\System.AppContext.dll - True - True - - - - - - - ..\..\packages\System.AppContext\lib\net463\System.AppContext.dll - True - True - - - - - - - ..\..\packages\System.AppContext\ref\netstandard1.3\System.AppContext.dll - False - True - - - - - - - ..\..\packages\System.AppContext\lib\netstandard1.6\System.AppContext.dll - True - True - - - - - - - - - ..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll - True - True - - - - - - - - - ..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll - False - True - - - - - - - ..\..\packages\System.Collections\ref\netstandard1.3\System.Collections.dll - False - True - - - - - - - - - ..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll - True - True - - - - - - - - - ..\..\packages\System.Collections.Immutable\lib\netstandard1.0\System.Collections.Immutable.dll - True - True - - - - - - - ..\..\packages\System.Collections.Immutable\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll - True - True - - - - - - - - - ..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll - True - True - - - - - - - - - ..\..\packages\System.Collections.Specialized\lib\netstandard1.3\System.Collections.Specialized.dll - True - True - - - - - - - - - ..\..\packages\System.ComponentModel\ref\netstandard1.0\System.ComponentModel.dll - False - True - - - - - - - ..\..\packages\System.ComponentModel\lib\netstandard1.3\System.ComponentModel.dll - True - True - - - - - - - - - ..\..\packages\System.ComponentModel.Primitives\lib\netstandard1.0\System.ComponentModel.Primitives.dll - True - True - - - - - - - - - ..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.0\System.ComponentModel.TypeConverter.dll - True - True - - - - - - - ..\..\packages\System.ComponentModel.TypeConverter\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll - True - True - - - - - - - - - ..\..\packages\System.Console\lib\net46\System.Console.dll - True - True - - - - - - - ..\..\packages\System.Console\ref\netstandard1.3\System.Console.dll - False - True - - - - - - - - - ..\..\packages\System.Diagnostics.Debug\ref\netstandard1.0\System.Diagnostics.Debug.dll - False - True - - - - - - - ..\..\packages\System.Diagnostics.Debug\ref\netstandard1.3\System.Diagnostics.Debug.dll - False - True - - - - - - - - - ..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll - True - True - - - - - - - - - ..\..\packages\System.Diagnostics.FileVersionInfo\lib\net46\System.Diagnostics.FileVersionInfo.dll - True - True - - - - - - - ..\..\packages\System.Diagnostics.FileVersionInfo\ref\netstandard1.3\System.Diagnostics.FileVersionInfo.dll - False - True - - - - - - - - - ..\..\packages\System.Diagnostics.StackTrace\lib\net46\System.Diagnostics.StackTrace.dll - True - True - - - - - - - ..\..\packages\System.Diagnostics.StackTrace\lib\netstandard1.3\System.Diagnostics.StackTrace.dll - True - True - - - - - - - - - ..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - - - - - ..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.1\System.Diagnostics.Tracing.dll - False - True - - - - - - - ..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.2\System.Diagnostics.Tracing.dll - False - True - - - - - - - ..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.3\System.Diagnostics.Tracing.dll - False - True - - - - - - - ..\..\packages\System.Diagnostics.Tracing\ref\netstandard1.5\System.Diagnostics.Tracing.dll - False - True - - - - - - - - - ..\..\packages\System.Dynamic.Runtime\ref\netstandard1.0\System.Dynamic.Runtime.dll - False - True - - - - - - - ..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll - True - True - - - - - - - - - ..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll - False - True - - - - - - - ..\..\packages\System.Globalization\ref\netstandard1.3\System.Globalization.dll - False - True - - - - - - - - - ..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll - True - True - - - - - - - ..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll - False - True - - - - - - - - - ..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll - False - True - - - - - - - - - ..\..\packages\System.IO\lib\net462\System.IO.dll - True - True - - - - - - - ..\..\packages\System.IO\ref\netstandard1.0\System.IO.dll - False - True - - - - - - - ..\..\packages\System.IO\ref\netstandard1.3\System.IO.dll - False - True - - - - - - - ..\..\packages\System.IO\ref\netstandard1.5\System.IO.dll - False - True - - - - - - - - - ..\..\packages\System.IO.Compression\ref\netstandard1.1\System.IO.Compression.dll - False - True - - - - - - - ..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll - False - True - - - - - - - - - ..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll - True - True - - - - - - - - - ..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll - True - True - - - - - - - ..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False - True - - - - - - - - - ..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll - True - True - - - - - - - ..\..\packages\System.IO.FileSystem.Primitives\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll - True - True - - - - - - - - - ..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - - - - - ..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll - True - True - - - - - - - - - ..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - - - - - ..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll - False - True - - - - - - - ..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll - False - True - - - - - - - ..\..\packages\System.Linq.Expressions\lib\netstandard1.6\System.Linq.Expressions.dll - True - True - - - - - - - - - ..\..\packages\System.Net.Primitives\ref\netstandard1.0\System.Net.Primitives.dll - False - True - - - - - - - ..\..\packages\System.Net.Primitives\ref\netstandard1.1\System.Net.Primitives.dll - False - True - - - - - - - ..\..\packages\System.Net.Primitives\ref\netstandard1.3\System.Net.Primitives.dll - False - True - - - - - - - - - ..\..\packages\System.Net.Sockets\ref\netstandard1.3\System.Net.Sockets.dll - False - True - - - - - - - - - ..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll - True - True - - - - - - - - - ..\..\packages\System.Reactive.Core\lib\net45\System.Reactive.Core.dll - True - True - - - - - - - ..\..\packages\System.Reactive.Core\lib\net46\System.Reactive.Core.dll - True - True - - - - - - - ..\..\packages\System.Reactive.Core\lib\netcore451\System.Reactive.Core.dll - True - True - - - - - - - ..\..\packages\System.Reactive.Core\lib\netstandard1.0\System.Reactive.Core.dll - True - True - - - - - - - ..\..\packages\System.Reactive.Core\lib\netstandard1.1\System.Reactive.Core.dll - True - True - - - - - - - ..\..\packages\System.Reactive.Core\lib\netstandard1.3\System.Reactive.Core.dll - True - True - - - - - - - ..\..\packages\System.Reactive.Core\lib\wpa81\System.Reactive.Core.dll - True - True - - - - - - - - - ..\..\packages\System.Reactive.Interfaces\lib\net45\System.Reactive.Interfaces.dll - True - True - - - - - - - ..\..\packages\System.Reactive.Interfaces\lib\netstandard1.0\System.Reactive.Interfaces.dll - True - True - - - - - - - - - ..\..\packages\System.Reactive.Linq\lib\net45\System.Reactive.Linq.dll - True - True - - - - - - - ..\..\packages\System.Reactive.Linq\lib\net46\System.Reactive.Linq.dll - True - True - - - - - - - ..\..\packages\System.Reactive.Linq\lib\netstandard1.0\System.Reactive.Linq.dll - True - True - - - - - - - ..\..\packages\System.Reactive.Linq\lib\netstandard1.1\System.Reactive.Linq.dll - True - True - - - - - - - ..\..\packages\System.Reactive.Linq\lib\netstandard1.3\System.Reactive.Linq.dll - True - True - - - - - - - - - ..\..\packages\System.Reactive.PlatformServices\lib\net45\System.Reactive.PlatformServices.dll - True - True - - - - - - - ..\..\packages\System.Reactive.PlatformServices\lib\net46\System.Reactive.PlatformServices.dll - True - True - - - - - - - ..\..\packages\System.Reactive.PlatformServices\lib\netcore451\System.Reactive.PlatformServices.dll - True - True - - - - - - - ..\..\packages\System.Reactive.PlatformServices\lib\netcoreapp1.0\System.Reactive.PlatformServices.dll - True - True - - - - - - - ..\..\packages\System.Reactive.PlatformServices\lib\netstandard1.0\System.Reactive.PlatformServices.dll - True - True - - - - - - - ..\..\packages\System.Reactive.PlatformServices\lib\netstandard1.3\System.Reactive.PlatformServices.dll - True - True - - - - - - - ..\..\packages\System.Reactive.PlatformServices\lib\uap10.0\System.Reactive.PlatformServices.dll - True - True - - - - - - - ..\..\packages\System.Reactive.PlatformServices\lib\wpa81\System.Reactive.PlatformServices.dll - True - True - - - - - - - - - True - - - True - - - ..\..\packages\System.Reactive.Windows.Threading\lib\net45\System.Reactive.Windows.Threading.dll - True - True - - - - - - - ..\..\packages\System.Reactive.Windows.Threading\lib\netcore451\System.Reactive.Windows.Threading.dll - True - True - - - - - - - ..\..\packages\System.Reactive.Windows.Threading\lib\wpa81\System.Reactive.Windows.Threading.dll - True - True - - - - - - - - - ..\..\packages\System.Reactive.WindowsRuntime\lib\netcore451\System.Reactive.WindowsRuntime.dll - True - True - - - - - - - ..\..\packages\System.Reactive.WindowsRuntime\lib\wpa81\System.Reactive.WindowsRuntime.dll - True - True - - - - - - - - - ..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - - - - - ..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll - False - True - - - - - - - ..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll - False - True - - - - - - - ..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll - False - True - - - - - - - - - ..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll - True - True - - - - - - - - - ..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll - True - True - - - - - - - - - ..\..\packages\System.Reflection.Emit.Lightweight\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll - True - True - - - - - - - - - ..\..\packages\System.Reflection.Metadata\lib\netstandard1.1\System.Reflection.Metadata.dll - True - True - - - - - - - ..\..\packages\System.Reflection.Metadata\lib\portable-net45+win8\System.Reflection.Metadata.dll - True - True - - - - - - - - - ..\..\packages\System.Reflection.TypeExtensions\lib\net46\System.Reflection.TypeExtensions.dll - True - True - - - - - - - ..\..\packages\System.Reflection.TypeExtensions\lib\net462\System.Reflection.TypeExtensions.dll - True - True - - - - - - - ..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll - False - True - - - - - - - ..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll - True - True - - - - - - - - - True - - - - - - - True - - - ..\..\packages\System.Runtime\lib\net462\System.Runtime.dll - True - True - - - - - - - ..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll - False - True - - - - - - - ..\..\packages\System.Runtime\ref\netstandard1.2\System.Runtime.dll - False - True - - - - - - - ..\..\packages\System.Runtime\ref\netstandard1.3\System.Runtime.dll - False - True - - - - - - - ..\..\packages\System.Runtime\ref\netstandard1.5\System.Runtime.dll - False - True - - - - - - - - - ..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - - - - - ..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll - False - True - - - - - - - ..\..\packages\System.Runtime.Extensions\ref\netstandard1.3\System.Runtime.Extensions.dll - False - True - - - - - - - ..\..\packages\System.Runtime.Extensions\ref\netstandard1.5\System.Runtime.Extensions.dll - False - True - - - - - - - - - ..\..\packages\System.Runtime.Handles\ref\netstandard1.3\System.Runtime.Handles.dll - False - True - - - - - - - - - ..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll - True - True - - - - - - - ..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - - - - - ..\..\packages\System.Runtime.InteropServices\ref\netstandard1.1\System.Runtime.InteropServices.dll - False - True - - - - - - - ..\..\packages\System.Runtime.InteropServices\ref\netstandard1.2\System.Runtime.InteropServices.dll - False - True - - - - - - - ..\..\packages\System.Runtime.InteropServices\ref\netstandard1.3\System.Runtime.InteropServices.dll - False - True - - - - - - - ..\..\packages\System.Runtime.InteropServices\ref\netstandard1.5\System.Runtime.InteropServices.dll - False - True - - - - - - - - - ..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll - True - True - - - - - - - - - ..\..\packages\System.Runtime.InteropServices.WindowsRuntime\ref\netstandard1.0\System.Runtime.InteropServices.WindowsRuntime.dll - False - True - - - - - - - ..\..\packages\System.Runtime.InteropServices.WindowsRuntime\lib\netstandard1.3\System.Runtime.InteropServices.WindowsRuntime.dll - True - True - - - - - - - - - True - - - - - - - ..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll - False - True - - - - - - - ..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll - True - True - - - - - - - - - ..\..\packages\System.Runtime.Serialization.Formatters\ref\netstandard1.3\System.Runtime.Serialization.Formatters.dll - False - True - - - - - - - ..\..\packages\System.Runtime.Serialization.Formatters\lib\netstandard1.4\System.Runtime.Serialization.Formatters.dll - True - True - - - - - - - - - ..\..\packages\System.Runtime.Serialization.Primitives\ref\netstandard1.0\System.Runtime.Serialization.Primitives.dll - False - True - - - - - - - ..\..\packages\System.Runtime.Serialization.Primitives\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll - True - True - - - - - - - - - ..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll - False - True - - - - - - - ..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll - False - True - - - - - - - ..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll - False - True - - - - - - - - - ..\..\packages\System.Security.Cryptography.Cng\lib\net46\System.Security.Cryptography.Cng.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Cng\lib\net461\System.Security.Cryptography.Cng.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Cng\lib\net463\System.Security.Cryptography.Cng.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll - False - True - - - - - - - - - ..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Csp\ref\netstandard1.3\System.Security.Cryptography.Csp.dll - False - True - - - - - - - - - ..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Encoding\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll - False - True - - - - - - - - - ..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll - True - True - - - - - - - - - ..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll - True - True - - - - - - - - - ..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll - True - True - - - - - - - ..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.3\System.Security.Cryptography.X509Certificates.dll - False - True - - - - - - - ..\..\packages\System.Security.Cryptography.X509Certificates\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll - False - True - - - - - - - - - ..\..\packages\System.Text.Encoding\ref\netstandard1.0\System.Text.Encoding.dll - False - True - - - - - - - ..\..\packages\System.Text.Encoding\ref\netstandard1.3\System.Text.Encoding.dll - False - True - - - - - - - - - ..\..\packages\System.Text.Encoding.CodePages\lib\net46\System.Text.Encoding.CodePages.dll - True - True - - - - - - - ..\..\packages\System.Text.Encoding.CodePages\ref\netstandard1.3\System.Text.Encoding.CodePages.dll - False - True - - - - - - - - - ..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll - False - True - - - - - - - ..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll - False - True - - - - - - - - - ..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - - - - - ..\..\packages\System.Text.RegularExpressions\ref\netstandard1.0\System.Text.RegularExpressions.dll - False - True - - - - - - - ..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll - False - True - - - - - - - ..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll - True - True - - - - - - - - - ..\..\packages\System.Threading\lib\netstandard1.3\System.Threading.dll - True - True - - - - - - - - - ..\..\packages\System.Threading.Tasks\ref\netstandard1.0\System.Threading.Tasks.dll - False - True - - - - - - - ..\..\packages\System.Threading.Tasks\ref\netstandard1.3\System.Threading.Tasks.dll - False - True - - - - - - - - - ..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll - True - True - - - - - - - - - ..\..\packages\System.Threading.Tasks.Parallel\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll - True - True - - - - - - - - - ..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - - - - - ..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll - True - True - - - - - - - - - ..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll - True - True - - - - - - - ..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll - True - True - - - - - - - - - ..\..\packages\System.Xml.XDocument\lib\netstandard1.3\System.Xml.XDocument.dll - True - True - - - - - - - - - ..\..\packages\System.Xml.XmlDocument\lib\net46\System.Xml.XmlDocument.dll - True - True - - - - - - - ..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll - True - True - - - - - - - - - ..\..\packages\System.Xml.XPath\lib\net46\System.Xml.XPath.dll - True - True - - - - - - - ..\..\packages\System.Xml.XPath\lib\netstandard1.3\System.Xml.XPath.dll - True - True - - - - - - - - - ..\..\packages\System.Xml.XPath.XDocument\lib\net46\System.Xml.XPath.XDocument.dll - True - True - - - - - - - ..\..\packages\System.Xml.XPath.XDocument\lib\netstandard1.3\System.Xml.XPath.XDocument.dll - True - True - - - - - - - - - ..\..\packages\xunit.abstractions\lib\net35\xunit.abstractions.dll - True - True - - - - - - - ..\..\packages\xunit.abstractions\lib\netstandard1.0\xunit.abstractions.dll - True - True - - - - - - - - - ..\..\packages\xunit.assert\lib\netstandard1.0\xunit.assert.dll - True - True - - - - - - - - - ..\..\packages\xunit.extensibility.core\lib\net45\xunit.core.dll - True - True - - - - - - - ..\..\packages\xunit.extensibility.core\lib\netstandard1.0\xunit.core.dll - True - True - - - - - - - - - ..\..\packages\xunit.extensibility.execution\lib\net45\xunit.execution.desktop.dll - True - True - - - - - - - ..\..\packages\xunit.extensibility.execution\lib\netstandard1.0\xunit.execution.dotnet.dll - True - True - - - - - \ No newline at end of file + diff --git a/src/Tests/Tests.project.json b/src/Tests/Tests.project.json deleted file mode 100644 index faf891318d9..00000000000 --- a/src/Tests/Tests.project.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "frameworks": { - "net45": {} - }, - "runtimes": { - "win": {} - } -} \ No newline at end of file diff --git a/src/Tests/Tests.xproj b/src/Tests/Tests.xproj deleted file mode 100644 index 9b51cfecb97..00000000000 --- a/src/Tests/Tests.xproj +++ /dev/null @@ -1,26 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 0bd06b70-32e2-4c2f-8efa-b37cc72cb462 - Tests - ..\artifacts\obj\$(MSBuildProjectName) - .\bin\ - - - 2.0 - - - - - - - - - - - \ No newline at end of file diff --git a/src/Tests/paket.references b/src/Tests/paket.references index dfa4f4457a1..5f282702bb0 100644 --- a/src/Tests/paket.references +++ b/src/Tests/paket.references @@ -1,11 +1 @@ -FluentAssertions -Newtonsoft.Json -xunit -xunit.abstractions -System.Reactive -Bogus -DiffPlex -System.Buffers -SemanticVersioning -BenchmarkDotNet -JetBrains.Profiler.Kernel.Windows.Api \ No newline at end of file + \ No newline at end of file diff --git a/src/Tests/project.json b/src/Tests/project.json deleted file mode 100644 index f6cd5a9113b..00000000000 --- a/src/Tests/project.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "version": "2.5.4", - "buildOptions": { - "emitEntryPoint": true, - "warningsAsErrors": false, - "nowarn": [ "CS1591", "1591", "1573" ], - "embed": [ - "Document\\Single\\Attachment\\Attachment_Test_Document.pdf" - ] - }, - "dependencies": { - "Bogus": "9.0.2", - "BenchmarkDotNet": "0.10.0", - "System.Buffers": "4.0.0", - "Elasticsearch.Net": { "target": "project" }, - "Nest": { "target": "project" }, - "DiffPlex": "2.0.0-alpha1", - "FluentAssertions": "4.19", - "Newtonsoft.Json": "10.0.1", - "System.Reactive": "3.1.1", - "xunit": "2.2.0-beta2-build3300", - "dotnet-test-xunit": "2.2.0-preview2-build1029", - "SemanticVersioning": "0.7.6" - }, - "configurations": { - "Debug": { - "buildOptions": { - "define": [ "DEBUG", "TRACE" ] - } - }, - "Release": { - "buildOptions": { - "define": [ "RELEASE", "TRACE" ], - "optimize": true - } - } - }, - "testRunner": "xunit", - "frameworks": { - "netcoreapp1.0": { - "buildOptions": { "define": [ "DOTNETCORE" ] }, - "dependencies": { - "Microsoft.NETCore.App": { - "type": "platform", - "version": "1.0.0" - }, - "System.Collections": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "System.IO.Compression.ZipFile": "4.0.1" - }, - "imports": [ - "dnxcore50", - "portable-net45+win8" - ] - } - } -}