From eb4952df278c951eded29c2b13ef7157c2a77ce6 Mon Sep 17 00:00:00 2001 From: eerhardt Date: Mon, 18 Apr 2016 05:23:16 +0000 Subject: [PATCH] Updating CoreFx to rc2-24018 --- .../DesktopAppWithNativeDep/project.json | 2 +- .../KestrelDesktop/project.json | 2 +- .../KestrelDesktopForce32/project.json | 2 +- .../KestrelDesktopWithRuntimes/project.json | 2 +- .../src/BrokenProjectPathSample/project.json | 2 +- .../src/EmptyConsoleApp/project.json | 2 +- .../src/EmptyLibrary/project.json | 2 +- .../src/FailReleaseProject/project.json | 2 +- .../IncompatiblePackageSample/project.json | 2 +- .../src/Project1/project.json | 2 +- TestAssets/ProjectWithTests/project.json | 4 +- .../dotnet-hello/v1/dotnet-hello/project.json | 2 +- .../dotnet-hello/v2/dotnet-hello/project.json | 2 +- .../AppWithBomGlobalJson/project.json | 2 +- .../project.json | 2 +- .../AppWithDirectDependency/project.json | 2 +- .../AppWithOutputAssemblyName/project.json | 2 +- .../AppWithToolDependency/project.json | 2 +- .../TestProjects/CompileFail/project.json | 2 +- .../DependencyContextValidator/project.json | 2 +- .../TestApp/project.json | 2 +- .../TestAppDeps/project.json | 2 +- .../CompileFailApp/project.json | 2 +- .../FSharpTestProjects/TestApp/project.json | 2 +- .../TestAppWithArgs/project.json | 2 +- .../TestLibrary/project.json | 2 +- .../project.json | 2 +- .../OutputStandardOutputAndError/project.json | 2 +- .../PortableTests/StandaloneApp/project.json | 2 +- .../TestLibraryWithResources/project.json | 2 +- .../TestApp/project.json | 2 +- .../TestLibrary/project.json | 2 +- .../TestProjects/TestAppWithArgs/project.json | 2 +- .../TestAppWithContentPackage/project.json | 2 +- .../TestAppWithContents/project.json | 2 +- .../TestAppWithLibrary/TestApp/project.json | 2 +- .../TestLibrary/project.json | 2 +- .../TestAppWithScripts/project.json | 2 +- .../TestApp/project.json | 2 +- .../TestLibrary/project.json | 2 +- .../TestLibrary2/project.json | 2 +- .../TestLibraryWithAppDependency/project.json | 2 +- .../TestApp/project.json | 2 +- .../TestLibraryGreater/project.json | 2 +- .../TestLibraryLesser/project.json | 2 +- .../TestLibraryWithAnalyzer/project.json | 2 +- .../TestLibraryWithConfiguration/project.json | 2 +- .../project.json | 2 +- .../TestMicrosoftCSharpReference/project.json | 4 +- .../TestMscorlibReference/project.json | 2 +- .../src/L0/project.json | 2 +- .../src/L11/project.json | 2 +- .../src/L12/project.json | 2 +- .../src/L21/project.json | 2 +- .../src/L22/project.json | 2 +- .../project.json | 2 +- .../TestProjectWithResource/project.json | 2 +- .../TestSimpleIncrementalApp/project.json | 2 +- .../TestSystemCoreReference/project.json | 2 +- .../TestSystemReference/project.json | 2 +- pkg/deps/project.json | 2 +- pkg/dir.props | 2 +- .../Microsoft.NETCore.App/project.json | 72 +++++++++---------- .../project.json | 4 +- scripts/dotnet-cli-build/CompileTargets.cs | 2 +- scripts/dotnet-cli-build/project.json | 12 ++-- scripts/update-dependencies/project.json | 6 +- src/Microsoft.DotNet.Cli.Utils/project.json | 2 +- src/Microsoft.DotNet.Files/project.json | 2 +- .../project.json | 2 +- .../project.json | 16 ++--- .../project.json | 4 +- .../project.json | 4 +- src/dotnet/project.json | 20 +++--- test/ArgumentForwardingTests/project.json | 2 +- test/EndToEnd/project.json | 2 +- test/Kestrel.Tests/project.json | 2 +- .../project.json | 4 +- .../project.json | 2 +- .../project.json | 2 +- .../project.json | 6 +- .../project.json | 2 +- .../project.json | 2 +- .../project.json | 4 +- .../TestAppWithFullPdbs/project.json | 2 +- .../TestAppWithPortablePdbs/project.json | 2 +- test/dotnet-build.Tests/project.json | 2 +- test/dotnet-compile.Tests/project.json | 2 +- test/dotnet-compile.UnitTests/project.json | 2 +- test/dotnet-pack.Tests/project.json | 4 +- .../project.json | 4 +- test/dotnet-publish.Tests/project.json | 4 +- test/dotnet-resgen.Tests/project.json | 2 +- test/dotnet-run.Tests/project.json | 2 +- test/dotnet-test.Tests/project.json | 6 +- test/dotnet-test.UnitTests/project.json | 2 +- test/dotnet.Tests/project.json | 2 +- tools/MultiProjectValidator/project.json | 2 +- tools/RuntimeGraphGenerator/project.json | 6 +- 99 files changed, 173 insertions(+), 173 deletions(-) diff --git a/TestAssets/DesktopTestProjects/DesktopAppWithNativeDep/project.json b/TestAssets/DesktopTestProjects/DesktopAppWithNativeDep/project.json index 092008303..7d2e1db2b 100644 --- a/TestAssets/DesktopTestProjects/DesktopAppWithNativeDep/project.json +++ b/TestAssets/DesktopTestProjects/DesktopAppWithNativeDep/project.json @@ -2,7 +2,7 @@ "version": "1.0.0-*", "dependencies": { "PackageWithFakeNativeDep": "1.0.0-*", - "Microsoft.NETCore.Platforms": "1.0.0-rc2-24015" + "Microsoft.NETCore.Platforms": "1.0.0-rc2-24018" }, "compilationOptions": { "emitEntryPoint": true diff --git a/TestAssets/DesktopTestProjects/DesktopKestrelSample/KestrelDesktop/project.json b/TestAssets/DesktopTestProjects/DesktopKestrelSample/KestrelDesktop/project.json index c4729d6f9..c68143b79 100644 --- a/TestAssets/DesktopTestProjects/DesktopKestrelSample/KestrelDesktop/project.json +++ b/TestAssets/DesktopTestProjects/DesktopKestrelSample/KestrelDesktop/project.json @@ -4,7 +4,7 @@ "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-20113", "Microsoft.AspNetCore.Hosting": "1.0.0-rc2-20113", "Microsoft.Extensions.Logging.Console": "1.0.0-rc2-20254", - "Microsoft.NETCore.Platforms": "1.0.0-rc2-24015" + "Microsoft.NETCore.Platforms": "1.0.0-rc2-24018" }, "compilationOptions": { "emitEntryPoint": true diff --git a/TestAssets/DesktopTestProjects/DesktopKestrelSample/KestrelDesktopForce32/project.json b/TestAssets/DesktopTestProjects/DesktopKestrelSample/KestrelDesktopForce32/project.json index 24ef04585..abf5a4353 100644 --- a/TestAssets/DesktopTestProjects/DesktopKestrelSample/KestrelDesktopForce32/project.json +++ b/TestAssets/DesktopTestProjects/DesktopKestrelSample/KestrelDesktopForce32/project.json @@ -4,7 +4,7 @@ "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-20113", "Microsoft.AspNetCore.Hosting": "1.0.0-rc2-20113", "Microsoft.Extensions.Logging.Console": "1.0.0-rc2-20254", - "Microsoft.NETCore.Platforms": "1.0.0-rc2-24015" + "Microsoft.NETCore.Platforms": "1.0.0-rc2-24018" }, "compilationOptions": { "platform": "anycpu32bitpreferred", diff --git a/TestAssets/DesktopTestProjects/DesktopKestrelSample/KestrelDesktopWithRuntimes/project.json b/TestAssets/DesktopTestProjects/DesktopKestrelSample/KestrelDesktopWithRuntimes/project.json index 401eb4604..cff6d9f08 100644 --- a/TestAssets/DesktopTestProjects/DesktopKestrelSample/KestrelDesktopWithRuntimes/project.json +++ b/TestAssets/DesktopTestProjects/DesktopKestrelSample/KestrelDesktopWithRuntimes/project.json @@ -4,7 +4,7 @@ "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-20113", "Microsoft.AspNetCore.Hosting": "1.0.0-rc2-20113", "Microsoft.Extensions.Logging.Console": "1.0.0-rc2-20254", - "Microsoft.NETCore.Platforms": "1.0.0-rc2-24015" + "Microsoft.NETCore.Platforms": "1.0.0-rc2-24018" }, "compilationOptions": { "emitEntryPoint": true diff --git a/TestAssets/ProjectModelServer/DthTestProjects/src/BrokenProjectPathSample/project.json b/TestAssets/ProjectModelServer/DthTestProjects/src/BrokenProjectPathSample/project.json index ca1fa6b93..5ffaa0af4 100644 --- a/TestAssets/ProjectModelServer/DthTestProjects/src/BrokenProjectPathSample/project.json +++ b/TestAssets/ProjectModelServer/DthTestProjects/src/BrokenProjectPathSample/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015", + "NETStandard.Library": "1.5.0-rc2-24018", "EmptyLibrary": "1.0.0-*" }, "frameworks": { diff --git a/TestAssets/ProjectModelServer/DthTestProjects/src/EmptyConsoleApp/project.json b/TestAssets/ProjectModelServer/DthTestProjects/src/EmptyConsoleApp/project.json index 5e62aedee..282dfb520 100644 --- a/TestAssets/ProjectModelServer/DthTestProjects/src/EmptyConsoleApp/project.json +++ b/TestAssets/ProjectModelServer/DthTestProjects/src/EmptyConsoleApp/project.json @@ -4,7 +4,7 @@ "netstandardapp1.5": { "imports": "dnxcore50", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" } }, "dnx451": {} diff --git a/TestAssets/ProjectModelServer/DthTestProjects/src/EmptyLibrary/project.json b/TestAssets/ProjectModelServer/DthTestProjects/src/EmptyLibrary/project.json index 4d565b0e0..967dbf37b 100644 --- a/TestAssets/ProjectModelServer/DthTestProjects/src/EmptyLibrary/project.json +++ b/TestAssets/ProjectModelServer/DthTestProjects/src/EmptyLibrary/project.json @@ -5,7 +5,7 @@ "netstandard1.3": { "imports": "dnxcore50", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" } } } diff --git a/TestAssets/ProjectModelServer/DthTestProjects/src/FailReleaseProject/project.json b/TestAssets/ProjectModelServer/DthTestProjects/src/FailReleaseProject/project.json index d4d63f28e..62a1a8a2f 100644 --- a/TestAssets/ProjectModelServer/DthTestProjects/src/FailReleaseProject/project.json +++ b/TestAssets/ProjectModelServer/DthTestProjects/src/FailReleaseProject/project.json @@ -3,7 +3,7 @@ "netstandardapp1.5": { "imports": "dnxcore50", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" } } }, diff --git a/TestAssets/ProjectModelServer/DthTestProjects/src/IncompatiblePackageSample/project.json b/TestAssets/ProjectModelServer/DthTestProjects/src/IncompatiblePackageSample/project.json index 82a67c77e..229ceef01 100644 --- a/TestAssets/ProjectModelServer/DthTestProjects/src/IncompatiblePackageSample/project.json +++ b/TestAssets/ProjectModelServer/DthTestProjects/src/IncompatiblePackageSample/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015", + "NETStandard.Library": "1.5.0-rc2-24018", "Microsoft.Web.Administration": "7.0.0" }, "frameworks": { diff --git a/TestAssets/ProjectModelServer/IncorrectGlobalJson/src/Project1/project.json b/TestAssets/ProjectModelServer/IncorrectGlobalJson/src/Project1/project.json index bafb8bd5f..82dc75fe0 100755 --- a/TestAssets/ProjectModelServer/IncorrectGlobalJson/src/Project1/project.json +++ b/TestAssets/ProjectModelServer/IncorrectGlobalJson/src/Project1/project.json @@ -4,7 +4,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "dnxcore50": {} diff --git a/TestAssets/ProjectWithTests/project.json b/TestAssets/ProjectWithTests/project.json index 6ebdaac1b..689eabc08 100644 --- a/TestAssets/ProjectWithTests/project.json +++ b/TestAssets/ProjectWithTests/project.json @@ -5,8 +5,8 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Linq.Expressions": "4.0.11-rc2-24015", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "System.Linq.Expressions": "4.0.11-rc2-24018", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "xunit": "2.1.0", "dotnet-test-xunit": "1.0.0-dev-140469-38" }, diff --git a/TestAssets/TestPackages/dotnet-hello/v1/dotnet-hello/project.json b/TestAssets/TestPackages/dotnet-hello/v1/dotnet-hello/project.json index 87219d222..f3812c775 100644 --- a/TestAssets/TestPackages/dotnet-hello/v1/dotnet-hello/project.json +++ b/TestAssets/TestPackages/dotnet-hello/v1/dotnet-hello/project.json @@ -4,7 +4,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestPackages/dotnet-hello/v2/dotnet-hello/project.json b/TestAssets/TestPackages/dotnet-hello/v2/dotnet-hello/project.json index aea75dc44..a90a6ff79 100644 --- a/TestAssets/TestPackages/dotnet-hello/v2/dotnet-hello/project.json +++ b/TestAssets/TestPackages/dotnet-hello/v2/dotnet-hello/project.json @@ -4,7 +4,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/AppWithBomGlobalJson/project.json b/TestAssets/TestProjects/AppWithBomGlobalJson/project.json index bb2399e87..0cebaa507 100644 --- a/TestAssets/TestProjects/AppWithBomGlobalJson/project.json +++ b/TestAssets/TestProjects/AppWithBomGlobalJson/project.json @@ -4,7 +4,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/AppWithDirectAndToolDependency/project.json b/TestAssets/TestProjects/AppWithDirectAndToolDependency/project.json index f91334a6f..a8cd385ad 100644 --- a/TestAssets/TestProjects/AppWithDirectAndToolDependency/project.json +++ b/TestAssets/TestProjects/AppWithDirectAndToolDependency/project.json @@ -4,7 +4,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015", + "NETStandard.Library": "1.5.0-rc2-24018", "dotnet-hello": { "version": "1.0.0", "target": "package" diff --git a/TestAssets/TestProjects/AppWithDirectDependency/project.json b/TestAssets/TestProjects/AppWithDirectDependency/project.json index 883d820c9..c3bdd31d6 100644 --- a/TestAssets/TestProjects/AppWithDirectDependency/project.json +++ b/TestAssets/TestProjects/AppWithDirectDependency/project.json @@ -5,7 +5,7 @@ }, "testRunner": "must-be-specified-to-generate-deps", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015", + "NETStandard.Library": "1.5.0-rc2-24018", "dotnet-hello": { "version": "1.0.0", "target": "package" diff --git a/TestAssets/TestProjects/AppWithOutputAssemblyName/project.json b/TestAssets/TestProjects/AppWithOutputAssemblyName/project.json index 5d207902f..f685e1742 100644 --- a/TestAssets/TestProjects/AppWithOutputAssemblyName/project.json +++ b/TestAssets/TestProjects/AppWithOutputAssemblyName/project.json @@ -5,7 +5,7 @@ "preserveCompilationContext": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/AppWithToolDependency/project.json b/TestAssets/TestProjects/AppWithToolDependency/project.json index bb2399e87..0cebaa507 100644 --- a/TestAssets/TestProjects/AppWithToolDependency/project.json +++ b/TestAssets/TestProjects/AppWithToolDependency/project.json @@ -4,7 +4,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/CompileFail/project.json b/TestAssets/TestProjects/CompileFail/project.json index 9ab4c5256..2db8e45bc 100644 --- a/TestAssets/TestProjects/CompileFail/project.json +++ b/TestAssets/TestProjects/CompileFail/project.json @@ -4,7 +4,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/DependencyContextValidator/DependencyContextValidator/project.json b/TestAssets/TestProjects/DependencyContextValidator/DependencyContextValidator/project.json index 512704eb2..33323dfcd 100644 --- a/TestAssets/TestProjects/DependencyContextValidator/DependencyContextValidator/project.json +++ b/TestAssets/TestProjects/DependencyContextValidator/DependencyContextValidator/project.json @@ -10,7 +10,7 @@ "netstandard1.5": { "imports": "dnxcore50", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" } }, "net451": {} diff --git a/TestAssets/TestProjects/DependencyContextValidator/TestApp/project.json b/TestAssets/TestProjects/DependencyContextValidator/TestApp/project.json index efa1ad7fb..2c0ba29e1 100644 --- a/TestAssets/TestProjects/DependencyContextValidator/TestApp/project.json +++ b/TestAssets/TestProjects/DependencyContextValidator/TestApp/project.json @@ -5,7 +5,7 @@ "preserveCompilationContext": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015", + "NETStandard.Library": "1.5.0-rc2-24018", "DependencyContextValidator": "1.0.0-*" }, "frameworks": { diff --git a/TestAssets/TestProjects/DependencyContextValidator/TestAppDeps/project.json b/TestAssets/TestProjects/DependencyContextValidator/TestAppDeps/project.json index 0c9235a3d..7378d1de7 100644 --- a/TestAssets/TestProjects/DependencyContextValidator/TestAppDeps/project.json +++ b/TestAssets/TestProjects/DependencyContextValidator/TestAppDeps/project.json @@ -4,7 +4,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015", + "NETStandard.Library": "1.5.0-rc2-24018", "DependencyContextValidator": "1.0.0-*" }, "frameworks": { diff --git a/TestAssets/TestProjects/FSharpTestProjects/CompileFailApp/project.json b/TestAssets/TestProjects/FSharpTestProjects/CompileFailApp/project.json index 2ce32d46e..27655688c 100644 --- a/TestAssets/TestProjects/FSharpTestProjects/CompileFailApp/project.json +++ b/TestAssets/TestProjects/FSharpTestProjects/CompileFailApp/project.json @@ -9,7 +9,7 @@ ], "dependencies": { "Microsoft.FSharp.Core.netcore": "1.0.0-alpha-151221", - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "tools": { "dotnet-compile-fsc": { diff --git a/TestAssets/TestProjects/FSharpTestProjects/TestApp/project.json b/TestAssets/TestProjects/FSharpTestProjects/TestApp/project.json index 053257812..37c8606f1 100644 --- a/TestAssets/TestProjects/FSharpTestProjects/TestApp/project.json +++ b/TestAssets/TestProjects/FSharpTestProjects/TestApp/project.json @@ -12,7 +12,7 @@ "version": "1.0.0-*", "target": "project" }, - "NETStandard.Library": "1.5.0-rc2-24015", + "NETStandard.Library": "1.5.0-rc2-24018", "Microsoft.FSharp.Core.netcore": "1.0.0-alpha-151221" }, "tools": { diff --git a/TestAssets/TestProjects/FSharpTestProjects/TestAppWithArgs/project.json b/TestAssets/TestProjects/FSharpTestProjects/TestAppWithArgs/project.json index 04073f7b6..4a1bb8a7f 100644 --- a/TestAssets/TestProjects/FSharpTestProjects/TestAppWithArgs/project.json +++ b/TestAssets/TestProjects/FSharpTestProjects/TestAppWithArgs/project.json @@ -9,7 +9,7 @@ ], "dependencies": { "Microsoft.FSharp.Core.netcore": "1.0.0-alpha-151221", - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "tools": { "dotnet-compile-fsc": { diff --git a/TestAssets/TestProjects/FSharpTestProjects/TestLibrary/project.json b/TestAssets/TestProjects/FSharpTestProjects/TestLibrary/project.json index adddedf12..4bf555557 100644 --- a/TestAssets/TestProjects/FSharpTestProjects/TestLibrary/project.json +++ b/TestAssets/TestProjects/FSharpTestProjects/TestLibrary/project.json @@ -2,7 +2,7 @@ "version": "1.0.0-*", "dependencies": { "Microsoft.FSharp.Core.netcore": "1.0.0-alpha-151221", - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "compilerName": "fsc", "compileFiles": [ diff --git a/TestAssets/TestProjects/LibraryWithOutputAssemblyName/project.json b/TestAssets/TestProjects/LibraryWithOutputAssemblyName/project.json index f698bd907..a74e66dbd 100644 --- a/TestAssets/TestProjects/LibraryWithOutputAssemblyName/project.json +++ b/TestAssets/TestProjects/LibraryWithOutputAssemblyName/project.json @@ -3,7 +3,7 @@ "outputName": "MyLibrary" }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/OutputStandardOutputAndError/project.json b/TestAssets/TestProjects/OutputStandardOutputAndError/project.json index 9ab4c5256..2db8e45bc 100644 --- a/TestAssets/TestProjects/OutputStandardOutputAndError/project.json +++ b/TestAssets/TestProjects/OutputStandardOutputAndError/project.json @@ -4,7 +4,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/PortableTests/StandaloneApp/project.json b/TestAssets/TestProjects/PortableTests/StandaloneApp/project.json index 82d32f6fe..19b31b89c 100644 --- a/TestAssets/TestProjects/PortableTests/StandaloneApp/project.json +++ b/TestAssets/TestProjects/PortableTests/StandaloneApp/project.json @@ -9,7 +9,7 @@ "portable-net45+win8" ], "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" } } }, diff --git a/TestAssets/TestProjects/ResourcesTests/TestLibraryWithResources/project.json b/TestAssets/TestProjects/ResourcesTests/TestLibraryWithResources/project.json index 6e68954d6..d4215b7cf 100644 --- a/TestAssets/TestProjects/ResourcesTests/TestLibraryWithResources/project.json +++ b/TestAssets/TestProjects/ResourcesTests/TestLibraryWithResources/project.json @@ -1,7 +1,7 @@ { "version": "1.0.0-*", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24008", + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandard1.5": { diff --git a/TestAssets/TestProjects/TestAppCompilationContext/TestApp/project.json b/TestAssets/TestProjects/TestAppCompilationContext/TestApp/project.json index a8cca360c..315ee875e 100644 --- a/TestAssets/TestProjects/TestAppCompilationContext/TestApp/project.json +++ b/TestAssets/TestProjects/TestAppCompilationContext/TestApp/project.json @@ -6,7 +6,7 @@ }, "dependencies": { "TestLibrary": "1.0.0-*", - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestAppCompilationContext/TestLibrary/project.json b/TestAssets/TestProjects/TestAppCompilationContext/TestLibrary/project.json index d6d92468c..5d93e8397 100644 --- a/TestAssets/TestProjects/TestAppCompilationContext/TestLibrary/project.json +++ b/TestAssets/TestProjects/TestAppCompilationContext/TestLibrary/project.json @@ -10,7 +10,7 @@ ] }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestAppWithArgs/project.json b/TestAssets/TestProjects/TestAppWithArgs/project.json index 9ab4c5256..2db8e45bc 100644 --- a/TestAssets/TestProjects/TestAppWithArgs/project.json +++ b/TestAssets/TestProjects/TestAppWithArgs/project.json @@ -4,7 +4,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestAppWithContentPackage/project.json b/TestAssets/TestProjects/TestAppWithContentPackage/project.json index 062d513b2..88431e2f1 100644 --- a/TestAssets/TestProjects/TestAppWithContentPackage/project.json +++ b/TestAssets/TestProjects/TestAppWithContentPackage/project.json @@ -5,7 +5,7 @@ "outputName": "AppWithContentPackage" }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015", + "NETStandard.Library": "1.5.0-rc2-24018", "SharedContentA": "1.0.0-*" }, "frameworks": { diff --git a/TestAssets/TestProjects/TestAppWithContents/project.json b/TestAssets/TestProjects/TestAppWithContents/project.json index d2146c45a..4204fe6ae 100644 --- a/TestAssets/TestProjects/TestAppWithContents/project.json +++ b/TestAssets/TestProjects/TestAppWithContents/project.json @@ -4,7 +4,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "content": "testcontentfile.txt", "frameworks": { diff --git a/TestAssets/TestProjects/TestAppWithLibrary/TestApp/project.json b/TestAssets/TestProjects/TestAppWithLibrary/TestApp/project.json index 204a1aef4..2db64e202 100644 --- a/TestAssets/TestProjects/TestAppWithLibrary/TestApp/project.json +++ b/TestAssets/TestProjects/TestAppWithLibrary/TestApp/project.json @@ -9,7 +9,7 @@ "target": "project", "version": "1.0.0-*" }, - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestAppWithLibrary/TestLibrary/project.json b/TestAssets/TestProjects/TestAppWithLibrary/TestLibrary/project.json index d6d92468c..5d93e8397 100644 --- a/TestAssets/TestProjects/TestAppWithLibrary/TestLibrary/project.json +++ b/TestAssets/TestProjects/TestAppWithLibrary/TestLibrary/project.json @@ -10,7 +10,7 @@ ] }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestAppWithScripts/project.json b/TestAssets/TestProjects/TestAppWithScripts/project.json index 21e04d21e..15eef606d 100644 --- a/TestAssets/TestProjects/TestAppWithScripts/project.json +++ b/TestAssets/TestProjects/TestAppWithScripts/project.json @@ -4,7 +4,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestApp/project.json b/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestApp/project.json index e11b700a0..bd93ab3e8 100644 --- a/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestApp/project.json +++ b/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestApp/project.json @@ -9,7 +9,7 @@ "target": "project", "version": "1.0.0-*" }, - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary/project.json b/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary/project.json index d6d92468c..5d93e8397 100644 --- a/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary/project.json +++ b/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary/project.json @@ -10,7 +10,7 @@ ] }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary2/project.json b/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary2/project.json index 8f2265462..ace17f341 100644 --- a/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary2/project.json +++ b/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary2/project.json @@ -8,7 +8,7 @@ "target": "project", "version": "1.0.0-*" }, - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibraryWithAppDependency/project.json b/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibraryWithAppDependency/project.json index f4b40da94..bdafd9ac2 100644 --- a/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibraryWithAppDependency/project.json +++ b/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibraryWithAppDependency/project.json @@ -5,7 +5,7 @@ "target": "project", "version": "1.0.0-*" }, - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestAppWithWrapperProjectDependency/TestApp/project.json b/TestAssets/TestProjects/TestAppWithWrapperProjectDependency/TestApp/project.json index 204a1aef4..2db64e202 100644 --- a/TestAssets/TestProjects/TestAppWithWrapperProjectDependency/TestApp/project.json +++ b/TestAssets/TestProjects/TestAppWithWrapperProjectDependency/TestApp/project.json @@ -9,7 +9,7 @@ "target": "project", "version": "1.0.0-*" }, - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryGreater/project.json b/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryGreater/project.json index 96e6f00a3..d17c5f85c 100644 --- a/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryGreater/project.json +++ b/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryGreater/project.json @@ -12,7 +12,7 @@ "portable-net45+wp80+win8" ], "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" } } } diff --git a/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryLesser/project.json b/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryLesser/project.json index 14c6826f7..84addac54 100644 --- a/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryLesser/project.json +++ b/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryLesser/project.json @@ -15,7 +15,7 @@ "portable-net45+wp80+win8" ], "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" } } } diff --git a/TestAssets/TestProjects/TestLibraryWithAnalyzer/project.json b/TestAssets/TestProjects/TestLibraryWithAnalyzer/project.json index 8e28bf442..679627763 100644 --- a/TestAssets/TestProjects/TestLibraryWithAnalyzer/project.json +++ b/TestAssets/TestProjects/TestLibraryWithAnalyzer/project.json @@ -4,7 +4,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015", + "NETStandard.Library": "1.5.0-rc2-24018", "System.Runtime.Analyzers": { "version": "1.1.0", "type": "build" diff --git a/TestAssets/TestProjects/TestLibraryWithConfiguration/project.json b/TestAssets/TestProjects/TestLibraryWithConfiguration/project.json index 34b0d5f01..517b85c7a 100644 --- a/TestAssets/TestProjects/TestLibraryWithConfiguration/project.json +++ b/TestAssets/TestProjects/TestLibraryWithConfiguration/project.json @@ -10,7 +10,7 @@ ] }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "configurations": { "Test": {} diff --git a/TestAssets/TestProjects/TestLibraryWithMultipleFrameworks/project.json b/TestAssets/TestProjects/TestLibraryWithMultipleFrameworks/project.json index d85a67cc6..a26cba447 100644 --- a/TestAssets/TestProjects/TestLibraryWithMultipleFrameworks/project.json +++ b/TestAssets/TestProjects/TestLibraryWithMultipleFrameworks/project.json @@ -12,7 +12,7 @@ "netstandardapp1.5": { "imports": "dnxcore50", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" } } } diff --git a/TestAssets/TestProjects/TestMicrosoftCSharpReference/project.json b/TestAssets/TestProjects/TestMicrosoftCSharpReference/project.json index 0fcadf13e..f092e10ef 100644 --- a/TestAssets/TestProjects/TestMicrosoftCSharpReference/project.json +++ b/TestAssets/TestProjects/TestMicrosoftCSharpReference/project.json @@ -5,12 +5,12 @@ "netstandardapp1.5": { "imports": "dnxcore50", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" } }, "net451": { "dependencies": { - "Microsoft.CSharp": "4.0.1-rc2-24015" + "Microsoft.CSharp": "4.0.1-rc2-24018" } } } diff --git a/TestAssets/TestProjects/TestMscorlibReference/project.json b/TestAssets/TestProjects/TestMscorlibReference/project.json index 4f7188b81..94c92e0d8 100644 --- a/TestAssets/TestProjects/TestMscorlibReference/project.json +++ b/TestAssets/TestProjects/TestMscorlibReference/project.json @@ -4,7 +4,7 @@ "frameworks": { "netstandardapp1.5": { "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" } }, "net451": { diff --git a/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L0/project.json b/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L0/project.json index fcc144ea9..9991469e1 100644 --- a/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L0/project.json +++ b/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L0/project.json @@ -6,7 +6,7 @@ "dependencies": { "L11": "1.0.0-*", "L12": "1.0.0-*", - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L11/project.json b/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L11/project.json index 8376c0ece..dfd5e2b6b 100644 --- a/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L11/project.json +++ b/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L11/project.json @@ -3,7 +3,7 @@ "dependencies": { "L12": "1.0.0-*", "L21": "1.0.0-*", - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L12/project.json b/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L12/project.json index cd66d6fe2..dc1ab81c7 100644 --- a/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L12/project.json +++ b/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L12/project.json @@ -2,7 +2,7 @@ "version": "1.0.0-*", "dependencies": { "L22": "1.0.0-*", - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L21/project.json b/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L21/project.json index 5b373c398..749f006b8 100644 --- a/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L21/project.json +++ b/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L21/project.json @@ -1,7 +1,7 @@ { "version": "1.0.0-*", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L22/project.json b/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L22/project.json index 5b373c398..749f006b8 100644 --- a/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L22/project.json +++ b/TestAssets/TestProjects/TestProjectToProjectDependencies/src/L22/project.json @@ -1,7 +1,7 @@ { "version": "1.0.0-*", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestProjectWithCultureSpecificResource/project.json b/TestAssets/TestProjects/TestProjectWithCultureSpecificResource/project.json index 4b1d0a3e8..2db8e45bc 100644 --- a/TestAssets/TestProjects/TestProjectWithCultureSpecificResource/project.json +++ b/TestAssets/TestProjects/TestProjectWithCultureSpecificResource/project.json @@ -4,7 +4,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24008" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestProjectWithResource/project.json b/TestAssets/TestProjects/TestProjectWithResource/project.json index 9ab4c5256..2db8e45bc 100644 --- a/TestAssets/TestProjects/TestProjectWithResource/project.json +++ b/TestAssets/TestProjects/TestProjectWithResource/project.json @@ -4,7 +4,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestSimpleIncrementalApp/project.json b/TestAssets/TestProjects/TestSimpleIncrementalApp/project.json index ae5c0a08c..2348dec60 100644 --- a/TestAssets/TestProjects/TestSimpleIncrementalApp/project.json +++ b/TestAssets/TestProjects/TestSimpleIncrementalApp/project.json @@ -5,7 +5,7 @@ "xmlDoc": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": { diff --git a/TestAssets/TestProjects/TestSystemCoreReference/project.json b/TestAssets/TestProjects/TestSystemCoreReference/project.json index 85c5ce812..fd3d0e4c6 100644 --- a/TestAssets/TestProjects/TestSystemCoreReference/project.json +++ b/TestAssets/TestProjects/TestSystemCoreReference/project.json @@ -4,7 +4,7 @@ "frameworks": { "netstandardapp1.5": { "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" } }, "net451": { diff --git a/TestAssets/TestProjects/TestSystemReference/project.json b/TestAssets/TestProjects/TestSystemReference/project.json index a7841c7ce..2ab04ac7e 100644 --- a/TestAssets/TestProjects/TestSystemReference/project.json +++ b/TestAssets/TestProjects/TestSystemReference/project.json @@ -4,7 +4,7 @@ "frameworks": { "netstandardapp1.5": { "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" } }, "net451": { diff --git a/pkg/deps/project.json b/pkg/deps/project.json index db7b63dec..f141d79da 100644 --- a/pkg/deps/project.json +++ b/pkg/deps/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc2-24015" + "Microsoft.NETCore.Platforms": "1.0.1-rc2-24018" }, "frameworks": { "dnxcore50": { diff --git a/pkg/dir.props b/pkg/dir.props index 24ae6ddbc..ea10eda90 100644 --- a/pkg/dir.props +++ b/pkg/dir.props @@ -23,7 +23,7 @@ $(PackagesOutDir) - $(ProjectDir)packages\Microsoft.NETCore.Platforms\1.0.1-rc2-24015\runtime.json + $(ProjectDir)packages\Microsoft.NETCore.Platforms\1.0.1-rc2-24018\runtime.json $(ProjectDir)projects/dotnet_library_license.txt $(ProjectDir)projects/ThirdPartyNotices.txt $(ProjectDir)projects/descriptions.json diff --git a/pkg/projects/Microsoft.NETCore.App/project.json b/pkg/projects/Microsoft.NETCore.App/project.json index 9daa8e27d..c8ff891db 100644 --- a/pkg/projects/Microsoft.NETCore.App/project.json +++ b/pkg/projects/Microsoft.NETCore.App/project.json @@ -2,42 +2,42 @@ "dependencies": { "Microsoft.CodeAnalysis.CSharp": "1.3.0-beta1-20160410-01 ", "Microsoft.CodeAnalysis.VisualBasic": "1.3.0-beta1-20160410-01 ", - "Microsoft.CSharp": "4.0.1-rc2-24015", - "Microsoft.VisualBasic": "10.0.1-rc2-24015", - "NETStandard.Library": "1.5.0-rc2-24015", - "System.Buffers": "4.0.0-rc2-24015", - "System.Collections.Immutable": "1.2.0-rc2-24015", - "System.ComponentModel": "4.0.1-rc2-24015", - "System.ComponentModel.Annotations": "4.1.0-rc2-24015", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-24015", - "System.Diagnostics.Process": "4.1.0-rc2-24015", - "System.Dynamic.Runtime": "4.0.11-rc2-24015", - "System.Globalization.Extensions": "4.0.1-rc2-24015", - "System.IO.FileSystem.Watcher": "4.0.0-rc2-24015", - "System.IO.MemoryMappedFiles": "4.0.0-rc2-24015", - "System.IO.UnmanagedMemoryStream": "4.0.1-rc2-24015", - "System.Linq.Expressions": "4.0.11-rc2-24015", - "System.Linq.Parallel": "4.0.1-rc2-24015", - "System.Linq.Queryable": "4.0.1-rc2-24015", - "System.Net.NameResolution": "4.0.0-rc2-24015", - "System.Net.Requests": "4.0.11-rc2-24015", - "System.Net.Security": "4.0.0-rc2-24015", - "System.Net.WebHeaderCollection": "4.0.1-rc2-24015", - "System.Numerics.Vectors": "4.1.1-rc2-24015", - "System.Reflection.DispatchProxy": "4.0.1-rc2-24015", - "System.Reflection.Metadata": "1.3.0-rc2-24015", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24015", - "System.Resources.Reader": "4.0.0-rc2-24015", - "System.Runtime.Loader": "4.0.0-rc2-24015", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24015", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24015", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24015", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc2-24015", - "System.Threading.Tasks.Dataflow": "4.6.0-rc2-24015", - "System.Threading.Tasks.Extensions": "4.0.0-rc2-24015", - "System.Threading.Tasks.Parallel": "4.0.1-rc2-24015", - "System.Threading.Thread": "4.0.0-rc2-24015", - "System.Threading.ThreadPool": "4.0.10-rc2-24015" + "Microsoft.CSharp": "4.0.1-rc2-24018", + "Microsoft.VisualBasic": "10.0.1-rc2-24018", + "NETStandard.Library": "1.5.0-rc2-24018", + "System.Buffers": "4.0.0-rc2-24018", + "System.Collections.Immutable": "1.2.0-rc2-24018", + "System.ComponentModel": "4.0.1-rc2-24018", + "System.ComponentModel.Annotations": "4.1.0-rc2-24018", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-24018", + "System.Diagnostics.Process": "4.1.0-rc2-24018", + "System.Dynamic.Runtime": "4.0.11-rc2-24018", + "System.Globalization.Extensions": "4.0.1-rc2-24018", + "System.IO.FileSystem.Watcher": "4.0.0-rc2-24018", + "System.IO.MemoryMappedFiles": "4.0.0-rc2-24018", + "System.IO.UnmanagedMemoryStream": "4.0.1-rc2-24018", + "System.Linq.Expressions": "4.0.11-rc2-24018", + "System.Linq.Parallel": "4.0.1-rc2-24018", + "System.Linq.Queryable": "4.0.1-rc2-24018", + "System.Net.NameResolution": "4.0.0-rc2-24018", + "System.Net.Requests": "4.0.11-rc2-24018", + "System.Net.Security": "4.0.0-rc2-24018", + "System.Net.WebHeaderCollection": "4.0.1-rc2-24018", + "System.Numerics.Vectors": "4.1.1-rc2-24018", + "System.Reflection.DispatchProxy": "4.0.1-rc2-24018", + "System.Reflection.Metadata": "1.3.0-rc2-24018", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24018", + "System.Resources.Reader": "4.0.0-rc2-24018", + "System.Runtime.Loader": "4.0.0-rc2-24018", + "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24018", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-24018", + "System.Security.Cryptography.Primitives": "4.0.0-rc2-24018", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc2-24018", + "System.Threading.Tasks.Dataflow": "4.6.0-rc2-24018", + "System.Threading.Tasks.Extensions": "4.0.0-rc2-24018", + "System.Threading.Tasks.Parallel": "4.0.1-rc2-24018", + "System.Threading.Thread": "4.0.0-rc2-24018", + "System.Threading.ThreadPool": "4.0.10-rc2-24018" }, "frameworks": { "netstandard1.5": {} diff --git a/scripts/Microsoft.DotNet.Cli.Build.Framework/project.json b/scripts/Microsoft.DotNet.Cli.Build.Framework/project.json index 332d20d57..266cc6afc 100644 --- a/scripts/Microsoft.DotNet.Cli.Build.Framework/project.json +++ b/scripts/Microsoft.DotNet.Cli.Build.Framework/project.json @@ -1,8 +1,8 @@ { "version": "1.0.0-*", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015", - "System.Diagnostics.Process": "4.1.0-rc2-24015", + "NETStandard.Library": "1.5.0-rc2-24018", + "System.Diagnostics.Process": "4.1.0-rc2-24018", "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-20100" }, "frameworks": { diff --git a/scripts/dotnet-cli-build/CompileTargets.cs b/scripts/dotnet-cli-build/CompileTargets.cs index a9592e797..8d22cc6de 100644 --- a/scripts/dotnet-cli-build/CompileTargets.cs +++ b/scripts/dotnet-cli-build/CompileTargets.cs @@ -17,7 +17,7 @@ namespace Microsoft.DotNet.Cli.Build { public class CompileTargets { - public static readonly string CoreCLRVersion = "1.0.2-rc2-24015"; + public static readonly string CoreCLRVersion = "1.0.2-rc2-24018"; public static readonly bool IsWinx86 = CurrentPlatform.IsWindows && CurrentArchitecture.Isx86; public static readonly string[] BinariesForCoreHost = new[] diff --git a/scripts/dotnet-cli-build/project.json b/scripts/dotnet-cli-build/project.json index 966d8d87a..eb8c52386 100755 --- a/scripts/dotnet-cli-build/project.json +++ b/scripts/dotnet-cli-build/project.json @@ -5,13 +5,13 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015", - "Microsoft.CSharp": "4.0.1-rc2-24015", + "NETStandard.Library": "1.5.0-rc2-24018", + "Microsoft.CSharp": "4.0.1-rc2-24018", "Microsoft.DotNet.Cli.Build.Framework": "1.0.0-*", - "System.Dynamic.Runtime": "4.0.11-rc2-24015", - "System.Reflection.Metadata": "1.3.0-rc2-24015", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", - "System.Xml.XmlSerializer": "4.0.11-rc2-24015", + "System.Dynamic.Runtime": "4.0.11-rc2-24018", + "System.Reflection.Metadata": "1.3.0-rc2-24018", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", + "System.Xml.XmlSerializer": "4.0.11-rc2-24018", "WindowsAzure.Storage": "6.2.2-preview" }, "frameworks": { diff --git a/scripts/update-dependencies/project.json b/scripts/update-dependencies/project.json index 30e563a6b..c8143ed77 100644 --- a/scripts/update-dependencies/project.json +++ b/scripts/update-dependencies/project.json @@ -5,9 +5,9 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015", - "Microsoft.CSharp": "4.0.1-rc2-24015", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "NETStandard.Library": "1.5.0-rc2-24018", + "Microsoft.CSharp": "4.0.1-rc2-24018", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "Microsoft.DotNet.Cli.Build.Framework": "1.0.0-*", "NuGet.Versioning": "3.5.0-beta-1178", "Newtonsoft.Json": "7.0.1", diff --git a/src/Microsoft.DotNet.Cli.Utils/project.json b/src/Microsoft.DotNet.Cli.Utils/project.json index f2c080612..d8d783004 100644 --- a/src/Microsoft.DotNet.Cli.Utils/project.json +++ b/src/Microsoft.DotNet.Cli.Utils/project.json @@ -25,7 +25,7 @@ "portable-net45+wp80+win8+wpa81+dnxcore50" ], "dependencies": { - "System.Diagnostics.Process": "4.1.0-rc2-24015" + "System.Diagnostics.Process": "4.1.0-rc2-24018" } } } diff --git a/src/Microsoft.DotNet.Files/project.json b/src/Microsoft.DotNet.Files/project.json index 896458724..5efff7fde 100644 --- a/src/Microsoft.DotNet.Files/project.json +++ b/src/Microsoft.DotNet.Files/project.json @@ -7,7 +7,7 @@ "dependencies": { "Microsoft.DotNet.Cli.Utils": "1.0.0-*", "Microsoft.DotNet.ProjectModel": "1.0.0-*", - "System.Linq.Expressions": "4.0.11-rc2-24015" + "System.Linq.Expressions": "4.0.11-rc2-24018" }, "frameworks": { "netstandard1.5": { diff --git a/src/Microsoft.DotNet.ProjectModel.Loader/project.json b/src/Microsoft.DotNet.ProjectModel.Loader/project.json index 641952616..fcebdb07a 100644 --- a/src/Microsoft.DotNet.ProjectModel.Loader/project.json +++ b/src/Microsoft.DotNet.ProjectModel.Loader/project.json @@ -5,7 +5,7 @@ }, "dependencies": { "Microsoft.DotNet.ProjectModel": "1.0.0-*", - "System.Runtime.Loader": "4.0.0-rc2-24015" + "System.Runtime.Loader": "4.0.0-rc2-24018" }, "frameworks": { "netstandard1.5": { diff --git a/src/Microsoft.DotNet.ProjectModel/project.json b/src/Microsoft.DotNet.ProjectModel/project.json index 7302ba9bc..b47c61125 100644 --- a/src/Microsoft.DotNet.ProjectModel/project.json +++ b/src/Microsoft.DotNet.ProjectModel/project.json @@ -18,7 +18,7 @@ "Newtonsoft.Json": "7.0.1", "NuGet.Packaging": "3.5.0-beta-1178", "NuGet.RuntimeModel": "3.5.0-beta-1178", - "System.Reflection.Metadata": "1.3.0-rc2-24015" + "System.Reflection.Metadata": "1.3.0-rc2-24018" }, "frameworks": { "net451": { @@ -40,13 +40,13 @@ "dotnet5.4" ], "dependencies": { - "Microsoft.CSharp": "4.0.1-rc2-24015", - "System.Dynamic.Runtime": "4.0.11-rc2-24015", - "System.Runtime.Loader": "4.0.0-rc2-24015", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24015", - "System.Threading.Thread": "4.0.0-rc2-24015", - "System.Xml.XDocument": "4.0.11-rc2-24015" + "Microsoft.CSharp": "4.0.1-rc2-24018", + "System.Dynamic.Runtime": "4.0.11-rc2-24018", + "System.Runtime.Loader": "4.0.0-rc2-24018", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", + "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24018", + "System.Threading.Thread": "4.0.0-rc2-24018", + "System.Xml.XDocument": "4.0.11-rc2-24018" } } } diff --git a/src/Microsoft.Extensions.DependencyModel/project.json b/src/Microsoft.Extensions.DependencyModel/project.json index f60ddf673..2bb06027c 100644 --- a/src/Microsoft.Extensions.DependencyModel/project.json +++ b/src/Microsoft.Extensions.DependencyModel/project.json @@ -26,8 +26,8 @@ "netstandard1.5": { "imports": "portable-net45+wp80+win8+wpa81+dnxcore50", "dependencies": { - "System.Diagnostics.Debug": "4.0.11-rc2-24015", - "System.Dynamic.Runtime": "4.0.11-rc2-24015" + "System.Diagnostics.Debug": "4.0.11-rc2-24018", + "System.Dynamic.Runtime": "4.0.11-rc2-24018" } } }, diff --git a/src/Microsoft.Extensions.Testing.Abstractions/project.json b/src/Microsoft.Extensions.Testing.Abstractions/project.json index f21f9747f..0b716de8d 100644 --- a/src/Microsoft.Extensions.Testing.Abstractions/project.json +++ b/src/Microsoft.Extensions.Testing.Abstractions/project.json @@ -25,8 +25,8 @@ "portable-net45+win8" ], "dependencies": { - "System.Resources.ResourceManager": "4.0.1-rc2-24015", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24015" + "System.Resources.ResourceManager": "4.0.1-rc2-24018", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24018" } } }, diff --git a/src/dotnet/project.json b/src/dotnet/project.json index 8dd451749..5bee8a27b 100644 --- a/src/dotnet/project.json +++ b/src/dotnet/project.json @@ -22,8 +22,8 @@ }, "NuGet.CommandLine.XPlat": "3.5.0-beta-1178", "Newtonsoft.Json": "7.0.1", - "System.Text.Encoding.CodePages": "4.0.1-rc2-24015", - "System.Diagnostics.FileVersionInfo": "4.0.0-rc2-24015", + "System.Text.Encoding.CodePages": "4.0.1-rc2-24018", + "System.Diagnostics.FileVersionInfo": "4.0.0-rc2-24018", "System.CommandLine": "0.1.0-e160323-1", "Microsoft.ApplicationInsights": "2.0.0", "Microsoft.DotNet.ProjectModel": "1.0.0-*", @@ -38,19 +38,19 @@ "version": "1.0.0-rc2-20221" }, "Microsoft.Extensions.Testing.Abstractions": "1.0.0-*", - "Microsoft.NETCore.ConsoleHost": "1.0.0-rc2-24015", - "Microsoft.NETCore.TestHost": "1.0.0-rc2-24015", + "Microsoft.NETCore.ConsoleHost": "1.0.0-rc2-24018", + "Microsoft.NETCore.TestHost": "1.0.0-rc2-24018", "Microsoft.NETCore.App": { "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Diagnostics.TraceSource": "4.0.0-rc2-24015", - "System.Diagnostics.TextWriterTraceListener": "4.0.0-rc2-24015", - "System.Resources.ReaderWriter": "4.0.0-rc2-24015", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", - "System.Private.DataContractSerialization": "4.1.1-rc2-24015", + "System.Diagnostics.TraceSource": "4.0.0-rc2-24018", + "System.Diagnostics.TextWriterTraceListener": "4.0.0-rc2-24018", + "System.Resources.ReaderWriter": "4.0.0-rc2-24018", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", + "System.Private.DataContractSerialization": "4.1.1-rc2-24018", "Microsoft.Win32.Registry": { - "version": "4.0.0-rc2-24015", + "version": "4.0.0-rc2-24018", "exclude": "compile" } }, diff --git a/test/ArgumentForwardingTests/project.json b/test/ArgumentForwardingTests/project.json index e6d73dbb4..d199b4697 100644 --- a/test/ArgumentForwardingTests/project.json +++ b/test/ArgumentForwardingTests/project.json @@ -8,7 +8,7 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "Microsoft.DotNet.ProjectModel": { "target": "project" }, diff --git a/test/EndToEnd/project.json b/test/EndToEnd/project.json index a8c499c53..63f05dee8 100644 --- a/test/EndToEnd/project.json +++ b/test/EndToEnd/project.json @@ -8,7 +8,7 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "Microsoft.DotNet.ProjectModel": { "target": "project" }, diff --git a/test/Kestrel.Tests/project.json b/test/Kestrel.Tests/project.json index d8f1f7b0c..4986a3397 100644 --- a/test/Kestrel.Tests/project.json +++ b/test/Kestrel.Tests/project.json @@ -5,7 +5,7 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "Microsoft.DotNet.Tools.Tests.Utilities": { "target": "project" }, diff --git a/test/Microsoft.DotNet.Cli.Utils.Tests/project.json b/test/Microsoft.DotNet.Cli.Utils.Tests/project.json index 68ce078e3..c63d4ff68 100644 --- a/test/Microsoft.DotNet.Cli.Utils.Tests/project.json +++ b/test/Microsoft.DotNet.Cli.Utils.Tests/project.json @@ -8,8 +8,8 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Diagnostics.TraceSource": "4.0.0-rc2-24015", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "System.Diagnostics.TraceSource": "4.0.0-rc2-24018", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "NuGet.Versioning": "3.5.0-beta-1178", "NuGet.Packaging": "3.5.0-beta-1178", "NuGet.Frameworks": "3.5.0-beta-1178", diff --git a/test/Microsoft.DotNet.Compiler.Common.Tests/project.json b/test/Microsoft.DotNet.Compiler.Common.Tests/project.json index 0cb55dafe..a0dc908cf 100644 --- a/test/Microsoft.DotNet.Compiler.Common.Tests/project.json +++ b/test/Microsoft.DotNet.Compiler.Common.Tests/project.json @@ -5,7 +5,7 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "Microsoft.DotNet.Tools.Tests.Utilities": { "target": "project" }, diff --git a/test/Microsoft.DotNet.ProjectModel.Tests/project.json b/test/Microsoft.DotNet.ProjectModel.Tests/project.json index 268048235..0eb615e6e 100644 --- a/test/Microsoft.DotNet.ProjectModel.Tests/project.json +++ b/test/Microsoft.DotNet.ProjectModel.Tests/project.json @@ -8,7 +8,7 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "Microsoft.DotNet.ProjectModel": { "target": "project" }, diff --git a/test/Microsoft.DotNet.Tools.Tests.Utilities/project.json b/test/Microsoft.DotNet.Tools.Tests.Utilities/project.json index 017dc79c2..38a069902 100644 --- a/test/Microsoft.DotNet.Tools.Tests.Utilities/project.json +++ b/test/Microsoft.DotNet.Tools.Tests.Utilities/project.json @@ -9,9 +9,9 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", - "System.Collections.Immutable": "1.2.0-rc2-24015", - "System.Net.NetworkInformation": "4.1.0-rc2-24015", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", + "System.Collections.Immutable": "1.2.0-rc2-24018", + "System.Net.NetworkInformation": "4.1.0-rc2-24018", "FluentAssertions": "4.0.0", "xunit": "2.1.0", "dotnet-test-xunit": "1.0.0-dev-140469-38", diff --git a/test/Microsoft.Extensions.DependencyModel.Tests/project.json b/test/Microsoft.Extensions.DependencyModel.Tests/project.json index ce305af21..db3af3578 100644 --- a/test/Microsoft.Extensions.DependencyModel.Tests/project.json +++ b/test/Microsoft.Extensions.DependencyModel.Tests/project.json @@ -9,7 +9,7 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Diagnostics.TraceSource": "4.0.0-rc2-24015", + "System.Diagnostics.TraceSource": "4.0.0-rc2-24018", "Microsoft.DotNet.Tools.Tests.Utilities": { "target": "project" }, diff --git a/test/TestingAbstractions/Microsoft.Extensions.Testing.Abstractions.Tests/project.json b/test/TestingAbstractions/Microsoft.Extensions.Testing.Abstractions.Tests/project.json index 540b49793..b365043d5 100644 --- a/test/TestingAbstractions/Microsoft.Extensions.Testing.Abstractions.Tests/project.json +++ b/test/TestingAbstractions/Microsoft.Extensions.Testing.Abstractions.Tests/project.json @@ -8,7 +8,7 @@ "Microsoft.Extensions.Testing.Abstractions": { "target": "project" }, - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "Microsoft.DotNet.Tools.Tests.Utilities": { "target": "project" }, diff --git a/test/TestingAbstractions/Microsoft.Extensions.Testing.Abstractions.UnitTests/project.json b/test/TestingAbstractions/Microsoft.Extensions.Testing.Abstractions.UnitTests/project.json index 549870400..81c2864c7 100644 --- a/test/TestingAbstractions/Microsoft.Extensions.Testing.Abstractions.UnitTests/project.json +++ b/test/TestingAbstractions/Microsoft.Extensions.Testing.Abstractions.UnitTests/project.json @@ -8,8 +8,8 @@ "Microsoft.Extensions.Testing.Abstractions": { "target": "project" }, - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", - "System.Diagnostics.Process": "4.1.0-rc2-24015", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", + "System.Diagnostics.Process": "4.1.0-rc2-24018", "TestAppWithPortablePdbs": { "target": "project" }, diff --git a/test/TestingAbstractions/TestAppWithFullPdbs/project.json b/test/TestingAbstractions/TestAppWithFullPdbs/project.json index bd09183d6..c3b4d0e25 100644 --- a/test/TestingAbstractions/TestAppWithFullPdbs/project.json +++ b/test/TestingAbstractions/TestAppWithFullPdbs/project.json @@ -4,7 +4,7 @@ "debugType": "full" }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandard1.5": { diff --git a/test/TestingAbstractions/TestAppWithPortablePdbs/project.json b/test/TestingAbstractions/TestAppWithPortablePdbs/project.json index 0640555b1..4304f6b6b 100644 --- a/test/TestingAbstractions/TestAppWithPortablePdbs/project.json +++ b/test/TestingAbstractions/TestAppWithPortablePdbs/project.json @@ -4,7 +4,7 @@ "debugType": "portable" }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandard1.5": { diff --git a/test/dotnet-build.Tests/project.json b/test/dotnet-build.Tests/project.json index 52daf7d4b..d43e6e5ac 100644 --- a/test/dotnet-build.Tests/project.json +++ b/test/dotnet-build.Tests/project.json @@ -5,7 +5,7 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "Microsoft.DotNet.Tools.Tests.Utilities": { "target": "project" }, diff --git a/test/dotnet-compile.Tests/project.json b/test/dotnet-compile.Tests/project.json index 5bb56310b..b481e2837 100644 --- a/test/dotnet-compile.Tests/project.json +++ b/test/dotnet-compile.Tests/project.json @@ -5,7 +5,7 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "Microsoft.DotNet.Tools.Tests.Utilities": { "target": "project" }, diff --git a/test/dotnet-compile.UnitTests/project.json b/test/dotnet-compile.UnitTests/project.json index 1786b5364..51c96375c 100644 --- a/test/dotnet-compile.UnitTests/project.json +++ b/test/dotnet-compile.UnitTests/project.json @@ -18,7 +18,7 @@ "target": "project" }, "Microsoft.Win32.Registry": { - "version": "4.0.0-rc2-24015", + "version": "4.0.0-rc2-24018", "exclude": "Compile" }, "Microsoft.DotNet.ProjectModel": { diff --git a/test/dotnet-pack.Tests/project.json b/test/dotnet-pack.Tests/project.json index d6887e34d..7163aae20 100644 --- a/test/dotnet-pack.Tests/project.json +++ b/test/dotnet-pack.Tests/project.json @@ -5,8 +5,8 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", - "System.IO.Compression.ZipFile": "4.0.1-rc2-24015", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", + "System.IO.Compression.ZipFile": "4.0.1-rc2-24018", "Microsoft.DotNet.Tools.Tests.Utilities": { "target": "project" }, diff --git a/test/dotnet-projectmodel-server.Tests/project.json b/test/dotnet-projectmodel-server.Tests/project.json index 129bce428..d05af9995 100644 --- a/test/dotnet-projectmodel-server.Tests/project.json +++ b/test/dotnet-projectmodel-server.Tests/project.json @@ -8,7 +8,7 @@ "target": "project" }, "Microsoft.Win32.Registry": { - "version": "4.0.0-rc2-24015", + "version": "4.0.0-rc2-24018", "exclude": "Compile" }, "Microsoft.DotNet.Tools.Tests.Utilities": { @@ -19,7 +19,7 @@ }, "xunit": "2.1.0", "dotnet-test-xunit": "1.0.0-dev-140469-38", - "System.Net.NameResolution": "4.0.0-rc2-24015" + "System.Net.NameResolution": "4.0.0-rc2-24018" }, "frameworks": { "netcoreapp1.0": { diff --git a/test/dotnet-publish.Tests/project.json b/test/dotnet-publish.Tests/project.json index cc384e919..5501f1578 100644 --- a/test/dotnet-publish.Tests/project.json +++ b/test/dotnet-publish.Tests/project.json @@ -5,7 +5,7 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "Microsoft.DotNet.TestFramework": "1.0.0-*", "Microsoft.DotNet.Tools.Tests.Utilities": { "target": "project" @@ -13,7 +13,7 @@ "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00206", "dotnet-test-xunit": "1.0.0-dev-140469-38", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-24015" + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-24018" }, "frameworks": { "netcoreapp1.0": { diff --git a/test/dotnet-resgen.Tests/project.json b/test/dotnet-resgen.Tests/project.json index 52e90871a..e70addab0 100644 --- a/test/dotnet-resgen.Tests/project.json +++ b/test/dotnet-resgen.Tests/project.json @@ -5,7 +5,7 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "Microsoft.DotNet.Tools.Tests.Utilities": { "target": "project" }, diff --git a/test/dotnet-run.Tests/project.json b/test/dotnet-run.Tests/project.json index d8f1f7b0c..4986a3397 100644 --- a/test/dotnet-run.Tests/project.json +++ b/test/dotnet-run.Tests/project.json @@ -5,7 +5,7 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "Microsoft.DotNet.Tools.Tests.Utilities": { "target": "project" }, diff --git a/test/dotnet-test.Tests/project.json b/test/dotnet-test.Tests/project.json index f6e212d13..ded2ee5c0 100644 --- a/test/dotnet-test.Tests/project.json +++ b/test/dotnet-test.Tests/project.json @@ -15,9 +15,9 @@ "Microsoft.DotNet.ProjectModel": { "target": "project" }, - "System.Net.NameResolution": "4.0.0-rc2-24015", - "System.Net.Sockets": "4.1.0-rc2-24015", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "System.Net.NameResolution": "4.0.0-rc2-24018", + "System.Net.Sockets": "4.1.0-rc2-24018", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "xunit": "2.1.0", "dotnet-test-xunit": "1.0.0-dev-140469-38" }, diff --git a/test/dotnet-test.UnitTests/project.json b/test/dotnet-test.UnitTests/project.json index 6cf2b5b10..108ef4257 100644 --- a/test/dotnet-test.UnitTests/project.json +++ b/test/dotnet-test.UnitTests/project.json @@ -10,7 +10,7 @@ "target": "project" }, "Microsoft.Win32.Registry": { - "version": "4.0.0-rc2-24015", + "version": "4.0.0-rc2-24018", "exclude": "Compile" }, "xunit": "2.1.0", diff --git a/test/dotnet.Tests/project.json b/test/dotnet.Tests/project.json index f75517803..074d0ca9b 100644 --- a/test/dotnet.Tests/project.json +++ b/test/dotnet.Tests/project.json @@ -5,7 +5,7 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24015", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24018", "Microsoft.DotNet.Tools.Tests.Utilities": { "target": "project" }, diff --git a/tools/MultiProjectValidator/project.json b/tools/MultiProjectValidator/project.json index e01518c2c..abfc6293c 100644 --- a/tools/MultiProjectValidator/project.json +++ b/tools/MultiProjectValidator/project.json @@ -5,7 +5,7 @@ "emitEntryPoint": true }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24015", + "NETStandard.Library": "1.5.0-rc2-24018", "Microsoft.DotNet.ProjectModel": "1.0.0-*", "Microsoft.DotNet.Cli.Utils": "1.0.0-*" }, diff --git a/tools/RuntimeGraphGenerator/project.json b/tools/RuntimeGraphGenerator/project.json index c9903587f..24e6ba1b4 100644 --- a/tools/RuntimeGraphGenerator/project.json +++ b/tools/RuntimeGraphGenerator/project.json @@ -7,12 +7,12 @@ "NuGet.RuntimeModel": "3.5.0-beta-1178", "NuGet.Versioning": "3.5.0-beta-1178", "System.CommandLine": "0.1.0-e160119-1", - "System.Runtime.Serialization.Json": "4.0.2-rc2-24015", + "System.Runtime.Serialization.Json": "4.0.2-rc2-24018", "Microsoft.DotNet.ProjectModel": "1.0.0-*", "Microsoft.DotNet.Cli.Utils": "1.0.0-*", "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-20100", - "Microsoft.NETCore.ConsoleHost": "1.0.0-rc2-24015", - "NETStandard.Library": "1.5.0-rc2-24015" + "Microsoft.NETCore.ConsoleHost": "1.0.0-rc2-24018", + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": {