From 390946f5312c8a0b52f03b709c0b28106f32962a Mon Sep 17 00:00:00 2001 From: Peter Marcu Date: Fri, 22 Apr 2016 16:01:51 -0700 Subject: [PATCH] Revert "Updating CoreFX to rc2-24022" --- .../DesktopAppWithNativeDep/project.json | 2 +- .../KestrelDesktop/project.json | 2 +- .../KestrelDesktopForce32/project.json | 2 +- .../KestrelDesktopWithRuntimes/project.json | 2 +- .../src/EmptyLibrary/project.json | 2 +- .../TestLibrary/project.json | 2 +- .../project.json | 4 +- .../ProjectWithTests/project.json | 4 +- .../TestLibraryWithResources/project.json | 2 +- .../TestLibrary/project.json | 4 +- .../TestLibrary/project.json | 4 +- .../TestLibrary/project.json | 4 +- .../TestLibrary2/project.json | 4 +- .../TestLibraryWithAppDependency/project.json | 4 +- .../TestLibraryGreater/project.json | 5 +- .../TestLibraryLesser/project.json | 5 +- .../TestLibraryWithAnalyzer/project.json | 4 +- .../TestLibraryWithConfiguration/project.json | 4 +- .../project.json | 26 +++---- .../TestMicrosoftCSharpReference/project.json | 2 +- .../project.json | 4 +- 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 ++-- .../update-dependencies/UpdateFilesTargets.cs | 6 -- 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 | 4 +- .../TestAppWithPortablePdbs/project.json | 4 +- 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 +- 61 files changed, 162 insertions(+), 162 deletions(-) diff --git a/TestAssets/DesktopTestProjects/DesktopAppWithNativeDep/project.json b/TestAssets/DesktopTestProjects/DesktopAppWithNativeDep/project.json index 0c6d4313e..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-24022" + "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 1a9905ea7..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-24022" + "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 d83e8dc0f..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-24022" + "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 e2e0b5e54..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-24022" + "Microsoft.NETCore.Platforms": "1.0.0-rc2-24018" }, "compilationOptions": { "emitEntryPoint": true diff --git a/TestAssets/ProjectModelServer/DthTestProjects/src/EmptyLibrary/project.json b/TestAssets/ProjectModelServer/DthTestProjects/src/EmptyLibrary/project.json index add897400..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-24022" + "NETStandard.Library": "1.5.0-rc2-24018" } } } diff --git a/TestAssets/TestProjects/FSharpTestProjects/TestLibrary/project.json b/TestAssets/TestProjects/FSharpTestProjects/TestLibrary/project.json index 361b43ee8..1129cfe83 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-24022" + "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 dfc9c4c7c..c3941cf5e 100644 --- a/TestAssets/TestProjects/LibraryWithOutputAssemblyName/project.json +++ b/TestAssets/TestProjects/LibraryWithOutputAssemblyName/project.json @@ -3,9 +3,9 @@ "outputName": "MyLibrary" }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24022" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { - "netstandard1.5": {} + "netstandard1.5": { } } } diff --git a/TestAssets/TestProjects/ProjectWithTests/project.json b/TestAssets/TestProjects/ProjectWithTests/project.json index acb9f131b..689eabc08 100644 --- a/TestAssets/TestProjects/ProjectWithTests/project.json +++ b/TestAssets/TestProjects/ProjectWithTests/project.json @@ -5,8 +5,8 @@ "type": "platform", "version": "1.0.0-rc2-*" }, - "System.Linq.Expressions": "4.0.11-rc2-24022", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24022", + "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/TestProjects/ResourcesTests/TestLibraryWithResources/project.json b/TestAssets/TestProjects/ResourcesTests/TestLibraryWithResources/project.json index b5f8326fe..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-24022" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandard1.5": { diff --git a/TestAssets/TestProjects/TestAppCompilationContext/TestLibrary/project.json b/TestAssets/TestProjects/TestAppCompilationContext/TestLibrary/project.json index 9041a0459..e13a3e770 100644 --- a/TestAssets/TestProjects/TestAppCompilationContext/TestLibrary/project.json +++ b/TestAssets/TestProjects/TestAppCompilationContext/TestLibrary/project.json @@ -10,9 +10,9 @@ ] }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24022" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { - "netstandard1.5": {} + "netstandard1.5": { } } } diff --git a/TestAssets/TestProjects/TestAppWithLibrary/TestLibrary/project.json b/TestAssets/TestProjects/TestAppWithLibrary/TestLibrary/project.json index 9041a0459..e13a3e770 100644 --- a/TestAssets/TestProjects/TestAppWithLibrary/TestLibrary/project.json +++ b/TestAssets/TestProjects/TestAppWithLibrary/TestLibrary/project.json @@ -10,9 +10,9 @@ ] }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24022" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { - "netstandard1.5": {} + "netstandard1.5": { } } } diff --git a/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary/project.json b/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary/project.json index 7002100bb..eb9a0ed64 100644 --- a/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary/project.json +++ b/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary/project.json @@ -10,9 +10,9 @@ ] }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24022" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { - "netcoreapp1.0": {} + "netcoreapp1.0": { } } } diff --git a/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary2/project.json b/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary2/project.json index 3ec64fec2..3b42f15ab 100644 --- a/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary2/project.json +++ b/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibrary2/project.json @@ -8,9 +8,9 @@ "target": "project", "version": "1.0.0-*" }, - "NETStandard.Library": "1.5.0-rc2-24022" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { - "netcoreapp1.0": {} + "netcoreapp1.0": { } } } diff --git a/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibraryWithAppDependency/project.json b/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibraryWithAppDependency/project.json index 1f55d617e..8cda79b57 100644 --- a/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibraryWithAppDependency/project.json +++ b/TestAssets/TestProjects/TestAppWithTransitiveAppDependency/TestLibraryWithAppDependency/project.json @@ -5,9 +5,9 @@ "target": "project", "version": "1.0.0-*" }, - "NETStandard.Library": "1.5.0-rc2-24022" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { - "netcoreapp1.0": {} + "netcoreapp1.0": { } } } diff --git a/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryGreater/project.json b/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryGreater/project.json index 0c2e0626c..e48f957d0 100644 --- a/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryGreater/project.json +++ b/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryGreater/project.json @@ -1,14 +1,17 @@ { "version": "1.0.0-*", + "testRunner": "xunit", + "dependencies": { "Newtonsoft.Json": "7.0.1" }, + "frameworks": { "net451": {}, "netstandard1.5": { "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24022" + "NETStandard.Library": "1.5.0-rc2-24018" }, "imports": "portable-net45+win8" } diff --git a/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryLesser/project.json b/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryLesser/project.json index 8fecfeea1..f1fe53e40 100644 --- a/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryLesser/project.json +++ b/TestAssets/TestProjects/TestBindingRedirectGeneration/TestLibraryLesser/project.json @@ -1,17 +1,20 @@ { "version": "1.0.0-*", + "testRunner": "xunit", + "dependencies": { "Newtonsoft.Json": "6.0.1", "TestLibraryGreater": { "target": "project" } }, + "frameworks": { "net451": {}, "netstandard1.5": { "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24022" + "NETStandard.Library": "1.5.0-rc2-24018" }, "imports": "portable-net45+win8" } diff --git a/TestAssets/TestProjects/TestLibraryWithAnalyzer/project.json b/TestAssets/TestProjects/TestLibraryWithAnalyzer/project.json index e00ef4fdc..d9bf3a1a1 100644 --- a/TestAssets/TestProjects/TestLibraryWithAnalyzer/project.json +++ b/TestAssets/TestProjects/TestLibraryWithAnalyzer/project.json @@ -1,13 +1,13 @@ { "version": "1.0.0-*", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24022", + "NETStandard.Library": "1.5.0-rc2-24018", "System.Runtime.Analyzers": { "version": "1.1.0", "type": "build" } }, "frameworks": { - "netstandard1.5": {} + "netstandard1.5": { } } } diff --git a/TestAssets/TestProjects/TestLibraryWithConfiguration/project.json b/TestAssets/TestProjects/TestLibraryWithConfiguration/project.json index 606a4bc8c..3ad347d9e 100644 --- a/TestAssets/TestProjects/TestLibraryWithConfiguration/project.json +++ b/TestAssets/TestProjects/TestLibraryWithConfiguration/project.json @@ -10,12 +10,12 @@ ] }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24022" + "NETStandard.Library": "1.5.0-rc2-24018" }, "configurations": { "Test": {} }, "frameworks": { - "netstandard1.5": {} + "netstandard1.5": { } } } diff --git a/TestAssets/TestProjects/TestLibraryWithMultipleFrameworks/project.json b/TestAssets/TestProjects/TestLibraryWithMultipleFrameworks/project.json index d8b4f3fc4..b640e4e13 100644 --- a/TestAssets/TestProjects/TestLibraryWithMultipleFrameworks/project.json +++ b/TestAssets/TestProjects/TestLibraryWithMultipleFrameworks/project.json @@ -6,29 +6,29 @@ "dependencies": {}, "frameworks": { "net20": { - "frameworkAssemblies": { - "System.Xml": {} - } + "frameworkAssemblies": { + "System.Xml": {} + } }, "net35": { - "frameworkAssemblies": { - "System.Xml": {} - } + "frameworkAssemblies": { + "System.Xml": {} + } }, "net40": { - "frameworkAssemblies": { - "System.Xml": {} - } + "frameworkAssemblies": { + "System.Xml": {} + } }, "net461": { - "frameworkAssemblies": { - "System.Xml": {} - } + "frameworkAssemblies": { + "System.Xml": {} + } }, "netstandard1.5": { "imports": "dnxcore50", "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24022" + "NETStandard.Library": "1.5.0-rc2-24018" } } } diff --git a/TestAssets/TestProjects/TestMicrosoftCSharpReference/project.json b/TestAssets/TestProjects/TestMicrosoftCSharpReference/project.json index 4b23a6f1d..36f6e2081 100644 --- a/TestAssets/TestProjects/TestMicrosoftCSharpReference/project.json +++ b/TestAssets/TestProjects/TestMicrosoftCSharpReference/project.json @@ -10,7 +10,7 @@ }, "net451": { "dependencies": { - "Microsoft.CSharp": "4.0.1-rc2-24022" + "Microsoft.CSharp": "4.0.1-rc2-24018" } } } diff --git a/TestAssets/TestProjects/TestMicrosoftCSharpReferenceMissingFramework/project.json b/TestAssets/TestProjects/TestMicrosoftCSharpReferenceMissingFramework/project.json index fef51b51b..353b6b488 100644 --- a/TestAssets/TestProjects/TestMicrosoftCSharpReferenceMissingFramework/project.json +++ b/TestAssets/TestProjects/TestMicrosoftCSharpReferenceMissingFramework/project.json @@ -10,12 +10,12 @@ }, "netcore50": { "dependencies": { - "System.Private.Uri": "4.0.1-rc2-24022" + "System.Private.Uri": "4.0.1-rc2-24018" } }, "net99": { "dependencies": { - "Microsoft.CSharp": "4.0.1-rc2-24022" + "Microsoft.CSharp": "4.0.1-rc2-24018" } } } diff --git a/pkg/deps/project.json b/pkg/deps/project.json index c26222c5a..f141d79da 100644 --- a/pkg/deps/project.json +++ b/pkg/deps/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc2-24022" + "Microsoft.NETCore.Platforms": "1.0.1-rc2-24018" }, "frameworks": { "dnxcore50": { diff --git a/pkg/dir.props b/pkg/dir.props index 86a87d6dc..ea10eda90 100644 --- a/pkg/dir.props +++ b/pkg/dir.props @@ -23,7 +23,7 @@ $(PackagesOutDir) - $(ProjectDir)packages\Microsoft.NETCore.Platforms\1.0.1-rc2-24022\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 d8ad19c91..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-24022", - "Microsoft.VisualBasic": "10.0.1-rc2-24022", - "NETStandard.Library": "1.5.0-rc2-24022", - "System.Buffers": "4.0.0-rc2-24022", - "System.Collections.Immutable": "1.2.0-rc2-24022", - "System.ComponentModel": "4.0.1-rc2-24022", - "System.ComponentModel.Annotations": "4.1.0-rc2-24022", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-24022", - "System.Diagnostics.Process": "4.1.0-rc2-24022", - "System.Dynamic.Runtime": "4.0.11-rc2-24022", - "System.Globalization.Extensions": "4.0.1-rc2-24022", - "System.IO.FileSystem.Watcher": "4.0.0-rc2-24022", - "System.IO.MemoryMappedFiles": "4.0.0-rc2-24022", - "System.IO.UnmanagedMemoryStream": "4.0.1-rc2-24022", - "System.Linq.Expressions": "4.0.11-rc2-24022", - "System.Linq.Parallel": "4.0.1-rc2-24022", - "System.Linq.Queryable": "4.0.1-rc2-24022", - "System.Net.NameResolution": "4.0.0-rc2-24022", - "System.Net.Requests": "4.0.11-rc2-24022", - "System.Net.Security": "4.0.0-rc2-24022", - "System.Net.WebHeaderCollection": "4.0.1-rc2-24022", - "System.Numerics.Vectors": "4.1.1-rc2-24022", - "System.Reflection.DispatchProxy": "4.0.1-rc2-24022", - "System.Reflection.Metadata": "1.3.0-rc2-24022", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24022", - "System.Resources.Reader": "4.0.0-rc2-24022", - "System.Runtime.Loader": "4.0.0-rc2-24022", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24022", - "System.Security.Cryptography.Encoding": "4.0.0-rc2-24022", - "System.Security.Cryptography.Primitives": "4.0.0-rc2-24022", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc2-24022", - "System.Threading.Tasks.Dataflow": "4.6.0-rc2-24022", - "System.Threading.Tasks.Extensions": "4.0.0-rc2-24022", - "System.Threading.Tasks.Parallel": "4.0.1-rc2-24022", - "System.Threading.Thread": "4.0.0-rc2-24022", - "System.Threading.ThreadPool": "4.0.10-rc2-24022" + "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 aae22ddba..3fc6976be 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-24022", - "System.Diagnostics.Process": "4.1.0-rc2-24022", + "NETStandard.Library": "1.5.0-rc2-24018", + "System.Diagnostics.Process": "4.1.0-rc2-24018", "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-20581" }, "frameworks": { diff --git a/scripts/dotnet-cli-build/CompileTargets.cs b/scripts/dotnet-cli-build/CompileTargets.cs index 74b13eb69..97771cb85 100644 --- a/scripts/dotnet-cli-build/CompileTargets.cs +++ b/scripts/dotnet-cli-build/CompileTargets.cs @@ -18,7 +18,7 @@ namespace Microsoft.DotNet.Cli.Build { public class CompileTargets { - public static readonly string CoreCLRVersion = "1.0.2-rc2-24022"; + 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 70d1a8ced..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-24022", - "Microsoft.CSharp": "4.0.1-rc2-24022", + "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-24022", - "System.Reflection.Metadata": "1.3.0-rc2-24022", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24022", - "System.Xml.XmlSerializer": "4.0.11-rc2-24022", + "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/UpdateFilesTargets.cs b/scripts/update-dependencies/UpdateFilesTargets.cs index f187b2d1e..ec94e39f6 100644 --- a/scripts/update-dependencies/UpdateFilesTargets.cs +++ b/scripts/update-dependencies/UpdateFilesTargets.cs @@ -74,12 +74,6 @@ namespace Microsoft.DotNet.Scripts continue; } - if (projectRoot == null) - { - c.Warn($"A non valid JSON file was encountered '{projectJsonFile}'. Skipping file."); - continue; - } - bool changedAnyPackage = FindAllDependencyProperties(projectRoot) .Select(dependencyProperty => ReplaceDependencyVersion(dependencyProperty, dependencyInfos)) .ToArray() diff --git a/scripts/update-dependencies/project.json b/scripts/update-dependencies/project.json index 25214e604..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-24022", - "Microsoft.CSharp": "4.0.1-rc2-24022", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24022", + "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 97be046cd..bc8a51d77 100644 --- a/src/Microsoft.DotNet.Cli.Utils/project.json +++ b/src/Microsoft.DotNet.Cli.Utils/project.json @@ -24,7 +24,7 @@ "portable-net45+wp80+win8+wpa81+dnxcore50" ], "dependencies": { - "System.Diagnostics.Process": "4.1.0-rc2-24022" + "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 f3528c9a2..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-24022" + "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 35cb34000..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-24022" + "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 f43f6ea9f..ea3de55dc 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-24022" + "System.Reflection.Metadata": "1.3.0-rc2-24018" }, "frameworks": { "net451": { @@ -40,13 +40,13 @@ "dotnet5.4" ], "dependencies": { - "Microsoft.CSharp": "4.0.1-rc2-24022", - "System.Dynamic.Runtime": "4.0.11-rc2-24022", - "System.Runtime.Loader": "4.0.0-rc2-24022", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24022", - "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24022", - "System.Threading.Thread": "4.0.0-rc2-24022", - "System.Xml.XDocument": "4.0.11-rc2-24022" + "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 b66d2a201..8926e9fd9 100644 --- a/src/Microsoft.Extensions.DependencyModel/project.json +++ b/src/Microsoft.Extensions.DependencyModel/project.json @@ -25,8 +25,8 @@ "netstandard1.5": { "imports": "portable-net45+wp80+win8+wpa81+dnxcore50", "dependencies": { - "System.Diagnostics.Debug": "4.0.11-rc2-24022", - "System.Dynamic.Runtime": "4.0.11-rc2-24022" + "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 61b4e1776..6ba119064 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-24022", - "System.Reflection.TypeExtensions": "4.1.0-rc2-24022" + "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 cc933681d..e6a5217d1 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-24022", - "System.Diagnostics.FileVersionInfo": "4.0.0-rc2-24022", + "System.Text.Encoding.CodePages": "4.0.1-rc2-24018", + "System.Diagnostics.FileVersionInfo": "4.0.0-rc2-24018", "Microsoft.ApplicationInsights": "2.0.0", "Microsoft.DotNet.ProjectModel": "1.0.0-*", "Microsoft.DotNet.Compiler.Common": "1.0.0-*", @@ -31,19 +31,19 @@ "Microsoft.Extensions.Logging": "1.0.0-rc2-20581", "Microsoft.Extensions.Logging.Console": "1.0.0-rc2-20581", "Microsoft.Extensions.Testing.Abstractions": "1.0.0-*", - "Microsoft.NETCore.ConsoleHost": "1.0.0-rc2-24022", - "Microsoft.NETCore.TestHost": "1.0.0-rc2-24022", + "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-24022", - "System.Diagnostics.TextWriterTraceListener": "4.0.0-rc2-24022", - "System.Resources.ReaderWriter": "4.0.0-rc2-24022", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24022", - "System.Private.DataContractSerialization": "4.1.1-rc2-24022", + "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-24022", + "version": "4.0.0-rc2-24018", "exclude": "compile" } }, diff --git a/test/ArgumentForwardingTests/project.json b/test/ArgumentForwardingTests/project.json index d72a493a4..4b16c13f6 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-24022", + "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 63347e685..832e50519 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-24022", + "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 7589fda99..641d3523d 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-24022", + "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 390449e86..973350ba5 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-24022", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24022", + "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 196872125..d7c1bc0c9 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-24022", + "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 985a3b34c..8b8b3683c 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-24022", + "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 a251d4a7e..41b8f7cc2 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-24022", - "System.Collections.Immutable": "1.2.0-rc2-24022", - "System.Net.NetworkInformation": "4.1.0-rc2-24022", + "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 6348df11f..475cda646 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-24022", + "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 7f1d95c0c..e7560b097 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-24022", + "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 323b3e0b5..95c68456d 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-24022", - "System.Diagnostics.Process": "4.1.0-rc2-24022", + "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 3c0039371..d43e32b52 100644 --- a/test/TestingAbstractions/TestAppWithFullPdbs/project.json +++ b/test/TestingAbstractions/TestAppWithFullPdbs/project.json @@ -4,9 +4,9 @@ "debugType": "full" }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24022" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { - "netstandard1.5": {} + "netstandard1.5": { } } } diff --git a/test/TestingAbstractions/TestAppWithPortablePdbs/project.json b/test/TestingAbstractions/TestAppWithPortablePdbs/project.json index 92c540f5e..3a8321f1d 100644 --- a/test/TestingAbstractions/TestAppWithPortablePdbs/project.json +++ b/test/TestingAbstractions/TestAppWithPortablePdbs/project.json @@ -4,9 +4,9 @@ "debugType": "portable" }, "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24022" + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { - "netstandard1.5": {} + "netstandard1.5": { } } } diff --git a/test/dotnet-build.Tests/project.json b/test/dotnet-build.Tests/project.json index 4c4de6bcb..f118a4301 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-24022", + "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 67a079d50..aac7fad46 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-24022", + "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 b69e61fad..0d350098e 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-24022", + "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 3a5e568d4..4b1b98e01 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-24022", - "System.IO.Compression.ZipFile": "4.0.1-rc2-24022", + "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 aa8fbdf6c..dab7532a2 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-24022", + "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-24022" + "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 05a99439b..145fdf9f0 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-24022", + "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-24022" + "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 147cbc1b6..ca995b719 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-24022", + "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 7589fda99..641d3523d 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-24022", + "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 a7977b9cf..6d32bc96d 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-24022", - "System.Net.Sockets": "4.1.0-rc2-24022", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24022", + "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 c85586274..1eddd19fe 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-24022", + "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 719473e4c..7c1671757 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-24022", + "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 76f6f9831..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-24022", + "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 a426f0e20..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-24022", + "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-24022", - "NETStandard.Library": "1.5.0-rc2-24022" + "Microsoft.NETCore.ConsoleHost": "1.0.0-rc2-24018", + "NETStandard.Library": "1.5.0-rc2-24018" }, "frameworks": { "netstandardapp1.5": {