From 7fca3e163add0279d98844a0ba90ba7fc66bda2a Mon Sep 17 00:00:00 2001 From: Julian Dominguez Date: Fri, 5 Feb 2016 15:56:32 -0800 Subject: [PATCH 01/16] Show full class and method name in output results This is so that the Jenkins plugin that gathers xUnit test results shows the correct test names, because the converter trims the first portion of the test name, assuming that it is prefixed with the full class name --- src/xunit.runner.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xunit.runner.json b/src/xunit.runner.json index 498389f3ffd..becfdf1ea72 100644 --- a/src/xunit.runner.json +++ b/src/xunit.runner.json @@ -2,5 +2,5 @@ "shadowCopy": false, "maxParallelThreads": 1, "parallelizeAssembly": false, - "methodDisplay": "method" -} \ No newline at end of file + "methodDisplay": "classAndMethod" +} From c8f4a4d9803d5e83382f6e1422f05b4c4b0dc0d6 Mon Sep 17 00:00:00 2001 From: Mattias Karlsson Date: Wed, 10 Feb 2016 16:37:59 +0100 Subject: [PATCH 02/16] Adjusts so all command line properties are logged when using diagnostic * Adjusts so not only last command line is saved * Adjusts tests so assert expects this behavior --- src/XMakeCommandLine/CommandLineSwitches.cs | 15 ++++++++++++--- .../UnitTests/CommandLineSwitches_Tests.cs | 6 +++--- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/src/XMakeCommandLine/CommandLineSwitches.cs b/src/XMakeCommandLine/CommandLineSwitches.cs index 0a5476676c9..73c954aef8c 100644 --- a/src/XMakeCommandLine/CommandLineSwitches.cs +++ b/src/XMakeCommandLine/CommandLineSwitches.cs @@ -442,10 +442,19 @@ bool unquoteParameters { // initialize its parameter storage _parameterizedSwitches[(int)parameterizedSwitch].parameters = new ArrayList(); - } - // save the switch text - _parameterizedSwitches[(int)parameterizedSwitch].commandLineArg = commandLineArg; + // save the switch text + _parameterizedSwitches[(int)parameterizedSwitch].commandLineArg = commandLineArg; + } + else + { + // append the switch text + _parameterizedSwitches[(int)parameterizedSwitch].commandLineArg = string.Concat( + _parameterizedSwitches[(int)parameterizedSwitch].commandLineArg, + " ", + commandLineArg + ); + } // check if the switch has multiple parameters if (multipleParametersAllowed) diff --git a/src/XMakeCommandLine/UnitTests/CommandLineSwitches_Tests.cs b/src/XMakeCommandLine/UnitTests/CommandLineSwitches_Tests.cs index c3e1fd92f9e..2a684c637e5 100644 --- a/src/XMakeCommandLine/UnitTests/CommandLineSwitches_Tests.cs +++ b/src/XMakeCommandLine/UnitTests/CommandLineSwitches_Tests.cs @@ -757,7 +757,7 @@ public void SetParameterizedSwitchTests1() // purposes of testing the SetParameterizedSwitch() method, it doesn't matter Assert.True(switches.SetParameterizedSwitch(CommandLineSwitches.ParameterizedSwitch.Verbosity, "/verbosity:\"diag\";minimal", "\"diag\";minimal", true, true)); - Assert.Equal("/verbosity:\"diag\";minimal", switches.GetParameterizedSwitchCommandLineArg(CommandLineSwitches.ParameterizedSwitch.Verbosity)); + Assert.Equal("/v:q /verbosity:\"diag\";minimal", switches.GetParameterizedSwitchCommandLineArg(CommandLineSwitches.ParameterizedSwitch.Verbosity)); Assert.True(switches.IsParameterizedSwitchSet(CommandLineSwitches.ParameterizedSwitch.Verbosity)); parameters = switches[CommandLineSwitches.ParameterizedSwitch.Verbosity]; @@ -800,7 +800,7 @@ public void SetParameterizedSwitchTests2() // more fake/missing parameters Assert.False(switches.SetParameterizedSwitch(CommandLineSwitches.ParameterizedSwitch.Target, "/t:A,\"\";B", "A,\"\";B", true, true)); - Assert.Equal("/t:A,\"\";B", switches.GetParameterizedSwitchCommandLineArg(CommandLineSwitches.ParameterizedSwitch.Target)); + Assert.Equal("/t:\" /t:A,\"\";B", switches.GetParameterizedSwitchCommandLineArg(CommandLineSwitches.ParameterizedSwitch.Target)); Assert.True(switches.IsParameterizedSwitchSet(CommandLineSwitches.ParameterizedSwitch.Target)); parameters = switches[CommandLineSwitches.ParameterizedSwitch.Target]; @@ -842,7 +842,7 @@ public void SetParameterizedSwitchTests3() // parameters, but for testing purposes this is fine Assert.True(switches.SetParameterizedSwitch(CommandLineSwitches.ParameterizedSwitch.Logger, "/LOGGER:\"\",asm;\"p,a;r\"", "\"\",asm;\"p,a;r\"", true, false)); - Assert.Equal("/LOGGER:\"\",asm;\"p,a;r\"", switches.GetParameterizedSwitchCommandLineArg(CommandLineSwitches.ParameterizedSwitch.Logger)); + Assert.Equal("/l:\" /LOGGER:\"\",asm;\"p,a;r\"", switches.GetParameterizedSwitchCommandLineArg(CommandLineSwitches.ParameterizedSwitch.Logger)); Assert.True(switches.IsParameterizedSwitchSet(CommandLineSwitches.ParameterizedSwitch.Logger)); parameters = switches[CommandLineSwitches.ParameterizedSwitch.Logger]; From 438ff41b9d4f61116826e95985b70ac68ed4d895 Mon Sep 17 00:00:00 2001 From: Andy Gerlicher Date: Thu, 18 Feb 2016 12:26:28 -0800 Subject: [PATCH 03/16] Update README.md - sync with xplat --- README.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b4e80056dc3..59423f4b1d5 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,13 @@ -# Microsoft.Build (MSBuild) +# Microsoft.Build (MSBuild) The Microsoft Build Engine is a platform for building applications. This engine, which is also known as MSBuild, provides an XML schema for a project file that controls how the build platform processes and builds software. Visual Studio uses MSBuild, but MSBuild *does not* depend on Visual Studio. By invoking msbuild.exe on your project or solution file, you can orchestrate and build products in environments where Visual Studio isn't installed. For more information on MSBuild, see the [MSDN documentation](https://msdn.microsoft.com/en-us/library/dd393574(v=vs.120).aspx). -[![Build Status](http://dotnet-ci.cloudapp.net/job/Microsoft_msbuild/job/innerloop_master_Windows_NT/badge/icon)](http://dotnet-ci.cloudapp.net/job/Microsoft_msbuild/job/innerloop_master_Windows_NT/) +### Build Status +| Configuration | Windows | Ubuntu |Mac OS X| +|:------|:------:|:------:|:------:| +| **Full Framework (master)** | [![Build Status](http://dotnet-ci.cloudapp.net/job/Microsoft_msbuild/job/innerloop_master_Windows_NT/badge/icon)](http://dotnet-ci.cloudapp.net/job/Microsoft_msbuild/job/innerloop_master_Windows_NT/) | N/A | N/A | +|**.NET Core (xplat)**|[![Build Status](http://dotnet-ci.cloudapp.net/job/Microsoft_msbuild/job/innerloop_xplat_Windows_NT/badge/icon)](http://dotnet-ci.cloudapp.net/job/Microsoft_msbuild/job/innerloop_xplat_Windows_NT/)|[![Build Status](http://dotnet-ci.cloudapp.net/job/Microsoft_msbuild/job/innerloop_xplat_Ubuntu/badge/icon)](http://dotnet-ci.cloudapp.net/job/Microsoft_msbuild/job/innerloop_xplat_Ubuntu/)|[![Build Status](http://dotnet-ci.cloudapp.net/job/Microsoft_msbuild/job/innerloop_xplat_OSX/badge/icon)](http://dotnet-ci.cloudapp.net/job/Microsoft_msbuild/job/innerloop_xplat_OSX/)| ### Source code @@ -14,13 +18,14 @@ For the full supported experience, you will need to have Visual Studio 2015. You To get started on **Visual Studio 2015**: -1. Set up a box with Visual Studio 2015. Either -[install Visual Studio 2015](http://www.visualstudio.com/en-us/downloads/visual-studio-2015-downloads-vs), -or grab a [prebuilt Azure VM image](http://blogs.msdn.com/b/visualstudioalm/archive/2014/06/04/visual-studio-14-ctp-now-available-in-the-virtual-machine-azure-gallery.aspx). +1. [Install Visual Studio 2015](http://www.visualstudio.com/en-us/downloads/visual-studio-2015-downloads-vs). Select the following optional components: + - _Microsoft Web Developer Tools_ + - _Universal Windows App Development Tools_ + - _Tools and Windows SDK 10.0.10240_ 2. Clone the source code (see above). 3. Restore NuGet packages: `msbuild /t:BulkRestoreNugetPackages build.proj` 4. Open src/MSBuild.sln solution in Visual Studio 2015. - + ## How to Engage, Contribute and Provide Feedback Before you contribute, please read through the contributing and developer guides to get an idea of what kinds of pull requests we will or won't accept. From 35a121635be289765805fec3760f58fdb97d58e9 Mon Sep 17 00:00:00 2001 From: Rainer Sigwald Date: Fri, 19 Feb 2016 14:21:35 -0600 Subject: [PATCH 04/16] Update to xUnit 2.1.0 --- src/Framework/UnitTests/project.json | 4 +- src/Framework/UnitTests/project.lock.json | 202 +++++++++--------- src/Utilities/UnitTests/project.json | 4 +- src/Utilities/UnitTests/project.lock.json | 202 +++++++++--------- src/XMakeBuildEngine/UnitTests/project.json | 4 +- .../UnitTests/project.lock.json | 202 +++++++++--------- .../UnitTestsPublicOM/project.json | 4 +- .../UnitTestsPublicOM/project.lock.json | 202 +++++++++--------- src/XMakeCommandLine/UnitTests/project.json | 4 +- .../UnitTests/project.lock.json | 202 +++++++++--------- src/XMakeTasks/UnitTests/project.json | 4 +- src/XMakeTasks/UnitTests/project.lock.json | 202 +++++++++--------- 12 files changed, 618 insertions(+), 618 deletions(-) diff --git a/src/Framework/UnitTests/project.json b/src/Framework/UnitTests/project.json index 349c2b16445..790fb93b7a3 100644 --- a/src/Framework/UnitTests/project.json +++ b/src/Framework/UnitTests/project.json @@ -1,7 +1,7 @@ { "dependencies": { - "xunit": "2.1.0-rc1-build3168", - "xunit.runner.visualstudio": "2.1.0-rc1-build1124" + "xunit": "2.1.0", + "xunit.runner.visualstudio": "2.1.0" }, "frameworks": { "net451": {}, diff --git a/src/Framework/UnitTests/project.lock.json b/src/Framework/UnitTests/project.lock.json index 1422a791b72..05e92133eaf 100644 --- a/src/Framework/UnitTests/project.lock.json +++ b/src/Framework/UnitTests/project.lock.json @@ -3,10 +3,10 @@ "version": 1, "targets": { ".NETFramework,Version=v4.5.1": { - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -17,7 +17,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -25,13 +25,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -42,24 +42,24 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.5.1/win": { - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -70,7 +70,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -78,13 +78,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -95,24 +95,24 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.5.1/win-": { - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -123,7 +123,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -131,13 +131,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -148,24 +148,24 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6": { - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -176,7 +176,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -184,13 +184,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -201,24 +201,24 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6/win": { - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -229,7 +229,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -237,13 +237,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -254,24 +254,24 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6/win-": { - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -282,7 +282,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -290,13 +290,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -307,28 +307,28 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} } }, "libraries": { - "xunit/2.1.0-rc1-build3168": { - "sha512": "dVnDKBCIpLE5GaxLALnbnobqtDyTTDKJSRbqhLGrx0Ptc/n3VQRUby/CDx6v+y7xNVPqtqj0XMeDO1DVT8E3tA==", + "xunit/2.1.0": { + "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==", "type": "Package", "files": [ "[Content_Types].xml", "_rels/.rels", - "package/services/metadata/core-properties/c7931b7f3887423dbf4970aaa1c1dc7b.psmdcp", + "package/services/metadata/core-properties/645916a897f44189a642f33e571d5b90.psmdcp", "xunit.nuspec" ] }, @@ -346,8 +346,8 @@ "xunit.abstractions.nuspec" ] }, - "xunit.assert/2.1.0-rc1-build3168": { - "sha512": "lsTK4OaNGt5IOoKO3ZQ0gSFngjWSHZ5xNurNtLd0MxZv5onv66xlNmWBYCVNt4sZLknQ+RfiqYm1EZ9ZrA0SDw==", + "xunit.assert/2.1.0": { + "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==", "type": "Package", "files": [ "[Content_Types].xml", @@ -358,12 +358,12 @@ "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb", "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml", - "package/services/metadata/core-properties/25b1754808374eeb82f38a86833d4d61.psmdcp", + "package/services/metadata/core-properties/4f538d979dfc48ed9b4c20e5a69d87b1.psmdcp", "xunit.assert.nuspec" ] }, - "xunit.core/2.1.0-rc1-build3168": { - "sha512": "IcQo+pNEDYBC9HJfzY08k0NhLZMX8WXudrlhcrIAzkT2szhrLbGhUi1k6vU5n9crsVv+IxosvIH28kYf6/Z32w==", + "xunit.core/2.1.0": { + "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==", "type": "Package", "files": [ "[Content_Types].xml", @@ -379,12 +379,12 @@ "build/wp8/_._", "build/wpa81/xunit.core.props", "build/xamarinios/_._", - "package/services/metadata/core-properties/c4f15e74cde14a09b99e736e49571ec0.psmdcp", + "package/services/metadata/core-properties/cce23a490b7f4272adfe9aa57c4e1ca3.psmdcp", "xunit.core.nuspec" ] }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { - "sha512": "8KZaq1mdeaiZxo1ScsGzhkeQRwLLS6+WIno+9gtnYccWmTjCJ/XSYz2fAAlB5mUeyw0vqqrFc+TfNZELs5QiZQ==", + "xunit.extensibility.core/2.1.0": { + "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==", "type": "Package", "files": [ "[Content_Types].xml", @@ -401,12 +401,12 @@ "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml", "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll", - "package/services/metadata/core-properties/f5b0a8a6af3a41e7abbb1c4e08ab5e31.psmdcp", + "package/services/metadata/core-properties/5218831c5b01422bb82b23cafd6488b3.psmdcp", "xunit.extensibility.core.nuspec" ] }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { - "sha512": "1w0u3eB7i25hca60r/53oSVb0blMOEm2eVqvwTg9jhMSe/A9raj6UZAVzUnFtA3xLssP4K1udOGTC1qrZ9/VoA==", + "xunit.extensibility.execution/2.1.0": { + "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==", "type": "Package", "files": [ "[Content_Types].xml", @@ -423,9 +423,9 @@ "lib/monotouch/xunit.execution.dotnet.dll", "lib/monotouch/xunit.execution.dotnet.pdb", "lib/monotouch/xunit.execution.dotnet.xml", - "lib/net35/xunit.execution.desktop.dll", - "lib/net35/xunit.execution.desktop.pdb", - "lib/net35/xunit.execution.desktop.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml", @@ -441,12 +441,12 @@ "lib/xamarinios/xunit.execution.dotnet.dll", "lib/xamarinios/xunit.execution.dotnet.pdb", "lib/xamarinios/xunit.execution.dotnet.xml", - "package/services/metadata/core-properties/3ba0c9def4ed43d782df6b4b2c8fef45.psmdcp", + "package/services/metadata/core-properties/9f5f1211ea9a4e748cecce63d1c73e30.psmdcp", "xunit.extensibility.execution.nuspec" ] }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": { - "sha512": "4m6iGj99F92STIfhg/h+t3sWL42JE29UfCAQShdxQxSz7CpTxZScoxlDpanmroYaMD0riTFTZ7fr9Brsd0ABig==", + "xunit.runner.visualstudio/2.1.0": { + "sha512": "44vJFEQopk8SHfPMjgzn4QevRNfITO7zRZBo9lb+OPhID7v/q2gFaOgyEUomKilq2rwWUQ0m9yquBOzJL4L4aA==", "type": "Package", "files": [ "[Content_Types].xml", @@ -474,15 +474,15 @@ "build/wpa81/xunit.runner.visualstudio.wpa81.dll", "build/wpa81/xunit.runner.visualstudio.wpa81.pri", "build/xamarinios/_._", - "package/services/metadata/core-properties/b0a423d21f7f45688579fd6544753269.psmdcp", + "package/services/metadata/core-properties/75d77ac04d244734b920caf67c66919b.psmdcp", "xunit.runner.visualstudio.nuspec" ] } }, "projectFileDependencyGroups": { "": [ - "xunit >= 2.1.0-rc1-build3168", - "xunit.runner.visualstudio >= 2.1.0-rc1-build1124" + "xunit >= 2.1.0", + "xunit.runner.visualstudio >= 2.1.0" ], ".NETFramework,Version=v4.5.1": [], ".NETFramework,Version=v4.6": [] diff --git a/src/Utilities/UnitTests/project.json b/src/Utilities/UnitTests/project.json index 349c2b16445..790fb93b7a3 100644 --- a/src/Utilities/UnitTests/project.json +++ b/src/Utilities/UnitTests/project.json @@ -1,7 +1,7 @@ { "dependencies": { - "xunit": "2.1.0-rc1-build3168", - "xunit.runner.visualstudio": "2.1.0-rc1-build1124" + "xunit": "2.1.0", + "xunit.runner.visualstudio": "2.1.0" }, "frameworks": { "net451": {}, diff --git a/src/Utilities/UnitTests/project.lock.json b/src/Utilities/UnitTests/project.lock.json index 8e23c150e88..ec0c375a098 100644 --- a/src/Utilities/UnitTests/project.lock.json +++ b/src/Utilities/UnitTests/project.lock.json @@ -11,10 +11,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -25,7 +25,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -33,13 +33,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -50,18 +50,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.5.1/win": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -72,10 +72,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -86,7 +86,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -94,13 +94,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -111,18 +111,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.5.1/win-": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -133,10 +133,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -147,7 +147,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -155,13 +155,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -172,18 +172,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -194,10 +194,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -208,7 +208,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -216,13 +216,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -233,18 +233,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6/win": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -255,10 +255,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -269,7 +269,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -277,13 +277,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -294,18 +294,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6/win-": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -316,10 +316,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -330,7 +330,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -338,13 +338,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -355,18 +355,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} } }, "libraries": { @@ -385,13 +385,13 @@ "package/services/metadata/core-properties/3dd86853af3a4ae392f3331459714ce0.psmdcp" ] }, - "xunit/2.1.0-rc1-build3168": { - "sha512": "dVnDKBCIpLE5GaxLALnbnobqtDyTTDKJSRbqhLGrx0Ptc/n3VQRUby/CDx6v+y7xNVPqtqj0XMeDO1DVT8E3tA==", + "xunit/2.1.0": { + "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==", "type": "Package", "files": [ "[Content_Types].xml", "_rels/.rels", - "package/services/metadata/core-properties/c7931b7f3887423dbf4970aaa1c1dc7b.psmdcp", + "package/services/metadata/core-properties/645916a897f44189a642f33e571d5b90.psmdcp", "xunit.nuspec" ] }, @@ -409,8 +409,8 @@ "xunit.abstractions.nuspec" ] }, - "xunit.assert/2.1.0-rc1-build3168": { - "sha512": "lsTK4OaNGt5IOoKO3ZQ0gSFngjWSHZ5xNurNtLd0MxZv5onv66xlNmWBYCVNt4sZLknQ+RfiqYm1EZ9ZrA0SDw==", + "xunit.assert/2.1.0": { + "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==", "type": "Package", "files": [ "[Content_Types].xml", @@ -421,12 +421,12 @@ "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb", "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml", - "package/services/metadata/core-properties/25b1754808374eeb82f38a86833d4d61.psmdcp", + "package/services/metadata/core-properties/4f538d979dfc48ed9b4c20e5a69d87b1.psmdcp", "xunit.assert.nuspec" ] }, - "xunit.core/2.1.0-rc1-build3168": { - "sha512": "IcQo+pNEDYBC9HJfzY08k0NhLZMX8WXudrlhcrIAzkT2szhrLbGhUi1k6vU5n9crsVv+IxosvIH28kYf6/Z32w==", + "xunit.core/2.1.0": { + "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==", "type": "Package", "files": [ "[Content_Types].xml", @@ -442,12 +442,12 @@ "build/wp8/_._", "build/wpa81/xunit.core.props", "build/xamarinios/_._", - "package/services/metadata/core-properties/c4f15e74cde14a09b99e736e49571ec0.psmdcp", + "package/services/metadata/core-properties/cce23a490b7f4272adfe9aa57c4e1ca3.psmdcp", "xunit.core.nuspec" ] }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { - "sha512": "8KZaq1mdeaiZxo1ScsGzhkeQRwLLS6+WIno+9gtnYccWmTjCJ/XSYz2fAAlB5mUeyw0vqqrFc+TfNZELs5QiZQ==", + "xunit.extensibility.core/2.1.0": { + "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==", "type": "Package", "files": [ "[Content_Types].xml", @@ -464,12 +464,12 @@ "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml", "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll", - "package/services/metadata/core-properties/f5b0a8a6af3a41e7abbb1c4e08ab5e31.psmdcp", + "package/services/metadata/core-properties/5218831c5b01422bb82b23cafd6488b3.psmdcp", "xunit.extensibility.core.nuspec" ] }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { - "sha512": "1w0u3eB7i25hca60r/53oSVb0blMOEm2eVqvwTg9jhMSe/A9raj6UZAVzUnFtA3xLssP4K1udOGTC1qrZ9/VoA==", + "xunit.extensibility.execution/2.1.0": { + "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==", "type": "Package", "files": [ "[Content_Types].xml", @@ -486,9 +486,9 @@ "lib/monotouch/xunit.execution.dotnet.dll", "lib/monotouch/xunit.execution.dotnet.pdb", "lib/monotouch/xunit.execution.dotnet.xml", - "lib/net35/xunit.execution.desktop.dll", - "lib/net35/xunit.execution.desktop.pdb", - "lib/net35/xunit.execution.desktop.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml", @@ -504,12 +504,12 @@ "lib/xamarinios/xunit.execution.dotnet.dll", "lib/xamarinios/xunit.execution.dotnet.pdb", "lib/xamarinios/xunit.execution.dotnet.xml", - "package/services/metadata/core-properties/3ba0c9def4ed43d782df6b4b2c8fef45.psmdcp", + "package/services/metadata/core-properties/9f5f1211ea9a4e748cecce63d1c73e30.psmdcp", "xunit.extensibility.execution.nuspec" ] }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": { - "sha512": "4m6iGj99F92STIfhg/h+t3sWL42JE29UfCAQShdxQxSz7CpTxZScoxlDpanmroYaMD0riTFTZ7fr9Brsd0ABig==", + "xunit.runner.visualstudio/2.1.0": { + "sha512": "44vJFEQopk8SHfPMjgzn4QevRNfITO7zRZBo9lb+OPhID7v/q2gFaOgyEUomKilq2rwWUQ0m9yquBOzJL4L4aA==", "type": "Package", "files": [ "[Content_Types].xml", @@ -537,15 +537,15 @@ "build/wpa81/xunit.runner.visualstudio.wpa81.dll", "build/wpa81/xunit.runner.visualstudio.wpa81.pri", "build/xamarinios/_._", - "package/services/metadata/core-properties/b0a423d21f7f45688579fd6544753269.psmdcp", + "package/services/metadata/core-properties/75d77ac04d244734b920caf67c66919b.psmdcp", "xunit.runner.visualstudio.nuspec" ] } }, "projectFileDependencyGroups": { "": [ - "xunit >= 2.1.0-rc1-build3168", - "xunit.runner.visualstudio >= 2.1.0-rc1-build1124" + "xunit >= 2.1.0", + "xunit.runner.visualstudio >= 2.1.0" ], ".NETFramework,Version=v4.5.1": [], ".NETFramework,Version=v4.6": [] diff --git a/src/XMakeBuildEngine/UnitTests/project.json b/src/XMakeBuildEngine/UnitTests/project.json index 349c2b16445..790fb93b7a3 100644 --- a/src/XMakeBuildEngine/UnitTests/project.json +++ b/src/XMakeBuildEngine/UnitTests/project.json @@ -1,7 +1,7 @@ { "dependencies": { - "xunit": "2.1.0-rc1-build3168", - "xunit.runner.visualstudio": "2.1.0-rc1-build1124" + "xunit": "2.1.0", + "xunit.runner.visualstudio": "2.1.0" }, "frameworks": { "net451": {}, diff --git a/src/XMakeBuildEngine/UnitTests/project.lock.json b/src/XMakeBuildEngine/UnitTests/project.lock.json index 8e23c150e88..ec0c375a098 100644 --- a/src/XMakeBuildEngine/UnitTests/project.lock.json +++ b/src/XMakeBuildEngine/UnitTests/project.lock.json @@ -11,10 +11,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -25,7 +25,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -33,13 +33,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -50,18 +50,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.5.1/win": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -72,10 +72,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -86,7 +86,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -94,13 +94,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -111,18 +111,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.5.1/win-": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -133,10 +133,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -147,7 +147,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -155,13 +155,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -172,18 +172,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -194,10 +194,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -208,7 +208,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -216,13 +216,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -233,18 +233,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6/win": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -255,10 +255,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -269,7 +269,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -277,13 +277,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -294,18 +294,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6/win-": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -316,10 +316,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -330,7 +330,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -338,13 +338,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -355,18 +355,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} } }, "libraries": { @@ -385,13 +385,13 @@ "package/services/metadata/core-properties/3dd86853af3a4ae392f3331459714ce0.psmdcp" ] }, - "xunit/2.1.0-rc1-build3168": { - "sha512": "dVnDKBCIpLE5GaxLALnbnobqtDyTTDKJSRbqhLGrx0Ptc/n3VQRUby/CDx6v+y7xNVPqtqj0XMeDO1DVT8E3tA==", + "xunit/2.1.0": { + "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==", "type": "Package", "files": [ "[Content_Types].xml", "_rels/.rels", - "package/services/metadata/core-properties/c7931b7f3887423dbf4970aaa1c1dc7b.psmdcp", + "package/services/metadata/core-properties/645916a897f44189a642f33e571d5b90.psmdcp", "xunit.nuspec" ] }, @@ -409,8 +409,8 @@ "xunit.abstractions.nuspec" ] }, - "xunit.assert/2.1.0-rc1-build3168": { - "sha512": "lsTK4OaNGt5IOoKO3ZQ0gSFngjWSHZ5xNurNtLd0MxZv5onv66xlNmWBYCVNt4sZLknQ+RfiqYm1EZ9ZrA0SDw==", + "xunit.assert/2.1.0": { + "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==", "type": "Package", "files": [ "[Content_Types].xml", @@ -421,12 +421,12 @@ "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb", "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml", - "package/services/metadata/core-properties/25b1754808374eeb82f38a86833d4d61.psmdcp", + "package/services/metadata/core-properties/4f538d979dfc48ed9b4c20e5a69d87b1.psmdcp", "xunit.assert.nuspec" ] }, - "xunit.core/2.1.0-rc1-build3168": { - "sha512": "IcQo+pNEDYBC9HJfzY08k0NhLZMX8WXudrlhcrIAzkT2szhrLbGhUi1k6vU5n9crsVv+IxosvIH28kYf6/Z32w==", + "xunit.core/2.1.0": { + "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==", "type": "Package", "files": [ "[Content_Types].xml", @@ -442,12 +442,12 @@ "build/wp8/_._", "build/wpa81/xunit.core.props", "build/xamarinios/_._", - "package/services/metadata/core-properties/c4f15e74cde14a09b99e736e49571ec0.psmdcp", + "package/services/metadata/core-properties/cce23a490b7f4272adfe9aa57c4e1ca3.psmdcp", "xunit.core.nuspec" ] }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { - "sha512": "8KZaq1mdeaiZxo1ScsGzhkeQRwLLS6+WIno+9gtnYccWmTjCJ/XSYz2fAAlB5mUeyw0vqqrFc+TfNZELs5QiZQ==", + "xunit.extensibility.core/2.1.0": { + "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==", "type": "Package", "files": [ "[Content_Types].xml", @@ -464,12 +464,12 @@ "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml", "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll", - "package/services/metadata/core-properties/f5b0a8a6af3a41e7abbb1c4e08ab5e31.psmdcp", + "package/services/metadata/core-properties/5218831c5b01422bb82b23cafd6488b3.psmdcp", "xunit.extensibility.core.nuspec" ] }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { - "sha512": "1w0u3eB7i25hca60r/53oSVb0blMOEm2eVqvwTg9jhMSe/A9raj6UZAVzUnFtA3xLssP4K1udOGTC1qrZ9/VoA==", + "xunit.extensibility.execution/2.1.0": { + "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==", "type": "Package", "files": [ "[Content_Types].xml", @@ -486,9 +486,9 @@ "lib/monotouch/xunit.execution.dotnet.dll", "lib/monotouch/xunit.execution.dotnet.pdb", "lib/monotouch/xunit.execution.dotnet.xml", - "lib/net35/xunit.execution.desktop.dll", - "lib/net35/xunit.execution.desktop.pdb", - "lib/net35/xunit.execution.desktop.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml", @@ -504,12 +504,12 @@ "lib/xamarinios/xunit.execution.dotnet.dll", "lib/xamarinios/xunit.execution.dotnet.pdb", "lib/xamarinios/xunit.execution.dotnet.xml", - "package/services/metadata/core-properties/3ba0c9def4ed43d782df6b4b2c8fef45.psmdcp", + "package/services/metadata/core-properties/9f5f1211ea9a4e748cecce63d1c73e30.psmdcp", "xunit.extensibility.execution.nuspec" ] }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": { - "sha512": "4m6iGj99F92STIfhg/h+t3sWL42JE29UfCAQShdxQxSz7CpTxZScoxlDpanmroYaMD0riTFTZ7fr9Brsd0ABig==", + "xunit.runner.visualstudio/2.1.0": { + "sha512": "44vJFEQopk8SHfPMjgzn4QevRNfITO7zRZBo9lb+OPhID7v/q2gFaOgyEUomKilq2rwWUQ0m9yquBOzJL4L4aA==", "type": "Package", "files": [ "[Content_Types].xml", @@ -537,15 +537,15 @@ "build/wpa81/xunit.runner.visualstudio.wpa81.dll", "build/wpa81/xunit.runner.visualstudio.wpa81.pri", "build/xamarinios/_._", - "package/services/metadata/core-properties/b0a423d21f7f45688579fd6544753269.psmdcp", + "package/services/metadata/core-properties/75d77ac04d244734b920caf67c66919b.psmdcp", "xunit.runner.visualstudio.nuspec" ] } }, "projectFileDependencyGroups": { "": [ - "xunit >= 2.1.0-rc1-build3168", - "xunit.runner.visualstudio >= 2.1.0-rc1-build1124" + "xunit >= 2.1.0", + "xunit.runner.visualstudio >= 2.1.0" ], ".NETFramework,Version=v4.5.1": [], ".NETFramework,Version=v4.6": [] diff --git a/src/XMakeBuildEngine/UnitTestsPublicOM/project.json b/src/XMakeBuildEngine/UnitTestsPublicOM/project.json index 349c2b16445..790fb93b7a3 100644 --- a/src/XMakeBuildEngine/UnitTestsPublicOM/project.json +++ b/src/XMakeBuildEngine/UnitTestsPublicOM/project.json @@ -1,7 +1,7 @@ { "dependencies": { - "xunit": "2.1.0-rc1-build3168", - "xunit.runner.visualstudio": "2.1.0-rc1-build1124" + "xunit": "2.1.0", + "xunit.runner.visualstudio": "2.1.0" }, "frameworks": { "net451": {}, diff --git a/src/XMakeBuildEngine/UnitTestsPublicOM/project.lock.json b/src/XMakeBuildEngine/UnitTestsPublicOM/project.lock.json index 8e23c150e88..ec0c375a098 100644 --- a/src/XMakeBuildEngine/UnitTestsPublicOM/project.lock.json +++ b/src/XMakeBuildEngine/UnitTestsPublicOM/project.lock.json @@ -11,10 +11,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -25,7 +25,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -33,13 +33,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -50,18 +50,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.5.1/win": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -72,10 +72,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -86,7 +86,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -94,13 +94,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -111,18 +111,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.5.1/win-": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -133,10 +133,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -147,7 +147,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -155,13 +155,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -172,18 +172,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -194,10 +194,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -208,7 +208,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -216,13 +216,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -233,18 +233,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6/win": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -255,10 +255,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -269,7 +269,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -277,13 +277,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -294,18 +294,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6/win-": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -316,10 +316,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -330,7 +330,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -338,13 +338,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -355,18 +355,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} } }, "libraries": { @@ -385,13 +385,13 @@ "package/services/metadata/core-properties/3dd86853af3a4ae392f3331459714ce0.psmdcp" ] }, - "xunit/2.1.0-rc1-build3168": { - "sha512": "dVnDKBCIpLE5GaxLALnbnobqtDyTTDKJSRbqhLGrx0Ptc/n3VQRUby/CDx6v+y7xNVPqtqj0XMeDO1DVT8E3tA==", + "xunit/2.1.0": { + "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==", "type": "Package", "files": [ "[Content_Types].xml", "_rels/.rels", - "package/services/metadata/core-properties/c7931b7f3887423dbf4970aaa1c1dc7b.psmdcp", + "package/services/metadata/core-properties/645916a897f44189a642f33e571d5b90.psmdcp", "xunit.nuspec" ] }, @@ -409,8 +409,8 @@ "xunit.abstractions.nuspec" ] }, - "xunit.assert/2.1.0-rc1-build3168": { - "sha512": "lsTK4OaNGt5IOoKO3ZQ0gSFngjWSHZ5xNurNtLd0MxZv5onv66xlNmWBYCVNt4sZLknQ+RfiqYm1EZ9ZrA0SDw==", + "xunit.assert/2.1.0": { + "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==", "type": "Package", "files": [ "[Content_Types].xml", @@ -421,12 +421,12 @@ "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb", "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml", - "package/services/metadata/core-properties/25b1754808374eeb82f38a86833d4d61.psmdcp", + "package/services/metadata/core-properties/4f538d979dfc48ed9b4c20e5a69d87b1.psmdcp", "xunit.assert.nuspec" ] }, - "xunit.core/2.1.0-rc1-build3168": { - "sha512": "IcQo+pNEDYBC9HJfzY08k0NhLZMX8WXudrlhcrIAzkT2szhrLbGhUi1k6vU5n9crsVv+IxosvIH28kYf6/Z32w==", + "xunit.core/2.1.0": { + "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==", "type": "Package", "files": [ "[Content_Types].xml", @@ -442,12 +442,12 @@ "build/wp8/_._", "build/wpa81/xunit.core.props", "build/xamarinios/_._", - "package/services/metadata/core-properties/c4f15e74cde14a09b99e736e49571ec0.psmdcp", + "package/services/metadata/core-properties/cce23a490b7f4272adfe9aa57c4e1ca3.psmdcp", "xunit.core.nuspec" ] }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { - "sha512": "8KZaq1mdeaiZxo1ScsGzhkeQRwLLS6+WIno+9gtnYccWmTjCJ/XSYz2fAAlB5mUeyw0vqqrFc+TfNZELs5QiZQ==", + "xunit.extensibility.core/2.1.0": { + "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==", "type": "Package", "files": [ "[Content_Types].xml", @@ -464,12 +464,12 @@ "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml", "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll", - "package/services/metadata/core-properties/f5b0a8a6af3a41e7abbb1c4e08ab5e31.psmdcp", + "package/services/metadata/core-properties/5218831c5b01422bb82b23cafd6488b3.psmdcp", "xunit.extensibility.core.nuspec" ] }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { - "sha512": "1w0u3eB7i25hca60r/53oSVb0blMOEm2eVqvwTg9jhMSe/A9raj6UZAVzUnFtA3xLssP4K1udOGTC1qrZ9/VoA==", + "xunit.extensibility.execution/2.1.0": { + "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==", "type": "Package", "files": [ "[Content_Types].xml", @@ -486,9 +486,9 @@ "lib/monotouch/xunit.execution.dotnet.dll", "lib/monotouch/xunit.execution.dotnet.pdb", "lib/monotouch/xunit.execution.dotnet.xml", - "lib/net35/xunit.execution.desktop.dll", - "lib/net35/xunit.execution.desktop.pdb", - "lib/net35/xunit.execution.desktop.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml", @@ -504,12 +504,12 @@ "lib/xamarinios/xunit.execution.dotnet.dll", "lib/xamarinios/xunit.execution.dotnet.pdb", "lib/xamarinios/xunit.execution.dotnet.xml", - "package/services/metadata/core-properties/3ba0c9def4ed43d782df6b4b2c8fef45.psmdcp", + "package/services/metadata/core-properties/9f5f1211ea9a4e748cecce63d1c73e30.psmdcp", "xunit.extensibility.execution.nuspec" ] }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": { - "sha512": "4m6iGj99F92STIfhg/h+t3sWL42JE29UfCAQShdxQxSz7CpTxZScoxlDpanmroYaMD0riTFTZ7fr9Brsd0ABig==", + "xunit.runner.visualstudio/2.1.0": { + "sha512": "44vJFEQopk8SHfPMjgzn4QevRNfITO7zRZBo9lb+OPhID7v/q2gFaOgyEUomKilq2rwWUQ0m9yquBOzJL4L4aA==", "type": "Package", "files": [ "[Content_Types].xml", @@ -537,15 +537,15 @@ "build/wpa81/xunit.runner.visualstudio.wpa81.dll", "build/wpa81/xunit.runner.visualstudio.wpa81.pri", "build/xamarinios/_._", - "package/services/metadata/core-properties/b0a423d21f7f45688579fd6544753269.psmdcp", + "package/services/metadata/core-properties/75d77ac04d244734b920caf67c66919b.psmdcp", "xunit.runner.visualstudio.nuspec" ] } }, "projectFileDependencyGroups": { "": [ - "xunit >= 2.1.0-rc1-build3168", - "xunit.runner.visualstudio >= 2.1.0-rc1-build1124" + "xunit >= 2.1.0", + "xunit.runner.visualstudio >= 2.1.0" ], ".NETFramework,Version=v4.5.1": [], ".NETFramework,Version=v4.6": [] diff --git a/src/XMakeCommandLine/UnitTests/project.json b/src/XMakeCommandLine/UnitTests/project.json index 349c2b16445..790fb93b7a3 100644 --- a/src/XMakeCommandLine/UnitTests/project.json +++ b/src/XMakeCommandLine/UnitTests/project.json @@ -1,7 +1,7 @@ { "dependencies": { - "xunit": "2.1.0-rc1-build3168", - "xunit.runner.visualstudio": "2.1.0-rc1-build1124" + "xunit": "2.1.0", + "xunit.runner.visualstudio": "2.1.0" }, "frameworks": { "net451": {}, diff --git a/src/XMakeCommandLine/UnitTests/project.lock.json b/src/XMakeCommandLine/UnitTests/project.lock.json index 8e23c150e88..ec0c375a098 100644 --- a/src/XMakeCommandLine/UnitTests/project.lock.json +++ b/src/XMakeCommandLine/UnitTests/project.lock.json @@ -11,10 +11,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -25,7 +25,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -33,13 +33,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -50,18 +50,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.5.1/win": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -72,10 +72,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -86,7 +86,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -94,13 +94,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -111,18 +111,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.5.1/win-": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -133,10 +133,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -147,7 +147,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -155,13 +155,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -172,18 +172,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -194,10 +194,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -208,7 +208,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -216,13 +216,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -233,18 +233,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6/win": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -255,10 +255,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -269,7 +269,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -277,13 +277,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -294,18 +294,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6/win-": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -316,10 +316,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -330,7 +330,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -338,13 +338,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -355,18 +355,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} } }, "libraries": { @@ -385,13 +385,13 @@ "package/services/metadata/core-properties/3dd86853af3a4ae392f3331459714ce0.psmdcp" ] }, - "xunit/2.1.0-rc1-build3168": { - "sha512": "dVnDKBCIpLE5GaxLALnbnobqtDyTTDKJSRbqhLGrx0Ptc/n3VQRUby/CDx6v+y7xNVPqtqj0XMeDO1DVT8E3tA==", + "xunit/2.1.0": { + "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==", "type": "Package", "files": [ "[Content_Types].xml", "_rels/.rels", - "package/services/metadata/core-properties/c7931b7f3887423dbf4970aaa1c1dc7b.psmdcp", + "package/services/metadata/core-properties/645916a897f44189a642f33e571d5b90.psmdcp", "xunit.nuspec" ] }, @@ -409,8 +409,8 @@ "xunit.abstractions.nuspec" ] }, - "xunit.assert/2.1.0-rc1-build3168": { - "sha512": "lsTK4OaNGt5IOoKO3ZQ0gSFngjWSHZ5xNurNtLd0MxZv5onv66xlNmWBYCVNt4sZLknQ+RfiqYm1EZ9ZrA0SDw==", + "xunit.assert/2.1.0": { + "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==", "type": "Package", "files": [ "[Content_Types].xml", @@ -421,12 +421,12 @@ "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb", "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml", - "package/services/metadata/core-properties/25b1754808374eeb82f38a86833d4d61.psmdcp", + "package/services/metadata/core-properties/4f538d979dfc48ed9b4c20e5a69d87b1.psmdcp", "xunit.assert.nuspec" ] }, - "xunit.core/2.1.0-rc1-build3168": { - "sha512": "IcQo+pNEDYBC9HJfzY08k0NhLZMX8WXudrlhcrIAzkT2szhrLbGhUi1k6vU5n9crsVv+IxosvIH28kYf6/Z32w==", + "xunit.core/2.1.0": { + "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==", "type": "Package", "files": [ "[Content_Types].xml", @@ -442,12 +442,12 @@ "build/wp8/_._", "build/wpa81/xunit.core.props", "build/xamarinios/_._", - "package/services/metadata/core-properties/c4f15e74cde14a09b99e736e49571ec0.psmdcp", + "package/services/metadata/core-properties/cce23a490b7f4272adfe9aa57c4e1ca3.psmdcp", "xunit.core.nuspec" ] }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { - "sha512": "8KZaq1mdeaiZxo1ScsGzhkeQRwLLS6+WIno+9gtnYccWmTjCJ/XSYz2fAAlB5mUeyw0vqqrFc+TfNZELs5QiZQ==", + "xunit.extensibility.core/2.1.0": { + "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==", "type": "Package", "files": [ "[Content_Types].xml", @@ -464,12 +464,12 @@ "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml", "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll", - "package/services/metadata/core-properties/f5b0a8a6af3a41e7abbb1c4e08ab5e31.psmdcp", + "package/services/metadata/core-properties/5218831c5b01422bb82b23cafd6488b3.psmdcp", "xunit.extensibility.core.nuspec" ] }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { - "sha512": "1w0u3eB7i25hca60r/53oSVb0blMOEm2eVqvwTg9jhMSe/A9raj6UZAVzUnFtA3xLssP4K1udOGTC1qrZ9/VoA==", + "xunit.extensibility.execution/2.1.0": { + "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==", "type": "Package", "files": [ "[Content_Types].xml", @@ -486,9 +486,9 @@ "lib/monotouch/xunit.execution.dotnet.dll", "lib/monotouch/xunit.execution.dotnet.pdb", "lib/monotouch/xunit.execution.dotnet.xml", - "lib/net35/xunit.execution.desktop.dll", - "lib/net35/xunit.execution.desktop.pdb", - "lib/net35/xunit.execution.desktop.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml", @@ -504,12 +504,12 @@ "lib/xamarinios/xunit.execution.dotnet.dll", "lib/xamarinios/xunit.execution.dotnet.pdb", "lib/xamarinios/xunit.execution.dotnet.xml", - "package/services/metadata/core-properties/3ba0c9def4ed43d782df6b4b2c8fef45.psmdcp", + "package/services/metadata/core-properties/9f5f1211ea9a4e748cecce63d1c73e30.psmdcp", "xunit.extensibility.execution.nuspec" ] }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": { - "sha512": "4m6iGj99F92STIfhg/h+t3sWL42JE29UfCAQShdxQxSz7CpTxZScoxlDpanmroYaMD0riTFTZ7fr9Brsd0ABig==", + "xunit.runner.visualstudio/2.1.0": { + "sha512": "44vJFEQopk8SHfPMjgzn4QevRNfITO7zRZBo9lb+OPhID7v/q2gFaOgyEUomKilq2rwWUQ0m9yquBOzJL4L4aA==", "type": "Package", "files": [ "[Content_Types].xml", @@ -537,15 +537,15 @@ "build/wpa81/xunit.runner.visualstudio.wpa81.dll", "build/wpa81/xunit.runner.visualstudio.wpa81.pri", "build/xamarinios/_._", - "package/services/metadata/core-properties/b0a423d21f7f45688579fd6544753269.psmdcp", + "package/services/metadata/core-properties/75d77ac04d244734b920caf67c66919b.psmdcp", "xunit.runner.visualstudio.nuspec" ] } }, "projectFileDependencyGroups": { "": [ - "xunit >= 2.1.0-rc1-build3168", - "xunit.runner.visualstudio >= 2.1.0-rc1-build1124" + "xunit >= 2.1.0", + "xunit.runner.visualstudio >= 2.1.0" ], ".NETFramework,Version=v4.5.1": [], ".NETFramework,Version=v4.6": [] diff --git a/src/XMakeTasks/UnitTests/project.json b/src/XMakeTasks/UnitTests/project.json index 349c2b16445..790fb93b7a3 100644 --- a/src/XMakeTasks/UnitTests/project.json +++ b/src/XMakeTasks/UnitTests/project.json @@ -1,7 +1,7 @@ { "dependencies": { - "xunit": "2.1.0-rc1-build3168", - "xunit.runner.visualstudio": "2.1.0-rc1-build1124" + "xunit": "2.1.0", + "xunit.runner.visualstudio": "2.1.0" }, "frameworks": { "net451": {}, diff --git a/src/XMakeTasks/UnitTests/project.lock.json b/src/XMakeTasks/UnitTests/project.lock.json index 8e23c150e88..ec0c375a098 100644 --- a/src/XMakeTasks/UnitTests/project.lock.json +++ b/src/XMakeTasks/UnitTests/project.lock.json @@ -11,10 +11,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -25,7 +25,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -33,13 +33,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -50,18 +50,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.5.1/win": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -72,10 +72,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -86,7 +86,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -94,13 +94,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -111,18 +111,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.5.1/win-": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -133,10 +133,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -147,7 +147,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -155,13 +155,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -172,18 +172,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -194,10 +194,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -208,7 +208,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -216,13 +216,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -233,18 +233,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6/win": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -255,10 +255,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -269,7 +269,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -277,13 +277,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -294,18 +294,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} }, ".NETFramework,Version=v4.6/win-": { "Microsoft.Tpl.Dataflow/4.5.24": { @@ -316,10 +316,10 @@ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} } }, - "xunit/2.1.0-rc1-build3168": { + "xunit/2.1.0": { "dependencies": { - "xunit.assert": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.assert": "[2.1.0, 2.1.0]", + "xunit.core": "[2.1.0, 2.1.0]" } }, "xunit.abstractions/2.0.0": { @@ -330,7 +330,7 @@ "lib/net35/xunit.abstractions.dll": {} } }, - "xunit.assert/2.1.0-rc1-build3168": { + "xunit.assert/2.1.0": { "compile": { "lib/dotnet/xunit.assert.dll": {} }, @@ -338,13 +338,13 @@ "lib/dotnet/xunit.assert.dll": {} } }, - "xunit.core/2.1.0-rc1-build3168": { + "xunit.core/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]", - "xunit.extensibility.execution": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]", + "xunit.extensibility.execution": "[2.1.0, 2.1.0]" } }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { + "xunit.extensibility.core/2.1.0": { "dependencies": { "xunit.abstractions": "[2.0.0, 2.0.0]" }, @@ -355,18 +355,18 @@ "lib/dotnet/xunit.core.dll": {} } }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { + "xunit.extensibility.execution/2.1.0": { "dependencies": { - "xunit.extensibility.core": "[2.1.0-rc1-build3168, 2.1.0-rc1-build3168]" + "xunit.extensibility.core": "[2.1.0, 2.1.0]" }, "compile": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} }, "runtime": { - "lib/net35/xunit.execution.desktop.dll": {} + "lib/net45/xunit.execution.desktop.dll": {} } }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": {} + "xunit.runner.visualstudio/2.1.0": {} } }, "libraries": { @@ -385,13 +385,13 @@ "package/services/metadata/core-properties/3dd86853af3a4ae392f3331459714ce0.psmdcp" ] }, - "xunit/2.1.0-rc1-build3168": { - "sha512": "dVnDKBCIpLE5GaxLALnbnobqtDyTTDKJSRbqhLGrx0Ptc/n3VQRUby/CDx6v+y7xNVPqtqj0XMeDO1DVT8E3tA==", + "xunit/2.1.0": { + "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==", "type": "Package", "files": [ "[Content_Types].xml", "_rels/.rels", - "package/services/metadata/core-properties/c7931b7f3887423dbf4970aaa1c1dc7b.psmdcp", + "package/services/metadata/core-properties/645916a897f44189a642f33e571d5b90.psmdcp", "xunit.nuspec" ] }, @@ -409,8 +409,8 @@ "xunit.abstractions.nuspec" ] }, - "xunit.assert/2.1.0-rc1-build3168": { - "sha512": "lsTK4OaNGt5IOoKO3ZQ0gSFngjWSHZ5xNurNtLd0MxZv5onv66xlNmWBYCVNt4sZLknQ+RfiqYm1EZ9ZrA0SDw==", + "xunit.assert/2.1.0": { + "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==", "type": "Package", "files": [ "[Content_Types].xml", @@ -421,12 +421,12 @@ "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb", "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml", - "package/services/metadata/core-properties/25b1754808374eeb82f38a86833d4d61.psmdcp", + "package/services/metadata/core-properties/4f538d979dfc48ed9b4c20e5a69d87b1.psmdcp", "xunit.assert.nuspec" ] }, - "xunit.core/2.1.0-rc1-build3168": { - "sha512": "IcQo+pNEDYBC9HJfzY08k0NhLZMX8WXudrlhcrIAzkT2szhrLbGhUi1k6vU5n9crsVv+IxosvIH28kYf6/Z32w==", + "xunit.core/2.1.0": { + "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==", "type": "Package", "files": [ "[Content_Types].xml", @@ -442,12 +442,12 @@ "build/wp8/_._", "build/wpa81/xunit.core.props", "build/xamarinios/_._", - "package/services/metadata/core-properties/c4f15e74cde14a09b99e736e49571ec0.psmdcp", + "package/services/metadata/core-properties/cce23a490b7f4272adfe9aa57c4e1ca3.psmdcp", "xunit.core.nuspec" ] }, - "xunit.extensibility.core/2.1.0-rc1-build3168": { - "sha512": "8KZaq1mdeaiZxo1ScsGzhkeQRwLLS6+WIno+9gtnYccWmTjCJ/XSYz2fAAlB5mUeyw0vqqrFc+TfNZELs5QiZQ==", + "xunit.extensibility.core/2.1.0": { + "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==", "type": "Package", "files": [ "[Content_Types].xml", @@ -464,12 +464,12 @@ "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml", "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll", - "package/services/metadata/core-properties/f5b0a8a6af3a41e7abbb1c4e08ab5e31.psmdcp", + "package/services/metadata/core-properties/5218831c5b01422bb82b23cafd6488b3.psmdcp", "xunit.extensibility.core.nuspec" ] }, - "xunit.extensibility.execution/2.1.0-rc1-build3168": { - "sha512": "1w0u3eB7i25hca60r/53oSVb0blMOEm2eVqvwTg9jhMSe/A9raj6UZAVzUnFtA3xLssP4K1udOGTC1qrZ9/VoA==", + "xunit.extensibility.execution/2.1.0": { + "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==", "type": "Package", "files": [ "[Content_Types].xml", @@ -486,9 +486,9 @@ "lib/monotouch/xunit.execution.dotnet.dll", "lib/monotouch/xunit.execution.dotnet.pdb", "lib/monotouch/xunit.execution.dotnet.xml", - "lib/net35/xunit.execution.desktop.dll", - "lib/net35/xunit.execution.desktop.pdb", - "lib/net35/xunit.execution.desktop.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb", "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml", @@ -504,12 +504,12 @@ "lib/xamarinios/xunit.execution.dotnet.dll", "lib/xamarinios/xunit.execution.dotnet.pdb", "lib/xamarinios/xunit.execution.dotnet.xml", - "package/services/metadata/core-properties/3ba0c9def4ed43d782df6b4b2c8fef45.psmdcp", + "package/services/metadata/core-properties/9f5f1211ea9a4e748cecce63d1c73e30.psmdcp", "xunit.extensibility.execution.nuspec" ] }, - "xunit.runner.visualstudio/2.1.0-rc1-build1124": { - "sha512": "4m6iGj99F92STIfhg/h+t3sWL42JE29UfCAQShdxQxSz7CpTxZScoxlDpanmroYaMD0riTFTZ7fr9Brsd0ABig==", + "xunit.runner.visualstudio/2.1.0": { + "sha512": "44vJFEQopk8SHfPMjgzn4QevRNfITO7zRZBo9lb+OPhID7v/q2gFaOgyEUomKilq2rwWUQ0m9yquBOzJL4L4aA==", "type": "Package", "files": [ "[Content_Types].xml", @@ -537,15 +537,15 @@ "build/wpa81/xunit.runner.visualstudio.wpa81.dll", "build/wpa81/xunit.runner.visualstudio.wpa81.pri", "build/xamarinios/_._", - "package/services/metadata/core-properties/b0a423d21f7f45688579fd6544753269.psmdcp", + "package/services/metadata/core-properties/75d77ac04d244734b920caf67c66919b.psmdcp", "xunit.runner.visualstudio.nuspec" ] } }, "projectFileDependencyGroups": { "": [ - "xunit >= 2.1.0-rc1-build3168", - "xunit.runner.visualstudio >= 2.1.0-rc1-build1124" + "xunit >= 2.1.0", + "xunit.runner.visualstudio >= 2.1.0" ], ".NETFramework,Version=v4.5.1": [], ".NETFramework,Version=v4.6": [] From ceb6cb58abc6a8ce7a151b0af6c990dcccd0c9c8 Mon Sep 17 00:00:00 2001 From: Ankit Jain Date: Wed, 17 Feb 2016 17:53:56 -0500 Subject: [PATCH 05/16] Fix issue #491 - test breakage on CI These tests include the current directory inside an xml comment. If the path happens to contain `--`, which is not allowed inside xml comments, then these tests break. This showed up on CI servers where the path did include these characters! Issue: https://github.com/Microsoft/msbuild/issues/491 --- .../Evaluation/Preprocessor_Tests.cs | 74 ++++++++++--------- 1 file changed, 38 insertions(+), 36 deletions(-) diff --git a/src/XMakeBuildEngine/UnitTests/Evaluation/Preprocessor_Tests.cs b/src/XMakeBuildEngine/UnitTests/Evaluation/Preprocessor_Tests.cs index b77aceedc26..7097a89e369 100644 --- a/src/XMakeBuildEngine/UnitTests/Evaluation/Preprocessor_Tests.cs +++ b/src/XMakeBuildEngine/UnitTests/Evaluation/Preprocessor_Tests.cs @@ -24,6 +24,8 @@ namespace Microsoft.Build.UnitTests.Preprocessor /// public class Preprocessor_Tests : IDisposable { + private static string CurrentDirectoryXmlCommentFriendly => Directory.GetCurrentDirectory().Replace("--", "__"); + public Preprocessor_Tests() { Setup(); @@ -91,7 +93,7 @@ public void InitialTargetsOuterAndInner() @" @@ -99,14 +101,14 @@ public void InitialTargetsOuterAndInner() ============================================================================================================================================ -" + Directory.GetCurrentDirectory() + @"\p2 +" + CurrentDirectoryXmlCommentFriendly + Path.DirectorySeparatorChar + @"p2 ============================================================================================================================================ --> "); @@ -135,7 +137,7 @@ public void InitialTargetsInnerOnly() @" @@ -143,14 +145,14 @@ public void InitialTargetsInnerOnly() ============================================================================================================================================ -" + Directory.GetCurrentDirectory() + @"\p2 +" + CurrentDirectoryXmlCommentFriendly + Path.DirectorySeparatorChar + @"p2 ============================================================================================================================================ --> "); @@ -179,7 +181,7 @@ public void InitialTargetsOuterOnly() @" @@ -187,14 +189,14 @@ public void InitialTargetsOuterOnly() ============================================================================================================================================ -" + Directory.GetCurrentDirectory() + @"\p2 +" + CurrentDirectoryXmlCommentFriendly + Path.DirectorySeparatorChar + @"p2 ============================================================================================================================================ --> "); @@ -223,7 +225,7 @@ public void TwoFirstEmpty() @" @@ -231,7 +233,7 @@ public void TwoFirstEmpty() ============================================================================================================================================ -" + Directory.GetCurrentDirectory() + @"\p2 +" + CurrentDirectoryXmlCommentFriendly + Path.DirectorySeparatorChar + @"p2 ============================================================================================================================================ --> @@ -241,7 +243,7 @@ public void TwoFirstEmpty() ============================================================================================================================================ -" + Directory.GetCurrentDirectory() + @"\p1 +" + CurrentDirectoryXmlCommentFriendly + Path.DirectorySeparatorChar + @"p1 ============================================================================================================================================ --> "); @@ -271,7 +273,7 @@ public void FalseImport() @" @@ -375,7 +377,7 @@ public void TwoWithContent() ============================================================================================================================================ -" + Directory.GetCurrentDirectory() + @"\p2 +" + CurrentDirectoryXmlCommentFriendly + Path.DirectorySeparatorChar + @"p2 ============================================================================================================================================ --> @@ -418,7 +420,7 @@ public void ImportGroup() @" @@ -430,7 +432,7 @@ public void ImportGroup() ============================================================================================================================================ -" + Directory.GetCurrentDirectory() + @"\p2 +" + CurrentDirectoryXmlCommentFriendly + Path.DirectorySeparatorChar + @"p2 ============================================================================================================================================ --> @@ -440,7 +442,7 @@ public void ImportGroup() ============================================================================================================================================ -" + Directory.GetCurrentDirectory() + @"\p1 +" + CurrentDirectoryXmlCommentFriendly + Path.DirectorySeparatorChar + @"p1 ============================================================================================================================================ --> @@ -476,7 +478,7 @@ public void ImportGroupDoubleChildPlusCondition() @" @@ -488,7 +490,7 @@ public void ImportGroupDoubleChildPlusCondition() ============================================================================================================================================ -" + Directory.GetCurrentDirectory() + @"\p2 +" + CurrentDirectoryXmlCommentFriendly + Path.DirectorySeparatorChar + @"p2 ============================================================================================================================================ --> @@ -498,14 +500,14 @@ public void ImportGroupDoubleChildPlusCondition() ============================================================================================================================================ -" + Directory.GetCurrentDirectory() + @"\p1 +" + CurrentDirectoryXmlCommentFriendly + Path.DirectorySeparatorChar + @"p1 ============================================================================================================================================ --> @@ -515,7 +517,7 @@ public void ImportGroupDoubleChildPlusCondition() ============================================================================================================================================ -" + Directory.GetCurrentDirectory() + @"\p1 +" + CurrentDirectoryXmlCommentFriendly + Path.DirectorySeparatorChar + @"p1 ============================================================================================================================================ --> @@ -549,7 +551,7 @@ public void DefaultTargetsOuterAndInner() @" @@ -557,28 +559,28 @@ public void DefaultTargetsOuterAndInner() ============================================================================================================================================ -" + Directory.GetCurrentDirectory() + @"\p2 +" + CurrentDirectoryXmlCommentFriendly + Path.DirectorySeparatorChar + @"p2 ============================================================================================================================================ --> "); @@ -610,7 +612,7 @@ public void DefaultTargetsInnerOnly() @" @@ -618,28 +620,28 @@ public void DefaultTargetsInnerOnly() ============================================================================================================================================ -" + Directory.GetCurrentDirectory() + @"\p2 +" + CurrentDirectoryXmlCommentFriendly + Path.DirectorySeparatorChar + @"p2 ============================================================================================================================================ --> "); @@ -670,7 +672,7 @@ public void ImportGroupFalseCondition() @" @@ -724,7 +726,7 @@ public void ImportWildcard() @" @@ -757,7 +759,7 @@ public void ImportWildcard() ============================================================================================================================================ -" + Directory.GetCurrentDirectory() + @"\p1 +" + CurrentDirectoryXmlCommentFriendly + Path.DirectorySeparatorChar + @"p1 ============================================================================================================================================ --> "); @@ -831,4 +833,4 @@ public void ProjectMetadata() Helpers.VerifyAssertLineByLine(expected, writer.ToString()); } } -} \ No newline at end of file +} From d83b4bc0b96cecbdc120961423c033924f684bea Mon Sep 17 00:00:00 2001 From: Ankit Jain Date: Thu, 18 Feb 2016 16:49:28 -0500 Subject: [PATCH 06/16] Preprocessor: Sanitize "--" in file paths, when writing them out to xml comments, as it is invalid. Also, fix the related test to match. This should fix issue #491 . --- src/XMakeBuildEngine/Evaluation/Preprocessor.cs | 8 ++++---- .../UnitTests/Evaluation/Preprocessor_Tests.cs | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/XMakeBuildEngine/Evaluation/Preprocessor.cs b/src/XMakeBuildEngine/Evaluation/Preprocessor.cs index 44b6c11a35b..9cc61894af4 100644 --- a/src/XMakeBuildEngine/Evaluation/Preprocessor.cs +++ b/src/XMakeBuildEngine/Evaluation/Preprocessor.cs @@ -97,7 +97,7 @@ private XmlDocument Preprocess() if (!String.IsNullOrEmpty(_project.FullPath)) // Ignore in-memory projects { - destinationDocument.AppendChild(destinationDocument.CreateComment("\r\n" + new String('=', 140) + "\r\n" + _project.FullPath + "\r\n" + new String('=', 140) + "\r\n")); + destinationDocument.AppendChild(destinationDocument.CreateComment("\r\n" + new String('=', 140) + "\r\n" + _project.FullPath.Replace("--", "__") + "\r\n" + new String('=', 140) + "\r\n")); } CloneChildrenResolvingImports(outerDocument, destinationDocument); @@ -184,7 +184,7 @@ private void CloneChildrenResolvingImports(XmlNode source, XmlNode destination) XmlDocument innerDocument = resolved.XmlDocument; string importTag = " 0) ? " Condition=\"" + importCondition + "\"" : String.Empty) + ">"; - destination.AppendChild(destinationDocument.CreateComment("\r\n" + new String('=', 140) + "\r\n" + importTag + "\r\n\r\n" + resolved.FullPath + "\r\n" + new String('=', 140) + "\r\n")); + destination.AppendChild(destinationDocument.CreateComment("\r\n" + new String('=', 140) + "\r\n" + importTag + "\r\n\r\n" + resolved.FullPath.Replace("--", "__") + "\r\n" + new String('=', 140) + "\r\n")); _filePaths.Push(resolved.FullPath); CloneChildrenResolvingImports(innerDocument, destination); @@ -196,7 +196,7 @@ private void CloneChildrenResolvingImports(XmlNode source, XmlNode destination) } else { - destination.AppendChild(destinationDocument.CreateComment("\r\n" + new String('=', 140) + "\r\n \r\n\r\n" + _filePaths.Peek() + "\r\n" + new String('=', 140) + "\r\n")); + destination.AppendChild(destinationDocument.CreateComment("\r\n" + new String('=', 140) + "\r\n \r\n\r\n" + _filePaths.Peek()?.Replace("--", "__") + "\r\n" + new String('=', 140) + "\r\n")); } } @@ -227,4 +227,4 @@ private void CloneChildrenResolvingImports(XmlNode source, XmlNode destination) } } } -} \ No newline at end of file +} diff --git a/src/XMakeBuildEngine/UnitTests/Evaluation/Preprocessor_Tests.cs b/src/XMakeBuildEngine/UnitTests/Evaluation/Preprocessor_Tests.cs index 7097a89e369..d9c9c8672ed 100644 --- a/src/XMakeBuildEngine/UnitTests/Evaluation/Preprocessor_Tests.cs +++ b/src/XMakeBuildEngine/UnitTests/Evaluation/Preprocessor_Tests.cs @@ -307,7 +307,7 @@ public void TwoSecondEmpty() @" @@ -318,14 +318,14 @@ public void TwoSecondEmpty() ============================================================================================================================================ -" + Directory.GetCurrentDirectory() + @"\p2 +" + CurrentDirectoryXmlCommentFriendly + Path.DirectorySeparatorChar + @"p2 ============================================================================================================================================ --> "); From b5d408b76d93f1bfdf8ca5379a49c8582e7340fb Mon Sep 17 00:00:00 2001 From: Andy Gerlicher Date: Tue, 15 Mar 2016 11:16:43 -0700 Subject: [PATCH 07/16] Update BuildTools package to 199. Needed to add BuildToolsTaskDir to force net45 (didn't want to import any of the common props). --- dir.props | 4 ++-- src/.nuget/packages.config | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dir.props b/dir.props index ca6cc35e5cb..8387e36e733 100644 --- a/dir.props +++ b/dir.props @@ -22,7 +22,7 @@ - 1.0.25-prerelease-00080 + 1.0.25-prerelease-00199 1.0.0 2.1.0-rc1-build3168 @@ -36,8 +36,8 @@ $(ProjectDir)packages\ $(PackagesDir)Microsoft.DotNet.BuildTools.$(BuildToolsVersion)\lib\ + $(ToolsDir)net45\ $(PackagesDir)Microsoft.Net.Compilers.$(CompilerToolsVersion)\tools - $(BinDir)Bootstrap\ diff --git a/src/.nuget/packages.config b/src/.nuget/packages.config index ff892bf885e..7b3e8f9e404 100644 --- a/src/.nuget/packages.config +++ b/src/.nuget/packages.config @@ -1,6 +1,6 @@ - + From 6f80cb236aebc460029064106494e432de2b6913 Mon Sep 17 00:00:00 2001 From: Andy Gerlicher Date: Tue, 15 Mar 2016 12:45:11 -0700 Subject: [PATCH 08/16] Fix redundant 'restoring build tools' during build --- dir.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dir.targets b/dir.targets index 3950ad096f9..2b8d9edee28 100644 --- a/dir.targets +++ b/dir.targets @@ -1,5 +1,5 @@ - + From abf0205e5fce9a8d8a2f4fea654ca562b4c649a7 Mon Sep 17 00:00:00 2001 From: Andy Gerlicher Date: Tue, 15 Mar 2016 11:41:28 -0700 Subject: [PATCH 09/16] Add MicroBuild nuget package. This should no-op unless you have the real MicroBuild packages installed which is only for the MSFT internal build (signing, etc.). --- dir.props | 2 ++ src/.nuget/packages.config | 1 + src/dir.props | 1 + src/dir.targets | 2 ++ 4 files changed, 6 insertions(+) diff --git a/dir.props b/dir.props index 8387e36e733..d78d896c353 100644 --- a/dir.props +++ b/dir.props @@ -25,6 +25,7 @@ 1.0.25-prerelease-00199 1.0.0 2.1.0-rc1-build3168 + 0.2.0 $(MSBuildThisFileDirectory) $(ProjectDir)src\ @@ -39,6 +40,7 @@ $(ToolsDir)net45\ $(PackagesDir)Microsoft.Net.Compilers.$(CompilerToolsVersion)\tools $(BinDir)Bootstrap\ + $(PackagesDir)\MicroBuild.Core.$(MicroBuildVersion)\build\ diff --git a/src/.nuget/packages.config b/src/.nuget/packages.config index 7b3e8f9e404..07702a89d12 100644 --- a/src/.nuget/packages.config +++ b/src/.nuget/packages.config @@ -3,4 +3,5 @@ + diff --git a/src/dir.props b/src/dir.props index 4c4916a8b1c..567db391456 100644 --- a/src/dir.props +++ b/src/dir.props @@ -1,3 +1,4 @@  + diff --git a/src/dir.targets b/src/dir.targets index 343034bd2ea..b24beb4fbae 100644 --- a/src/dir.targets +++ b/src/dir.targets @@ -5,6 +5,8 @@ + + $(MSBuildProjectDirectory)\packages.config From 63f967b176601bc6afa3ee5714512035d88850d4 Mon Sep 17 00:00:00 2001 From: Andy Gerlicher Date: Wed, 16 Mar 2016 13:17:23 -0700 Subject: [PATCH 10/16] Add hook to restore BuildTools package on Rebuild - Fixed scenario where Rebuild would fail on first build. This happened because /t:Clean would load the projects w/o certain Imports (particularly, sign.targets from BuildTools) and they would not be re-evaluated on Build. - Moved some of the NuGet restore / download logic to match xplat. --- build.proj | 7 +- dir.props | 3 + dir.targets | 136 ++------------------------------- src/.nuget/packageLoad.targets | 83 ++++++++++++++++++++ src/dir.props | 2 +- src/dir.targets | 4 +- 6 files changed, 97 insertions(+), 138 deletions(-) create mode 100644 src/.nuget/packageLoad.targets diff --git a/build.proj b/build.proj index f20ae66708d..8901fe692b6 100644 --- a/build.proj +++ b/build.proj @@ -4,16 +4,15 @@ - + - - + + DependsOnTargets="_RestoreBuildToolsPackagesConfig"> diff --git a/dir.props b/dir.props index d78d896c353..57ba36ad87c 100644 --- a/dir.props +++ b/dir.props @@ -60,6 +60,8 @@ $(SourceDir).nuget\NuGet.Config @(NuGetSourceList -> '-source %(Identity)', ' ') $(NuGetPackageSource) -ConfigFile "$(NuGetConfigFile)" + $([System.IO.Path]::Combine($(SourceDir),".nuget")) + $(PackagesDir) "$(NuGetToolPath)" $(NugetRestoreCommand) install @@ -68,6 +70,7 @@ $(NugetRestoreCommand) $(NuGetConfigCommandLine) $(NugetRestoreCommand) -Verbosity detailed mono $(NuGetRestoreCommand) + <_RestoreBuildToolsCommand>$(NugetRestoreCommand) "$(SourceDir).nuget/packages.config" diff --git a/dir.targets b/dir.targets index 2b8d9edee28..ed7e09cabe3 100644 --- a/dir.targets +++ b/dir.targets @@ -1,138 +1,10 @@ - - - - -
- - - - - - - maxTries) - { - throw; - } - else - { - Log.LogMessage(MessageImportance.High, "Download failed, retrying: {0}", e.Message); - } - } - } - - try - { - if (!File.Exists(FileName)) - File.Move(tempFile, FileName); - } - finally - { - if (File.Exists(tempFile)) - File.Delete(tempFile); - } - ]]> - - - - - - - $(ToolsDir)BuildTools.semaphore - - - - - - - - - - - - - - - - - - - - - - - - - - - <_RestoreBuildToolsCommand>$(NugetRestoreCommand) "$(SourceDir).nuget/packages.config" - - - - - - - - - - - - - - - - + + + BeforeTargets="_RestoreBuildToolsPackagesConfig" > - + + diff --git a/src/.nuget/packageLoad.targets b/src/.nuget/packageLoad.targets new file mode 100644 index 00000000000..b1072831907 --- /dev/null +++ b/src/.nuget/packageLoad.targets @@ -0,0 +1,83 @@ + + + + + + + + $([System.IO.Path]::Combine($(NuGetDir), "NuGet.exe")) + $([System.IO.Path]::Combine($(NuGetConfigDir),"packages.config")) + $([System.IO.Path]::Combine($(NuGetConfigDir),"project.json")) + v3.3.0 + https://dist.nuget.org/win-x86-commandline/$(NugetVersion)/nuget.exe + $(NuGetDir)NuGet.$(NugetVersion).semaphore + powershell -noprofile -nologo -command "(new-object System.Net.WebClient).DownloadFile('$(NugetDownloadURL)', '$(NuGetToolPath)')" + curl -sSL --create-dirs -o "$(NuGetToolPath)" $(NugetDownloadURL) + $(NuGetDir)BuildTools.semaphore + + + + $(GlobalPropertiesFile);$(NuGetPackagesFile);$(NuGetProjectJsonFile) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/dir.props b/src/dir.props index 567db391456..810ef0a8b35 100644 --- a/src/dir.props +++ b/src/dir.props @@ -1,4 +1,4 @@  - + diff --git a/src/dir.targets b/src/dir.targets index b24beb4fbae..1296e0e5b49 100644 --- a/src/dir.targets +++ b/src/dir.targets @@ -3,9 +3,9 @@ - + - + From d7998696df35246155f4ff6ab749aee9e01c2b85 Mon Sep 17 00:00:00 2001 From: Andy Gerlicher Date: Tue, 15 Mar 2016 13:02:06 -0700 Subject: [PATCH 11/16] Update project.lock and add autogenerated nuget.props files --- ...soft.Build.Framework.UnitTests.nuget.props | 10 + src/Framework/UnitTests/project.lock.json | 160 --------------- ...soft.Build.Utilities.UnitTests.nuget.props | 10 + src/Utilities/UnitTests/project.lock.json | 184 ------------------ ...crosoft.Build.Engine.UnitTests.nuget.props | 10 + .../UnitTests/project.lock.json | 184 ------------------ ...soft.Build.Engine.OM.UnitTests.nuget.props | 10 + .../UnitTestsPublicOM/project.lock.json | 184 ------------------ src/XMakeBuildEngine/project.lock.json | 31 --- ...ft.Build.CommandLine.UnitTests.nuget.props | 10 + .../UnitTests/project.lock.json | 184 ------------------ ...icrosoft.Build.Tasks.UnitTests.nuget.props | 10 + src/XMakeTasks/UnitTests/project.lock.json | 184 ------------------ 13 files changed, 60 insertions(+), 1111 deletions(-) create mode 100644 src/Framework/UnitTests/Microsoft.Build.Framework.UnitTests.nuget.props create mode 100644 src/Utilities/UnitTests/Microsoft.Build.Utilities.UnitTests.nuget.props create mode 100644 src/XMakeBuildEngine/UnitTests/Microsoft.Build.Engine.UnitTests.nuget.props create mode 100644 src/XMakeBuildEngine/UnitTestsPublicOM/Microsoft.Build.Engine.OM.UnitTests.nuget.props create mode 100644 src/XMakeCommandLine/UnitTests/Microsoft.Build.CommandLine.UnitTests.nuget.props create mode 100644 src/XMakeTasks/UnitTests/Microsoft.Build.Tasks.UnitTests.nuget.props diff --git a/src/Framework/UnitTests/Microsoft.Build.Framework.UnitTests.nuget.props b/src/Framework/UnitTests/Microsoft.Build.Framework.UnitTests.nuget.props new file mode 100644 index 00000000000..3e2cd3e9317 --- /dev/null +++ b/src/Framework/UnitTests/Microsoft.Build.Framework.UnitTests.nuget.props @@ -0,0 +1,10 @@ + + + + $(UserProfile)\.nuget\packages\ + + + + + + \ No newline at end of file diff --git a/src/Framework/UnitTests/project.lock.json b/src/Framework/UnitTests/project.lock.json index 05e92133eaf..363d359175e 100644 --- a/src/Framework/UnitTests/project.lock.json +++ b/src/Framework/UnitTests/project.lock.json @@ -2,165 +2,6 @@ "locked": false, "version": 1, "targets": { - ".NETFramework,Version=v4.5.1": { - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.5.1/win": { - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.5.1/win-": { - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, ".NETFramework,Version=v4.6": { "xunit/2.1.0": { "dependencies": { @@ -484,7 +325,6 @@ "xunit >= 2.1.0", "xunit.runner.visualstudio >= 2.1.0" ], - ".NETFramework,Version=v4.5.1": [], ".NETFramework,Version=v4.6": [] } } \ No newline at end of file diff --git a/src/Utilities/UnitTests/Microsoft.Build.Utilities.UnitTests.nuget.props b/src/Utilities/UnitTests/Microsoft.Build.Utilities.UnitTests.nuget.props new file mode 100644 index 00000000000..3e2cd3e9317 --- /dev/null +++ b/src/Utilities/UnitTests/Microsoft.Build.Utilities.UnitTests.nuget.props @@ -0,0 +1,10 @@ + + + + $(UserProfile)\.nuget\packages\ + + + + + + \ No newline at end of file diff --git a/src/Utilities/UnitTests/project.lock.json b/src/Utilities/UnitTests/project.lock.json index ec0c375a098..fe2ca9b59d3 100644 --- a/src/Utilities/UnitTests/project.lock.json +++ b/src/Utilities/UnitTests/project.lock.json @@ -2,189 +2,6 @@ "locked": false, "version": 1, "targets": { - ".NETFramework,Version=v4.5.1": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.5.1/win": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.5.1/win-": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, ".NETFramework,Version=v4.6": { "Microsoft.Tpl.Dataflow/4.5.24": { "compile": { @@ -547,7 +364,6 @@ "xunit >= 2.1.0", "xunit.runner.visualstudio >= 2.1.0" ], - ".NETFramework,Version=v4.5.1": [], ".NETFramework,Version=v4.6": [] } } \ No newline at end of file diff --git a/src/XMakeBuildEngine/UnitTests/Microsoft.Build.Engine.UnitTests.nuget.props b/src/XMakeBuildEngine/UnitTests/Microsoft.Build.Engine.UnitTests.nuget.props new file mode 100644 index 00000000000..3e2cd3e9317 --- /dev/null +++ b/src/XMakeBuildEngine/UnitTests/Microsoft.Build.Engine.UnitTests.nuget.props @@ -0,0 +1,10 @@ + + + + $(UserProfile)\.nuget\packages\ + + + + + + \ No newline at end of file diff --git a/src/XMakeBuildEngine/UnitTests/project.lock.json b/src/XMakeBuildEngine/UnitTests/project.lock.json index ec0c375a098..fe2ca9b59d3 100644 --- a/src/XMakeBuildEngine/UnitTests/project.lock.json +++ b/src/XMakeBuildEngine/UnitTests/project.lock.json @@ -2,189 +2,6 @@ "locked": false, "version": 1, "targets": { - ".NETFramework,Version=v4.5.1": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.5.1/win": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.5.1/win-": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, ".NETFramework,Version=v4.6": { "Microsoft.Tpl.Dataflow/4.5.24": { "compile": { @@ -547,7 +364,6 @@ "xunit >= 2.1.0", "xunit.runner.visualstudio >= 2.1.0" ], - ".NETFramework,Version=v4.5.1": [], ".NETFramework,Version=v4.6": [] } } \ No newline at end of file diff --git a/src/XMakeBuildEngine/UnitTestsPublicOM/Microsoft.Build.Engine.OM.UnitTests.nuget.props b/src/XMakeBuildEngine/UnitTestsPublicOM/Microsoft.Build.Engine.OM.UnitTests.nuget.props new file mode 100644 index 00000000000..3e2cd3e9317 --- /dev/null +++ b/src/XMakeBuildEngine/UnitTestsPublicOM/Microsoft.Build.Engine.OM.UnitTests.nuget.props @@ -0,0 +1,10 @@ + + + + $(UserProfile)\.nuget\packages\ + + + + + + \ No newline at end of file diff --git a/src/XMakeBuildEngine/UnitTestsPublicOM/project.lock.json b/src/XMakeBuildEngine/UnitTestsPublicOM/project.lock.json index ec0c375a098..fe2ca9b59d3 100644 --- a/src/XMakeBuildEngine/UnitTestsPublicOM/project.lock.json +++ b/src/XMakeBuildEngine/UnitTestsPublicOM/project.lock.json @@ -2,189 +2,6 @@ "locked": false, "version": 1, "targets": { - ".NETFramework,Version=v4.5.1": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.5.1/win": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.5.1/win-": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, ".NETFramework,Version=v4.6": { "Microsoft.Tpl.Dataflow/4.5.24": { "compile": { @@ -547,7 +364,6 @@ "xunit >= 2.1.0", "xunit.runner.visualstudio >= 2.1.0" ], - ".NETFramework,Version=v4.5.1": [], ".NETFramework,Version=v4.6": [] } } \ No newline at end of file diff --git a/src/XMakeBuildEngine/project.lock.json b/src/XMakeBuildEngine/project.lock.json index 29088f5b5ea..a13428fdbac 100644 --- a/src/XMakeBuildEngine/project.lock.json +++ b/src/XMakeBuildEngine/project.lock.json @@ -2,36 +2,6 @@ "locked": false, "version": 1, "targets": { - ".NETFramework,Version=v4.5.1": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - } - }, - ".NETFramework,Version=v4.5.1/win": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - } - }, - ".NETFramework,Version=v4.5.1/win-": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - } - }, ".NETFramework,Version=v4.6": { "Microsoft.Tpl.Dataflow/4.5.24": { "compile": { @@ -84,7 +54,6 @@ "": [ "Microsoft.Tpl.Dataflow >= 4.5.24" ], - ".NETFramework,Version=v4.5.1": [], ".NETFramework,Version=v4.6": [] } } \ No newline at end of file diff --git a/src/XMakeCommandLine/UnitTests/Microsoft.Build.CommandLine.UnitTests.nuget.props b/src/XMakeCommandLine/UnitTests/Microsoft.Build.CommandLine.UnitTests.nuget.props new file mode 100644 index 00000000000..3e2cd3e9317 --- /dev/null +++ b/src/XMakeCommandLine/UnitTests/Microsoft.Build.CommandLine.UnitTests.nuget.props @@ -0,0 +1,10 @@ + + + + $(UserProfile)\.nuget\packages\ + + + + + + \ No newline at end of file diff --git a/src/XMakeCommandLine/UnitTests/project.lock.json b/src/XMakeCommandLine/UnitTests/project.lock.json index ec0c375a098..fe2ca9b59d3 100644 --- a/src/XMakeCommandLine/UnitTests/project.lock.json +++ b/src/XMakeCommandLine/UnitTests/project.lock.json @@ -2,189 +2,6 @@ "locked": false, "version": 1, "targets": { - ".NETFramework,Version=v4.5.1": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.5.1/win": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.5.1/win-": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, ".NETFramework,Version=v4.6": { "Microsoft.Tpl.Dataflow/4.5.24": { "compile": { @@ -547,7 +364,6 @@ "xunit >= 2.1.0", "xunit.runner.visualstudio >= 2.1.0" ], - ".NETFramework,Version=v4.5.1": [], ".NETFramework,Version=v4.6": [] } } \ No newline at end of file diff --git a/src/XMakeTasks/UnitTests/Microsoft.Build.Tasks.UnitTests.nuget.props b/src/XMakeTasks/UnitTests/Microsoft.Build.Tasks.UnitTests.nuget.props new file mode 100644 index 00000000000..3e2cd3e9317 --- /dev/null +++ b/src/XMakeTasks/UnitTests/Microsoft.Build.Tasks.UnitTests.nuget.props @@ -0,0 +1,10 @@ + + + + $(UserProfile)\.nuget\packages\ + + + + + + \ No newline at end of file diff --git a/src/XMakeTasks/UnitTests/project.lock.json b/src/XMakeTasks/UnitTests/project.lock.json index ec0c375a098..fe2ca9b59d3 100644 --- a/src/XMakeTasks/UnitTests/project.lock.json +++ b/src/XMakeTasks/UnitTests/project.lock.json @@ -2,189 +2,6 @@ "locked": false, "version": 1, "targets": { - ".NETFramework,Version=v4.5.1": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.5.1/win": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.5.1/win-": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, ".NETFramework,Version=v4.6": { "Microsoft.Tpl.Dataflow/4.5.24": { "compile": { @@ -547,7 +364,6 @@ "xunit >= 2.1.0", "xunit.runner.visualstudio >= 2.1.0" ], - ".NETFramework,Version=v4.5.1": [], ".NETFramework,Version=v4.6": [] } } \ No newline at end of file From fa23b86678ba91aab5b041390f695d1978277fe2 Mon Sep 17 00:00:00 2001 From: Andy Gerlicher Date: Wed, 16 Mar 2016 14:56:59 -0700 Subject: [PATCH 12/16] Remove .lock and .nuget.props files Also updates .gitignore file to match xplat. --- .gitignore | 57 ++- ...soft.Build.Framework.UnitTests.nuget.props | 10 - src/Framework/UnitTests/project.lock.json | 330 ---------------- ...soft.Build.Utilities.UnitTests.nuget.props | 10 - src/Utilities/UnitTests/project.lock.json | 369 ------------------ ...crosoft.Build.Engine.UnitTests.nuget.props | 10 - .../UnitTests/project.lock.json | 369 ------------------ ...soft.Build.Engine.OM.UnitTests.nuget.props | 10 - .../UnitTestsPublicOM/project.lock.json | 369 ------------------ src/XMakeBuildEngine/project.lock.json | 59 --- ...ft.Build.CommandLine.UnitTests.nuget.props | 10 - .../UnitTests/project.lock.json | 369 ------------------ ...icrosoft.Build.Tasks.UnitTests.nuget.props | 10 - src/XMakeTasks/UnitTests/project.lock.json | 369 ------------------ 14 files changed, 50 insertions(+), 2301 deletions(-) delete mode 100644 src/Framework/UnitTests/Microsoft.Build.Framework.UnitTests.nuget.props delete mode 100644 src/Framework/UnitTests/project.lock.json delete mode 100644 src/Utilities/UnitTests/Microsoft.Build.Utilities.UnitTests.nuget.props delete mode 100644 src/Utilities/UnitTests/project.lock.json delete mode 100644 src/XMakeBuildEngine/UnitTests/Microsoft.Build.Engine.UnitTests.nuget.props delete mode 100644 src/XMakeBuildEngine/UnitTests/project.lock.json delete mode 100644 src/XMakeBuildEngine/UnitTestsPublicOM/Microsoft.Build.Engine.OM.UnitTests.nuget.props delete mode 100644 src/XMakeBuildEngine/UnitTestsPublicOM/project.lock.json delete mode 100644 src/XMakeBuildEngine/project.lock.json delete mode 100644 src/XMakeCommandLine/UnitTests/Microsoft.Build.CommandLine.UnitTests.nuget.props delete mode 100644 src/XMakeCommandLine/UnitTests/project.lock.json delete mode 100644 src/XMakeTasks/UnitTests/Microsoft.Build.Tasks.UnitTests.nuget.props delete mode 100644 src/XMakeTasks/UnitTests/project.lock.json diff --git a/.gitignore b/.gitignore index 31b60081b0f..5287cc1493f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,8 +4,12 @@ # User-specific files *.suo *.user +*.userosscache *.sln.docstates +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + # Build results [Dd]ebug/ [Dd]ebugPublic/ @@ -18,14 +22,16 @@ bld/ [Bb]in/ [Oo]bj/ -# Roslyn cache directories -*.ide/ +# Visual Studio 2015 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ # MSTest test Results [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* -#NUNIT +# NUNIT *.VisualState.xml TestResult.xml @@ -34,9 +40,16 @@ TestResult.xml [Rr]eleasePS/ dlldata.c +# DNX +project.lock.json +*.project.lock.json +artifacts/ + # Nuget v3 +*.nuget.props *.nuget.targets + *_i.c *_p.c *_i.h @@ -89,7 +102,7 @@ _ReSharper*/ *.[Rr]e[Ss]harper *.DotSettings.user -# JustCode is a .NET coding addin-in +# JustCode is a .NET coding add-in .JustCode # TeamCity is a build add-in @@ -101,6 +114,7 @@ _TeamCity* # NCrunch _NCrunch_* .*crunch*.local.xml +nCrunchTemp_* # MightyMoose *.mm.* @@ -139,7 +153,7 @@ publish/ **/packages/* # except build/, which is used as an MSBuild target. !**/packages/build/ -# If using the old MSBuild-Integrated Package Restore, uncomment this: +# Uncomment if necessary however generally it will be regenerated when needed #!**/packages/repositories.config # Windows Azure Build Output @@ -149,9 +163,13 @@ csx/ # Windows Store app package directory AppPackages/ +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ + # Others -sql/ -*.Cache ClientBin/ [Ss]tyle[Cc]op.* ~$* @@ -161,6 +179,7 @@ ClientBin/ *.pfx *.publishsettings node_modules/ +orleans.codegen.cs # RIA/Silverlight projects Generated_Code/ @@ -184,3 +203,27 @@ UpgradeLog*.htm # Microsoft Fakes FakesAssemblies/ + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Project-specific +ApiPort/ +*.xlsx +ref/ +Differences.txt +Tools/ diff --git a/src/Framework/UnitTests/Microsoft.Build.Framework.UnitTests.nuget.props b/src/Framework/UnitTests/Microsoft.Build.Framework.UnitTests.nuget.props deleted file mode 100644 index 3e2cd3e9317..00000000000 --- a/src/Framework/UnitTests/Microsoft.Build.Framework.UnitTests.nuget.props +++ /dev/null @@ -1,10 +0,0 @@ - - - - $(UserProfile)\.nuget\packages\ - - - - - - \ No newline at end of file diff --git a/src/Framework/UnitTests/project.lock.json b/src/Framework/UnitTests/project.lock.json deleted file mode 100644 index 363d359175e..00000000000 --- a/src/Framework/UnitTests/project.lock.json +++ /dev/null @@ -1,330 +0,0 @@ -{ - "locked": false, - "version": 1, - "targets": { - ".NETFramework,Version=v4.6": { - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.6/win": { - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.6/win-": { - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - } - }, - "libraries": { - "xunit/2.1.0": { - "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "package/services/metadata/core-properties/645916a897f44189a642f33e571d5b90.psmdcp", - "xunit.nuspec" - ] - }, - "xunit.abstractions/2.0.0": { - "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", - "package/services/metadata/core-properties/24083640fee244bf9de77f4c35d40a72.psmdcp", - "xunit.abstractions.nuspec" - ] - }, - "xunit.assert/2.1.0": { - "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dotnet/xunit.assert.dll", - "lib/dotnet/xunit.assert.pdb", - "lib/dotnet/xunit.assert.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml", - "package/services/metadata/core-properties/4f538d979dfc48ed9b4c20e5a69d87b1.psmdcp", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.1.0": { - "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "build/_desktop/xunit.execution.desktop.dll", - "build/dnx451/_._", - "build/monoandroid/_._", - "build/monotouch/_._", - "build/net45/_._", - "build/portable-net45+win8+wp8+wpa81/xunit.core.props", - "build/win8/_._", - "build/win81/xunit.core.props", - "build/wp8/_._", - "build/wpa81/xunit.core.props", - "build/xamarinios/_._", - "package/services/metadata/core-properties/cce23a490b7f4272adfe9aa57c4e1ca3.psmdcp", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.1.0": { - "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dotnet/xunit.core.dll", - "lib/dotnet/xunit.core.dll.tdnet", - "lib/dotnet/xunit.core.pdb", - "lib/dotnet/xunit.core.xml", - "lib/dotnet/xunit.runner.tdnet.dll", - "lib/dotnet/xunit.runner.utility.desktop.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll.tdnet", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll", - "package/services/metadata/core-properties/5218831c5b01422bb82b23cafd6488b3.psmdcp", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.1.0": { - "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dnx451/xunit.execution.dotnet.dll", - "lib/dnx451/xunit.execution.dotnet.pdb", - "lib/dnx451/xunit.execution.dotnet.xml", - "lib/dotnet/xunit.execution.dotnet.dll", - "lib/dotnet/xunit.execution.dotnet.pdb", - "lib/dotnet/xunit.execution.dotnet.xml", - "lib/monoandroid/xunit.execution.dotnet.dll", - "lib/monoandroid/xunit.execution.dotnet.pdb", - "lib/monoandroid/xunit.execution.dotnet.xml", - "lib/monotouch/xunit.execution.dotnet.dll", - "lib/monotouch/xunit.execution.dotnet.pdb", - "lib/monotouch/xunit.execution.dotnet.xml", - "lib/net45/xunit.execution.desktop.dll", - "lib/net45/xunit.execution.desktop.pdb", - "lib/net45/xunit.execution.desktop.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml", - "lib/win8/xunit.execution.dotnet.dll", - "lib/win8/xunit.execution.dotnet.pdb", - "lib/win8/xunit.execution.dotnet.xml", - "lib/wp8/xunit.execution.dotnet.dll", - "lib/wp8/xunit.execution.dotnet.pdb", - "lib/wp8/xunit.execution.dotnet.xml", - "lib/wpa81/xunit.execution.dotnet.dll", - "lib/wpa81/xunit.execution.dotnet.pdb", - "lib/wpa81/xunit.execution.dotnet.xml", - "lib/xamarinios/xunit.execution.dotnet.dll", - "lib/xamarinios/xunit.execution.dotnet.pdb", - "lib/xamarinios/xunit.execution.dotnet.xml", - "package/services/metadata/core-properties/9f5f1211ea9a4e748cecce63d1c73e30.psmdcp", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/2.1.0": { - "sha512": "44vJFEQopk8SHfPMjgzn4QevRNfITO7zRZBo9lb+OPhID7v/q2gFaOgyEUomKilq2rwWUQ0m9yquBOzJL4L4aA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "build/_common/xunit.abstractions.dll", - "build/_common/xunit.runner.utility.desktop.dll", - "build/_common/xunit.runner.utility.dotnet.dll", - "build/_common/xunit.runner.visualstudio.testadapter.dll", - "build/monoandroid/_._", - "build/monotouch/_._", - "build/net20/xunit.runner.visualstudio.props", - "build/portable-net45+win8+wp8+wpa81/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.visualstudio.targets", - "build/uap10.0/xunit.runner.visualstudio.uwp.dll", - "build/uap10.0/xunit.runner.visualstudio.uwp.pri", - "build/win8/_._", - "build/win81/xunit.runner.visualstudio.props", - "build/win81/xunit.runner.visualstudio.targets", - "build/win81/xunit.runner.visualstudio.win81.dll", - "build/win81/xunit.runner.visualstudio.win81.pri", - "build/wp8/_._", - "build/wpa81/xunit.runner.visualstudio.props", - "build/wpa81/xunit.runner.visualstudio.targets", - "build/wpa81/xunit.runner.visualstudio.wpa81.dll", - "build/wpa81/xunit.runner.visualstudio.wpa81.pri", - "build/xamarinios/_._", - "package/services/metadata/core-properties/75d77ac04d244734b920caf67c66919b.psmdcp", - "xunit.runner.visualstudio.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "": [ - "xunit >= 2.1.0", - "xunit.runner.visualstudio >= 2.1.0" - ], - ".NETFramework,Version=v4.6": [] - } -} \ No newline at end of file diff --git a/src/Utilities/UnitTests/Microsoft.Build.Utilities.UnitTests.nuget.props b/src/Utilities/UnitTests/Microsoft.Build.Utilities.UnitTests.nuget.props deleted file mode 100644 index 3e2cd3e9317..00000000000 --- a/src/Utilities/UnitTests/Microsoft.Build.Utilities.UnitTests.nuget.props +++ /dev/null @@ -1,10 +0,0 @@ - - - - $(UserProfile)\.nuget\packages\ - - - - - - \ No newline at end of file diff --git a/src/Utilities/UnitTests/project.lock.json b/src/Utilities/UnitTests/project.lock.json deleted file mode 100644 index fe2ca9b59d3..00000000000 --- a/src/Utilities/UnitTests/project.lock.json +++ /dev/null @@ -1,369 +0,0 @@ -{ - "locked": false, - "version": 1, - "targets": { - ".NETFramework,Version=v4.6": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.6/win": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.6/win-": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - } - }, - "libraries": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "sha512": "6BE4Vu74+dkv5AkJd+UxW1sFMepMZOVlUoMZDUKqhc4Bf7pe7yySzCj6QrowUZbCqcDPwOiQsAgz3nXiLQSyMw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wp8+wpa81/system.threading.tasks.dataflow.xml", - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wpa81/system.threading.tasks.dataflow.xml", - "License-Stable.rtf", - "Microsoft.Tpl.Dataflow.nuspec", - "package/services/metadata/core-properties/3dd86853af3a4ae392f3331459714ce0.psmdcp" - ] - }, - "xunit/2.1.0": { - "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "package/services/metadata/core-properties/645916a897f44189a642f33e571d5b90.psmdcp", - "xunit.nuspec" - ] - }, - "xunit.abstractions/2.0.0": { - "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", - "package/services/metadata/core-properties/24083640fee244bf9de77f4c35d40a72.psmdcp", - "xunit.abstractions.nuspec" - ] - }, - "xunit.assert/2.1.0": { - "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dotnet/xunit.assert.dll", - "lib/dotnet/xunit.assert.pdb", - "lib/dotnet/xunit.assert.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml", - "package/services/metadata/core-properties/4f538d979dfc48ed9b4c20e5a69d87b1.psmdcp", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.1.0": { - "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "build/_desktop/xunit.execution.desktop.dll", - "build/dnx451/_._", - "build/monoandroid/_._", - "build/monotouch/_._", - "build/net45/_._", - "build/portable-net45+win8+wp8+wpa81/xunit.core.props", - "build/win8/_._", - "build/win81/xunit.core.props", - "build/wp8/_._", - "build/wpa81/xunit.core.props", - "build/xamarinios/_._", - "package/services/metadata/core-properties/cce23a490b7f4272adfe9aa57c4e1ca3.psmdcp", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.1.0": { - "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dotnet/xunit.core.dll", - "lib/dotnet/xunit.core.dll.tdnet", - "lib/dotnet/xunit.core.pdb", - "lib/dotnet/xunit.core.xml", - "lib/dotnet/xunit.runner.tdnet.dll", - "lib/dotnet/xunit.runner.utility.desktop.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll.tdnet", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll", - "package/services/metadata/core-properties/5218831c5b01422bb82b23cafd6488b3.psmdcp", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.1.0": { - "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dnx451/xunit.execution.dotnet.dll", - "lib/dnx451/xunit.execution.dotnet.pdb", - "lib/dnx451/xunit.execution.dotnet.xml", - "lib/dotnet/xunit.execution.dotnet.dll", - "lib/dotnet/xunit.execution.dotnet.pdb", - "lib/dotnet/xunit.execution.dotnet.xml", - "lib/monoandroid/xunit.execution.dotnet.dll", - "lib/monoandroid/xunit.execution.dotnet.pdb", - "lib/monoandroid/xunit.execution.dotnet.xml", - "lib/monotouch/xunit.execution.dotnet.dll", - "lib/monotouch/xunit.execution.dotnet.pdb", - "lib/monotouch/xunit.execution.dotnet.xml", - "lib/net45/xunit.execution.desktop.dll", - "lib/net45/xunit.execution.desktop.pdb", - "lib/net45/xunit.execution.desktop.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml", - "lib/win8/xunit.execution.dotnet.dll", - "lib/win8/xunit.execution.dotnet.pdb", - "lib/win8/xunit.execution.dotnet.xml", - "lib/wp8/xunit.execution.dotnet.dll", - "lib/wp8/xunit.execution.dotnet.pdb", - "lib/wp8/xunit.execution.dotnet.xml", - "lib/wpa81/xunit.execution.dotnet.dll", - "lib/wpa81/xunit.execution.dotnet.pdb", - "lib/wpa81/xunit.execution.dotnet.xml", - "lib/xamarinios/xunit.execution.dotnet.dll", - "lib/xamarinios/xunit.execution.dotnet.pdb", - "lib/xamarinios/xunit.execution.dotnet.xml", - "package/services/metadata/core-properties/9f5f1211ea9a4e748cecce63d1c73e30.psmdcp", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/2.1.0": { - "sha512": "44vJFEQopk8SHfPMjgzn4QevRNfITO7zRZBo9lb+OPhID7v/q2gFaOgyEUomKilq2rwWUQ0m9yquBOzJL4L4aA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "build/_common/xunit.abstractions.dll", - "build/_common/xunit.runner.utility.desktop.dll", - "build/_common/xunit.runner.utility.dotnet.dll", - "build/_common/xunit.runner.visualstudio.testadapter.dll", - "build/monoandroid/_._", - "build/monotouch/_._", - "build/net20/xunit.runner.visualstudio.props", - "build/portable-net45+win8+wp8+wpa81/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.visualstudio.targets", - "build/uap10.0/xunit.runner.visualstudio.uwp.dll", - "build/uap10.0/xunit.runner.visualstudio.uwp.pri", - "build/win8/_._", - "build/win81/xunit.runner.visualstudio.props", - "build/win81/xunit.runner.visualstudio.targets", - "build/win81/xunit.runner.visualstudio.win81.dll", - "build/win81/xunit.runner.visualstudio.win81.pri", - "build/wp8/_._", - "build/wpa81/xunit.runner.visualstudio.props", - "build/wpa81/xunit.runner.visualstudio.targets", - "build/wpa81/xunit.runner.visualstudio.wpa81.dll", - "build/wpa81/xunit.runner.visualstudio.wpa81.pri", - "build/xamarinios/_._", - "package/services/metadata/core-properties/75d77ac04d244734b920caf67c66919b.psmdcp", - "xunit.runner.visualstudio.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "": [ - "xunit >= 2.1.0", - "xunit.runner.visualstudio >= 2.1.0" - ], - ".NETFramework,Version=v4.6": [] - } -} \ No newline at end of file diff --git a/src/XMakeBuildEngine/UnitTests/Microsoft.Build.Engine.UnitTests.nuget.props b/src/XMakeBuildEngine/UnitTests/Microsoft.Build.Engine.UnitTests.nuget.props deleted file mode 100644 index 3e2cd3e9317..00000000000 --- a/src/XMakeBuildEngine/UnitTests/Microsoft.Build.Engine.UnitTests.nuget.props +++ /dev/null @@ -1,10 +0,0 @@ - - - - $(UserProfile)\.nuget\packages\ - - - - - - \ No newline at end of file diff --git a/src/XMakeBuildEngine/UnitTests/project.lock.json b/src/XMakeBuildEngine/UnitTests/project.lock.json deleted file mode 100644 index fe2ca9b59d3..00000000000 --- a/src/XMakeBuildEngine/UnitTests/project.lock.json +++ /dev/null @@ -1,369 +0,0 @@ -{ - "locked": false, - "version": 1, - "targets": { - ".NETFramework,Version=v4.6": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.6/win": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.6/win-": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - } - }, - "libraries": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "sha512": "6BE4Vu74+dkv5AkJd+UxW1sFMepMZOVlUoMZDUKqhc4Bf7pe7yySzCj6QrowUZbCqcDPwOiQsAgz3nXiLQSyMw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wp8+wpa81/system.threading.tasks.dataflow.xml", - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wpa81/system.threading.tasks.dataflow.xml", - "License-Stable.rtf", - "Microsoft.Tpl.Dataflow.nuspec", - "package/services/metadata/core-properties/3dd86853af3a4ae392f3331459714ce0.psmdcp" - ] - }, - "xunit/2.1.0": { - "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "package/services/metadata/core-properties/645916a897f44189a642f33e571d5b90.psmdcp", - "xunit.nuspec" - ] - }, - "xunit.abstractions/2.0.0": { - "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", - "package/services/metadata/core-properties/24083640fee244bf9de77f4c35d40a72.psmdcp", - "xunit.abstractions.nuspec" - ] - }, - "xunit.assert/2.1.0": { - "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dotnet/xunit.assert.dll", - "lib/dotnet/xunit.assert.pdb", - "lib/dotnet/xunit.assert.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml", - "package/services/metadata/core-properties/4f538d979dfc48ed9b4c20e5a69d87b1.psmdcp", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.1.0": { - "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "build/_desktop/xunit.execution.desktop.dll", - "build/dnx451/_._", - "build/monoandroid/_._", - "build/monotouch/_._", - "build/net45/_._", - "build/portable-net45+win8+wp8+wpa81/xunit.core.props", - "build/win8/_._", - "build/win81/xunit.core.props", - "build/wp8/_._", - "build/wpa81/xunit.core.props", - "build/xamarinios/_._", - "package/services/metadata/core-properties/cce23a490b7f4272adfe9aa57c4e1ca3.psmdcp", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.1.0": { - "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dotnet/xunit.core.dll", - "lib/dotnet/xunit.core.dll.tdnet", - "lib/dotnet/xunit.core.pdb", - "lib/dotnet/xunit.core.xml", - "lib/dotnet/xunit.runner.tdnet.dll", - "lib/dotnet/xunit.runner.utility.desktop.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll.tdnet", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll", - "package/services/metadata/core-properties/5218831c5b01422bb82b23cafd6488b3.psmdcp", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.1.0": { - "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dnx451/xunit.execution.dotnet.dll", - "lib/dnx451/xunit.execution.dotnet.pdb", - "lib/dnx451/xunit.execution.dotnet.xml", - "lib/dotnet/xunit.execution.dotnet.dll", - "lib/dotnet/xunit.execution.dotnet.pdb", - "lib/dotnet/xunit.execution.dotnet.xml", - "lib/monoandroid/xunit.execution.dotnet.dll", - "lib/monoandroid/xunit.execution.dotnet.pdb", - "lib/monoandroid/xunit.execution.dotnet.xml", - "lib/monotouch/xunit.execution.dotnet.dll", - "lib/monotouch/xunit.execution.dotnet.pdb", - "lib/monotouch/xunit.execution.dotnet.xml", - "lib/net45/xunit.execution.desktop.dll", - "lib/net45/xunit.execution.desktop.pdb", - "lib/net45/xunit.execution.desktop.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml", - "lib/win8/xunit.execution.dotnet.dll", - "lib/win8/xunit.execution.dotnet.pdb", - "lib/win8/xunit.execution.dotnet.xml", - "lib/wp8/xunit.execution.dotnet.dll", - "lib/wp8/xunit.execution.dotnet.pdb", - "lib/wp8/xunit.execution.dotnet.xml", - "lib/wpa81/xunit.execution.dotnet.dll", - "lib/wpa81/xunit.execution.dotnet.pdb", - "lib/wpa81/xunit.execution.dotnet.xml", - "lib/xamarinios/xunit.execution.dotnet.dll", - "lib/xamarinios/xunit.execution.dotnet.pdb", - "lib/xamarinios/xunit.execution.dotnet.xml", - "package/services/metadata/core-properties/9f5f1211ea9a4e748cecce63d1c73e30.psmdcp", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/2.1.0": { - "sha512": "44vJFEQopk8SHfPMjgzn4QevRNfITO7zRZBo9lb+OPhID7v/q2gFaOgyEUomKilq2rwWUQ0m9yquBOzJL4L4aA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "build/_common/xunit.abstractions.dll", - "build/_common/xunit.runner.utility.desktop.dll", - "build/_common/xunit.runner.utility.dotnet.dll", - "build/_common/xunit.runner.visualstudio.testadapter.dll", - "build/monoandroid/_._", - "build/monotouch/_._", - "build/net20/xunit.runner.visualstudio.props", - "build/portable-net45+win8+wp8+wpa81/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.visualstudio.targets", - "build/uap10.0/xunit.runner.visualstudio.uwp.dll", - "build/uap10.0/xunit.runner.visualstudio.uwp.pri", - "build/win8/_._", - "build/win81/xunit.runner.visualstudio.props", - "build/win81/xunit.runner.visualstudio.targets", - "build/win81/xunit.runner.visualstudio.win81.dll", - "build/win81/xunit.runner.visualstudio.win81.pri", - "build/wp8/_._", - "build/wpa81/xunit.runner.visualstudio.props", - "build/wpa81/xunit.runner.visualstudio.targets", - "build/wpa81/xunit.runner.visualstudio.wpa81.dll", - "build/wpa81/xunit.runner.visualstudio.wpa81.pri", - "build/xamarinios/_._", - "package/services/metadata/core-properties/75d77ac04d244734b920caf67c66919b.psmdcp", - "xunit.runner.visualstudio.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "": [ - "xunit >= 2.1.0", - "xunit.runner.visualstudio >= 2.1.0" - ], - ".NETFramework,Version=v4.6": [] - } -} \ No newline at end of file diff --git a/src/XMakeBuildEngine/UnitTestsPublicOM/Microsoft.Build.Engine.OM.UnitTests.nuget.props b/src/XMakeBuildEngine/UnitTestsPublicOM/Microsoft.Build.Engine.OM.UnitTests.nuget.props deleted file mode 100644 index 3e2cd3e9317..00000000000 --- a/src/XMakeBuildEngine/UnitTestsPublicOM/Microsoft.Build.Engine.OM.UnitTests.nuget.props +++ /dev/null @@ -1,10 +0,0 @@ - - - - $(UserProfile)\.nuget\packages\ - - - - - - \ No newline at end of file diff --git a/src/XMakeBuildEngine/UnitTestsPublicOM/project.lock.json b/src/XMakeBuildEngine/UnitTestsPublicOM/project.lock.json deleted file mode 100644 index fe2ca9b59d3..00000000000 --- a/src/XMakeBuildEngine/UnitTestsPublicOM/project.lock.json +++ /dev/null @@ -1,369 +0,0 @@ -{ - "locked": false, - "version": 1, - "targets": { - ".NETFramework,Version=v4.6": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.6/win": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.6/win-": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - } - }, - "libraries": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "sha512": "6BE4Vu74+dkv5AkJd+UxW1sFMepMZOVlUoMZDUKqhc4Bf7pe7yySzCj6QrowUZbCqcDPwOiQsAgz3nXiLQSyMw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wp8+wpa81/system.threading.tasks.dataflow.xml", - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wpa81/system.threading.tasks.dataflow.xml", - "License-Stable.rtf", - "Microsoft.Tpl.Dataflow.nuspec", - "package/services/metadata/core-properties/3dd86853af3a4ae392f3331459714ce0.psmdcp" - ] - }, - "xunit/2.1.0": { - "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "package/services/metadata/core-properties/645916a897f44189a642f33e571d5b90.psmdcp", - "xunit.nuspec" - ] - }, - "xunit.abstractions/2.0.0": { - "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", - "package/services/metadata/core-properties/24083640fee244bf9de77f4c35d40a72.psmdcp", - "xunit.abstractions.nuspec" - ] - }, - "xunit.assert/2.1.0": { - "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dotnet/xunit.assert.dll", - "lib/dotnet/xunit.assert.pdb", - "lib/dotnet/xunit.assert.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml", - "package/services/metadata/core-properties/4f538d979dfc48ed9b4c20e5a69d87b1.psmdcp", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.1.0": { - "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "build/_desktop/xunit.execution.desktop.dll", - "build/dnx451/_._", - "build/monoandroid/_._", - "build/monotouch/_._", - "build/net45/_._", - "build/portable-net45+win8+wp8+wpa81/xunit.core.props", - "build/win8/_._", - "build/win81/xunit.core.props", - "build/wp8/_._", - "build/wpa81/xunit.core.props", - "build/xamarinios/_._", - "package/services/metadata/core-properties/cce23a490b7f4272adfe9aa57c4e1ca3.psmdcp", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.1.0": { - "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dotnet/xunit.core.dll", - "lib/dotnet/xunit.core.dll.tdnet", - "lib/dotnet/xunit.core.pdb", - "lib/dotnet/xunit.core.xml", - "lib/dotnet/xunit.runner.tdnet.dll", - "lib/dotnet/xunit.runner.utility.desktop.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll.tdnet", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll", - "package/services/metadata/core-properties/5218831c5b01422bb82b23cafd6488b3.psmdcp", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.1.0": { - "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dnx451/xunit.execution.dotnet.dll", - "lib/dnx451/xunit.execution.dotnet.pdb", - "lib/dnx451/xunit.execution.dotnet.xml", - "lib/dotnet/xunit.execution.dotnet.dll", - "lib/dotnet/xunit.execution.dotnet.pdb", - "lib/dotnet/xunit.execution.dotnet.xml", - "lib/monoandroid/xunit.execution.dotnet.dll", - "lib/monoandroid/xunit.execution.dotnet.pdb", - "lib/monoandroid/xunit.execution.dotnet.xml", - "lib/monotouch/xunit.execution.dotnet.dll", - "lib/monotouch/xunit.execution.dotnet.pdb", - "lib/monotouch/xunit.execution.dotnet.xml", - "lib/net45/xunit.execution.desktop.dll", - "lib/net45/xunit.execution.desktop.pdb", - "lib/net45/xunit.execution.desktop.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml", - "lib/win8/xunit.execution.dotnet.dll", - "lib/win8/xunit.execution.dotnet.pdb", - "lib/win8/xunit.execution.dotnet.xml", - "lib/wp8/xunit.execution.dotnet.dll", - "lib/wp8/xunit.execution.dotnet.pdb", - "lib/wp8/xunit.execution.dotnet.xml", - "lib/wpa81/xunit.execution.dotnet.dll", - "lib/wpa81/xunit.execution.dotnet.pdb", - "lib/wpa81/xunit.execution.dotnet.xml", - "lib/xamarinios/xunit.execution.dotnet.dll", - "lib/xamarinios/xunit.execution.dotnet.pdb", - "lib/xamarinios/xunit.execution.dotnet.xml", - "package/services/metadata/core-properties/9f5f1211ea9a4e748cecce63d1c73e30.psmdcp", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/2.1.0": { - "sha512": "44vJFEQopk8SHfPMjgzn4QevRNfITO7zRZBo9lb+OPhID7v/q2gFaOgyEUomKilq2rwWUQ0m9yquBOzJL4L4aA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "build/_common/xunit.abstractions.dll", - "build/_common/xunit.runner.utility.desktop.dll", - "build/_common/xunit.runner.utility.dotnet.dll", - "build/_common/xunit.runner.visualstudio.testadapter.dll", - "build/monoandroid/_._", - "build/monotouch/_._", - "build/net20/xunit.runner.visualstudio.props", - "build/portable-net45+win8+wp8+wpa81/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.visualstudio.targets", - "build/uap10.0/xunit.runner.visualstudio.uwp.dll", - "build/uap10.0/xunit.runner.visualstudio.uwp.pri", - "build/win8/_._", - "build/win81/xunit.runner.visualstudio.props", - "build/win81/xunit.runner.visualstudio.targets", - "build/win81/xunit.runner.visualstudio.win81.dll", - "build/win81/xunit.runner.visualstudio.win81.pri", - "build/wp8/_._", - "build/wpa81/xunit.runner.visualstudio.props", - "build/wpa81/xunit.runner.visualstudio.targets", - "build/wpa81/xunit.runner.visualstudio.wpa81.dll", - "build/wpa81/xunit.runner.visualstudio.wpa81.pri", - "build/xamarinios/_._", - "package/services/metadata/core-properties/75d77ac04d244734b920caf67c66919b.psmdcp", - "xunit.runner.visualstudio.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "": [ - "xunit >= 2.1.0", - "xunit.runner.visualstudio >= 2.1.0" - ], - ".NETFramework,Version=v4.6": [] - } -} \ No newline at end of file diff --git a/src/XMakeBuildEngine/project.lock.json b/src/XMakeBuildEngine/project.lock.json deleted file mode 100644 index a13428fdbac..00000000000 --- a/src/XMakeBuildEngine/project.lock.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "locked": false, - "version": 1, - "targets": { - ".NETFramework,Version=v4.6": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - } - }, - ".NETFramework,Version=v4.6/win": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - } - }, - ".NETFramework,Version=v4.6/win-": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - } - } - }, - "libraries": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "sha512": "6BE4Vu74+dkv5AkJd+UxW1sFMepMZOVlUoMZDUKqhc4Bf7pe7yySzCj6QrowUZbCqcDPwOiQsAgz3nXiLQSyMw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wp8+wpa81/system.threading.tasks.dataflow.xml", - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wpa81/system.threading.tasks.dataflow.xml", - "License-Stable.rtf", - "Microsoft.Tpl.Dataflow.nuspec", - "package/services/metadata/core-properties/3dd86853af3a4ae392f3331459714ce0.psmdcp" - ] - } - }, - "projectFileDependencyGroups": { - "": [ - "Microsoft.Tpl.Dataflow >= 4.5.24" - ], - ".NETFramework,Version=v4.6": [] - } -} \ No newline at end of file diff --git a/src/XMakeCommandLine/UnitTests/Microsoft.Build.CommandLine.UnitTests.nuget.props b/src/XMakeCommandLine/UnitTests/Microsoft.Build.CommandLine.UnitTests.nuget.props deleted file mode 100644 index 3e2cd3e9317..00000000000 --- a/src/XMakeCommandLine/UnitTests/Microsoft.Build.CommandLine.UnitTests.nuget.props +++ /dev/null @@ -1,10 +0,0 @@ - - - - $(UserProfile)\.nuget\packages\ - - - - - - \ No newline at end of file diff --git a/src/XMakeCommandLine/UnitTests/project.lock.json b/src/XMakeCommandLine/UnitTests/project.lock.json deleted file mode 100644 index fe2ca9b59d3..00000000000 --- a/src/XMakeCommandLine/UnitTests/project.lock.json +++ /dev/null @@ -1,369 +0,0 @@ -{ - "locked": false, - "version": 1, - "targets": { - ".NETFramework,Version=v4.6": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.6/win": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.6/win-": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - } - }, - "libraries": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "sha512": "6BE4Vu74+dkv5AkJd+UxW1sFMepMZOVlUoMZDUKqhc4Bf7pe7yySzCj6QrowUZbCqcDPwOiQsAgz3nXiLQSyMw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wp8+wpa81/system.threading.tasks.dataflow.xml", - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wpa81/system.threading.tasks.dataflow.xml", - "License-Stable.rtf", - "Microsoft.Tpl.Dataflow.nuspec", - "package/services/metadata/core-properties/3dd86853af3a4ae392f3331459714ce0.psmdcp" - ] - }, - "xunit/2.1.0": { - "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "package/services/metadata/core-properties/645916a897f44189a642f33e571d5b90.psmdcp", - "xunit.nuspec" - ] - }, - "xunit.abstractions/2.0.0": { - "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", - "package/services/metadata/core-properties/24083640fee244bf9de77f4c35d40a72.psmdcp", - "xunit.abstractions.nuspec" - ] - }, - "xunit.assert/2.1.0": { - "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dotnet/xunit.assert.dll", - "lib/dotnet/xunit.assert.pdb", - "lib/dotnet/xunit.assert.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml", - "package/services/metadata/core-properties/4f538d979dfc48ed9b4c20e5a69d87b1.psmdcp", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.1.0": { - "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "build/_desktop/xunit.execution.desktop.dll", - "build/dnx451/_._", - "build/monoandroid/_._", - "build/monotouch/_._", - "build/net45/_._", - "build/portable-net45+win8+wp8+wpa81/xunit.core.props", - "build/win8/_._", - "build/win81/xunit.core.props", - "build/wp8/_._", - "build/wpa81/xunit.core.props", - "build/xamarinios/_._", - "package/services/metadata/core-properties/cce23a490b7f4272adfe9aa57c4e1ca3.psmdcp", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.1.0": { - "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dotnet/xunit.core.dll", - "lib/dotnet/xunit.core.dll.tdnet", - "lib/dotnet/xunit.core.pdb", - "lib/dotnet/xunit.core.xml", - "lib/dotnet/xunit.runner.tdnet.dll", - "lib/dotnet/xunit.runner.utility.desktop.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll.tdnet", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll", - "package/services/metadata/core-properties/5218831c5b01422bb82b23cafd6488b3.psmdcp", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.1.0": { - "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dnx451/xunit.execution.dotnet.dll", - "lib/dnx451/xunit.execution.dotnet.pdb", - "lib/dnx451/xunit.execution.dotnet.xml", - "lib/dotnet/xunit.execution.dotnet.dll", - "lib/dotnet/xunit.execution.dotnet.pdb", - "lib/dotnet/xunit.execution.dotnet.xml", - "lib/monoandroid/xunit.execution.dotnet.dll", - "lib/monoandroid/xunit.execution.dotnet.pdb", - "lib/monoandroid/xunit.execution.dotnet.xml", - "lib/monotouch/xunit.execution.dotnet.dll", - "lib/monotouch/xunit.execution.dotnet.pdb", - "lib/monotouch/xunit.execution.dotnet.xml", - "lib/net45/xunit.execution.desktop.dll", - "lib/net45/xunit.execution.desktop.pdb", - "lib/net45/xunit.execution.desktop.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml", - "lib/win8/xunit.execution.dotnet.dll", - "lib/win8/xunit.execution.dotnet.pdb", - "lib/win8/xunit.execution.dotnet.xml", - "lib/wp8/xunit.execution.dotnet.dll", - "lib/wp8/xunit.execution.dotnet.pdb", - "lib/wp8/xunit.execution.dotnet.xml", - "lib/wpa81/xunit.execution.dotnet.dll", - "lib/wpa81/xunit.execution.dotnet.pdb", - "lib/wpa81/xunit.execution.dotnet.xml", - "lib/xamarinios/xunit.execution.dotnet.dll", - "lib/xamarinios/xunit.execution.dotnet.pdb", - "lib/xamarinios/xunit.execution.dotnet.xml", - "package/services/metadata/core-properties/9f5f1211ea9a4e748cecce63d1c73e30.psmdcp", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/2.1.0": { - "sha512": "44vJFEQopk8SHfPMjgzn4QevRNfITO7zRZBo9lb+OPhID7v/q2gFaOgyEUomKilq2rwWUQ0m9yquBOzJL4L4aA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "build/_common/xunit.abstractions.dll", - "build/_common/xunit.runner.utility.desktop.dll", - "build/_common/xunit.runner.utility.dotnet.dll", - "build/_common/xunit.runner.visualstudio.testadapter.dll", - "build/monoandroid/_._", - "build/monotouch/_._", - "build/net20/xunit.runner.visualstudio.props", - "build/portable-net45+win8+wp8+wpa81/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.visualstudio.targets", - "build/uap10.0/xunit.runner.visualstudio.uwp.dll", - "build/uap10.0/xunit.runner.visualstudio.uwp.pri", - "build/win8/_._", - "build/win81/xunit.runner.visualstudio.props", - "build/win81/xunit.runner.visualstudio.targets", - "build/win81/xunit.runner.visualstudio.win81.dll", - "build/win81/xunit.runner.visualstudio.win81.pri", - "build/wp8/_._", - "build/wpa81/xunit.runner.visualstudio.props", - "build/wpa81/xunit.runner.visualstudio.targets", - "build/wpa81/xunit.runner.visualstudio.wpa81.dll", - "build/wpa81/xunit.runner.visualstudio.wpa81.pri", - "build/xamarinios/_._", - "package/services/metadata/core-properties/75d77ac04d244734b920caf67c66919b.psmdcp", - "xunit.runner.visualstudio.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "": [ - "xunit >= 2.1.0", - "xunit.runner.visualstudio >= 2.1.0" - ], - ".NETFramework,Version=v4.6": [] - } -} \ No newline at end of file diff --git a/src/XMakeTasks/UnitTests/Microsoft.Build.Tasks.UnitTests.nuget.props b/src/XMakeTasks/UnitTests/Microsoft.Build.Tasks.UnitTests.nuget.props deleted file mode 100644 index 3e2cd3e9317..00000000000 --- a/src/XMakeTasks/UnitTests/Microsoft.Build.Tasks.UnitTests.nuget.props +++ /dev/null @@ -1,10 +0,0 @@ - - - - $(UserProfile)\.nuget\packages\ - - - - - - \ No newline at end of file diff --git a/src/XMakeTasks/UnitTests/project.lock.json b/src/XMakeTasks/UnitTests/project.lock.json deleted file mode 100644 index fe2ca9b59d3..00000000000 --- a/src/XMakeTasks/UnitTests/project.lock.json +++ /dev/null @@ -1,369 +0,0 @@ -{ - "locked": false, - "version": 1, - "targets": { - ".NETFramework,Version=v4.6": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.6/win": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - }, - ".NETFramework,Version=v4.6/win-": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "compile": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "xunit/2.1.0": { - "dependencies": { - "xunit.assert": "[2.1.0, 2.1.0]", - "xunit.core": "[2.1.0, 2.1.0]" - } - }, - "xunit.abstractions/2.0.0": { - "compile": { - "lib/net35/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/net35/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.1.0": { - "compile": { - "lib/dotnet/xunit.assert.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.assert.dll": {} - } - }, - "xunit.core/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]", - "xunit.extensibility.execution": "[2.1.0, 2.1.0]" - } - }, - "xunit.extensibility.core/2.1.0": { - "dependencies": { - "xunit.abstractions": "[2.0.0, 2.0.0]" - }, - "compile": { - "lib/dotnet/xunit.core.dll": {} - }, - "runtime": { - "lib/dotnet/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.1.0": { - "dependencies": { - "xunit.extensibility.core": "[2.1.0, 2.1.0]" - }, - "compile": { - "lib/net45/xunit.execution.desktop.dll": {} - }, - "runtime": { - "lib/net45/xunit.execution.desktop.dll": {} - } - }, - "xunit.runner.visualstudio/2.1.0": {} - } - }, - "libraries": { - "Microsoft.Tpl.Dataflow/4.5.24": { - "sha512": "6BE4Vu74+dkv5AkJd+UxW1sFMepMZOVlUoMZDUKqhc4Bf7pe7yySzCj6QrowUZbCqcDPwOiQsAgz3nXiLQSyMw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wp8+wpa81/system.threading.tasks.dataflow.xml", - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wpa81/system.threading.tasks.dataflow.xml", - "License-Stable.rtf", - "Microsoft.Tpl.Dataflow.nuspec", - "package/services/metadata/core-properties/3dd86853af3a4ae392f3331459714ce0.psmdcp" - ] - }, - "xunit/2.1.0": { - "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "package/services/metadata/core-properties/645916a897f44189a642f33e571d5b90.psmdcp", - "xunit.nuspec" - ] - }, - "xunit.abstractions/2.0.0": { - "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", - "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", - "package/services/metadata/core-properties/24083640fee244bf9de77f4c35d40a72.psmdcp", - "xunit.abstractions.nuspec" - ] - }, - "xunit.assert/2.1.0": { - "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dotnet/xunit.assert.dll", - "lib/dotnet/xunit.assert.pdb", - "lib/dotnet/xunit.assert.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml", - "package/services/metadata/core-properties/4f538d979dfc48ed9b4c20e5a69d87b1.psmdcp", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.1.0": { - "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "build/_desktop/xunit.execution.desktop.dll", - "build/dnx451/_._", - "build/monoandroid/_._", - "build/monotouch/_._", - "build/net45/_._", - "build/portable-net45+win8+wp8+wpa81/xunit.core.props", - "build/win8/_._", - "build/win81/xunit.core.props", - "build/wp8/_._", - "build/wpa81/xunit.core.props", - "build/xamarinios/_._", - "package/services/metadata/core-properties/cce23a490b7f4272adfe9aa57c4e1ca3.psmdcp", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.1.0": { - "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dotnet/xunit.core.dll", - "lib/dotnet/xunit.core.dll.tdnet", - "lib/dotnet/xunit.core.pdb", - "lib/dotnet/xunit.core.xml", - "lib/dotnet/xunit.runner.tdnet.dll", - "lib/dotnet/xunit.runner.utility.desktop.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll.tdnet", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll", - "package/services/metadata/core-properties/5218831c5b01422bb82b23cafd6488b3.psmdcp", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.1.0": { - "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "lib/dnx451/xunit.execution.dotnet.dll", - "lib/dnx451/xunit.execution.dotnet.pdb", - "lib/dnx451/xunit.execution.dotnet.xml", - "lib/dotnet/xunit.execution.dotnet.dll", - "lib/dotnet/xunit.execution.dotnet.pdb", - "lib/dotnet/xunit.execution.dotnet.xml", - "lib/monoandroid/xunit.execution.dotnet.dll", - "lib/monoandroid/xunit.execution.dotnet.pdb", - "lib/monoandroid/xunit.execution.dotnet.xml", - "lib/monotouch/xunit.execution.dotnet.dll", - "lib/monotouch/xunit.execution.dotnet.pdb", - "lib/monotouch/xunit.execution.dotnet.xml", - "lib/net45/xunit.execution.desktop.dll", - "lib/net45/xunit.execution.desktop.pdb", - "lib/net45/xunit.execution.desktop.xml", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb", - "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml", - "lib/win8/xunit.execution.dotnet.dll", - "lib/win8/xunit.execution.dotnet.pdb", - "lib/win8/xunit.execution.dotnet.xml", - "lib/wp8/xunit.execution.dotnet.dll", - "lib/wp8/xunit.execution.dotnet.pdb", - "lib/wp8/xunit.execution.dotnet.xml", - "lib/wpa81/xunit.execution.dotnet.dll", - "lib/wpa81/xunit.execution.dotnet.pdb", - "lib/wpa81/xunit.execution.dotnet.xml", - "lib/xamarinios/xunit.execution.dotnet.dll", - "lib/xamarinios/xunit.execution.dotnet.pdb", - "lib/xamarinios/xunit.execution.dotnet.xml", - "package/services/metadata/core-properties/9f5f1211ea9a4e748cecce63d1c73e30.psmdcp", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/2.1.0": { - "sha512": "44vJFEQopk8SHfPMjgzn4QevRNfITO7zRZBo9lb+OPhID7v/q2gFaOgyEUomKilq2rwWUQ0m9yquBOzJL4L4aA==", - "type": "Package", - "files": [ - "[Content_Types].xml", - "_rels/.rels", - "build/_common/xunit.abstractions.dll", - "build/_common/xunit.runner.utility.desktop.dll", - "build/_common/xunit.runner.utility.dotnet.dll", - "build/_common/xunit.runner.visualstudio.testadapter.dll", - "build/monoandroid/_._", - "build/monotouch/_._", - "build/net20/xunit.runner.visualstudio.props", - "build/portable-net45+win8+wp8+wpa81/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.visualstudio.targets", - "build/uap10.0/xunit.runner.visualstudio.uwp.dll", - "build/uap10.0/xunit.runner.visualstudio.uwp.pri", - "build/win8/_._", - "build/win81/xunit.runner.visualstudio.props", - "build/win81/xunit.runner.visualstudio.targets", - "build/win81/xunit.runner.visualstudio.win81.dll", - "build/win81/xunit.runner.visualstudio.win81.pri", - "build/wp8/_._", - "build/wpa81/xunit.runner.visualstudio.props", - "build/wpa81/xunit.runner.visualstudio.targets", - "build/wpa81/xunit.runner.visualstudio.wpa81.dll", - "build/wpa81/xunit.runner.visualstudio.wpa81.pri", - "build/xamarinios/_._", - "package/services/metadata/core-properties/75d77ac04d244734b920caf67c66919b.psmdcp", - "xunit.runner.visualstudio.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "": [ - "xunit >= 2.1.0", - "xunit.runner.visualstudio >= 2.1.0" - ], - ".NETFramework,Version=v4.6": [] - } -} \ No newline at end of file From 8b62790e8a89f3b0d369dcba4947df819ced0474 Mon Sep 17 00:00:00 2001 From: Andy Gerlicher Date: Wed, 16 Mar 2016 17:18:56 -0700 Subject: [PATCH 13/16] Fix issue with UnitTests not running in /t:RebuildAndTest Changing the order of the dir.targets and dir.traversal.targets caused an issue with BuildAndTest definitions. Switched the order back and moved the Rebuild DependsOnTargets definition. --- build.proj | 8 +++++++- dir.targets | 8 +------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build.proj b/build.proj index 8901fe692b6..7fbcda31175 100644 --- a/build.proj +++ b/build.proj @@ -7,8 +7,14 @@ - + + + + + - - - - - - - + From 878f87b814181c89cf09ff4925a29a2076e9ec62 Mon Sep 17 00:00:00 2001 From: Assaf Nativ Date: Sat, 30 Jan 2016 14:50:27 +0200 Subject: [PATCH 14/16] Option for using ANSI-Colors that works with redirection Eliminat some code duplication, SetColor and ResetColor were already defined in BaseConsoleLogger.cs --- .../Logging/BaseConsoleLogger.cs | 42 ++++++++++ src/XMakeBuildEngine/Logging/ConsoleLogger.cs | 76 ++++--------------- src/XMakeCommandLine/Strings.resx | 2 + 3 files changed, 57 insertions(+), 63 deletions(-) diff --git a/src/XMakeBuildEngine/Logging/BaseConsoleLogger.cs b/src/XMakeBuildEngine/Logging/BaseConsoleLogger.cs index 34187689126..d625b4e4bf6 100644 --- a/src/XMakeBuildEngine/Logging/BaseConsoleLogger.cs +++ b/src/XMakeBuildEngine/Logging/BaseConsoleLogger.cs @@ -398,6 +398,48 @@ internal static void ResetColor() } } + /// + /// Sets foreground color to color specified using ANSI escape codes + /// + /// foreground color + internal static void SetColorANSI(ConsoleColor c) + { + string colorString = "\x1b["; + switch (c) + { + case ConsoleColor.Black: colorString += "30"; break; + case ConsoleColor.DarkBlue: colorString += "34"; break; + case ConsoleColor.DarkGreen: colorString += "32"; break; + case ConsoleColor.DarkCyan: colorString += "36"; break; + case ConsoleColor.DarkRed: colorString += "31"; break; + case ConsoleColor.DarkMagenta: colorString += "35"; break; + case ConsoleColor.DarkYellow: colorString += "33"; break; + case ConsoleColor.Gray: colorString += "37"; break; + case ConsoleColor.DarkGray: colorString += "30;1"; break; + case ConsoleColor.Blue: colorString += "34;1"; break; + case ConsoleColor.Green: colorString += "32;1"; break; + case ConsoleColor.Cyan: colorString += "36;1"; break; + case ConsoleColor.Red: colorString += "31;1"; break; + case ConsoleColor.Magenta: colorString += "35;1"; break; + case ConsoleColor.Yellow: colorString += "33;1"; break; + case ConsoleColor.White: colorString += "37;1"; break; + default: colorString = ""; break; + } + if ("" != colorString) + { + colorString += "m"; + Console.Out.Write(colorString); + } + } + + /// + /// Resets the color using ANSI escape codes + /// + internal static void ResetColorANSI() + { + Console.Out.Write("\x1b[m"); + } + /// /// Changes the foreground color to black if the foreground is the /// same as the background. Changes the foreground to white if the diff --git a/src/XMakeBuildEngine/Logging/ConsoleLogger.cs b/src/XMakeBuildEngine/Logging/ConsoleLogger.cs index adcce71b9e7..dcab0c0412e 100644 --- a/src/XMakeBuildEngine/Logging/ConsoleLogger.cs +++ b/src/XMakeBuildEngine/Logging/ConsoleLogger.cs @@ -81,8 +81,8 @@ public ConsoleLogger(LoggerVerbosity verbosity) ( verbosity, new WriteHandler(Console.Out.Write), - new ColorSetter(SetColor), - new ColorResetter(ResetColor) + new ColorSetter(BaseConsoleLogger.SetColor), + new ColorResetter(BaseConsoleLogger.ResetColor) ) { // do nothing @@ -120,6 +120,7 @@ private void InitializeBaseConsoleLogger() { bool useMPLogger = false; bool disableConsoleColor = false; + bool forceConsoleColor = false; if (!string.IsNullOrEmpty(_parameters)) { string[] parameterComponents = _parameters.Split(BaseConsoleLogger.parameterDelimiters); @@ -139,11 +140,20 @@ private void InitializeBaseConsoleLogger() { disableConsoleColor = true; } + if (0 == String.Compare(parameterComponents[param], "FORCECONSOLECOLOR", StringComparison.OrdinalIgnoreCase)) + { + forceConsoleColor = true; + } } } } - if (disableConsoleColor) + if (forceConsoleColor) + { + _colorSet = new ColorSetter(BaseConsoleLogger.SetColorANSI); + _colorReset = new ColorResetter(BaseConsoleLogger.ResetColorANSI); + } + else if (disableConsoleColor) { _colorSet = new ColorSetter(BaseConsoleLogger.DontSetColor); _colorReset = new ColorResetter(BaseConsoleLogger.DontResetColor); @@ -477,66 +487,6 @@ public void CustomEventHandler(object sender, CustomBuildEventArgs e) _consoleLogger.CustomEventHandler(sender, e); } - /// - /// Sets foreground color to color specified - /// - /// foreground color - internal static void SetColor(ConsoleColor c) - { - try - { - Console.ForegroundColor = - TransformColor(c, Console.BackgroundColor); - } - catch (IOException) - { - // The color could not be set, no reason to crash - } - } - - /// - /// Resets the color - /// - internal static void ResetColor() - { - try - { - Console.ResetColor(); - } - catch (IOException) - { - // The color could not be reset, no reason to crash - } - } - - - /// - /// Changes the foreground color to black if the foreground is the - /// same as the background. Changes the foreground to white if the - /// background is black. - /// - /// foreground color for black - /// current background - private static ConsoleColor TransformColor(ConsoleColor foreground, - ConsoleColor background) - { - ConsoleColor result = foreground; //typically do nothing ... - - if (foreground == background) - { - if (background != ConsoleColor.Black) - { - result = ConsoleColor.Black; - } - else - { - result = ConsoleColor.Gray; - } - } - - return result; - } - #endregion } } diff --git a/src/XMakeCommandLine/Strings.resx b/src/XMakeCommandLine/Strings.resx index a816ca326b0..e0e792b8955 100644 --- a/src/XMakeCommandLine/Strings.resx +++ b/src/XMakeCommandLine/Strings.resx @@ -303,6 +303,8 @@ Copyright (C) Microsoft Corporation. All rights reserved. EnableMPLogging--Enable the multiprocessor logging style even when running in non-multiprocessor mode. This logging style is on by default. + ForceConsoleColor--Use ANSI console colors even if + console does not support it Verbosity--overrides the /verbosity setting for this logger. Example: From d6855b669dbd21711bb939df88305f82e0184d8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20W=C3=BCstholz?= Date: Thu, 14 Apr 2016 11:30:57 -0500 Subject: [PATCH 15/16] Fix possible NRE (issue #574). Ensure that 'rootElement' is non-null when accessing its 'ChildNodes' property. --- src/Utilities/PlatformManifest.cs | 34 +++++++++++++++---------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/Utilities/PlatformManifest.cs b/src/Utilities/PlatformManifest.cs index c867a6880a7..87020e44cef 100644 --- a/src/Utilities/PlatformManifest.cs +++ b/src/Utilities/PlatformManifest.cs @@ -145,31 +145,31 @@ private void LoadManifestFile() } } + DependentPlatforms = new List(); + ApiContracts = new List(); + if (rootElement != null) { Name = rootElement.GetAttribute(Attributes.Name); FriendlyName = rootElement.GetAttribute(Attributes.FriendlyName); PlatformVersion = rootElement.GetAttribute(Attributes.Version); - } - - DependentPlatforms = new List(); - ApiContracts = new List(); - foreach (XmlNode childNode in rootElement.ChildNodes) - { - XmlElement childElement = childNode as XmlElement; - if (childElement == null) + foreach (XmlNode childNode in rootElement.ChildNodes) { - continue; - } + XmlElement childElement = childNode as XmlElement; + if (childElement == null) + { + continue; + } - if (ApiContract.IsContainedApiContractsElement(childElement.Name)) - { - ApiContract.ReadContractsElement(childElement, ApiContracts); - } - else if (String.Equals(childElement.Name, Elements.DependentPlatform, StringComparison.Ordinal)) - { - DependentPlatforms.Add(new DependentPlatform(childElement.GetAttribute(Attributes.Name), childElement.GetAttribute(Attributes.Version))); + if (ApiContract.IsContainedApiContractsElement(childElement.Name)) + { + ApiContract.ReadContractsElement(childElement, ApiContracts); + } + else if (String.Equals(childElement.Name, Elements.DependentPlatform, StringComparison.Ordinal)) + { + DependentPlatforms.Add(new DependentPlatform(childElement.GetAttribute(Attributes.Name), childElement.GetAttribute(Attributes.Version))); + } } } } From b13f91484c71f38d4028e74146a98dd5765f1671 Mon Sep 17 00:00:00 2001 From: Andy Gerlicher Date: Mon, 2 May 2016 16:13:18 -0700 Subject: [PATCH 16/16] Fix multiple framework target build issue --- src/Framework/UnitTests/project.json | 1 - src/Utilities/UnitTests/project.json | 1 - src/XMakeBuildEngine/UnitTests/project.json | 1 - src/XMakeBuildEngine/UnitTestsPublicOM/project.json | 1 - src/XMakeBuildEngine/project.json | 1 - src/XMakeCommandLine/UnitTests/project.json | 1 - src/XMakeTasks/UnitTests/project.json | 1 - 7 files changed, 7 deletions(-) diff --git a/src/Framework/UnitTests/project.json b/src/Framework/UnitTests/project.json index 790fb93b7a3..98e4badf801 100644 --- a/src/Framework/UnitTests/project.json +++ b/src/Framework/UnitTests/project.json @@ -5,7 +5,6 @@ }, "frameworks": { "net451": {}, - "net46": {} }, "runtimes": { "win-": {}, diff --git a/src/Utilities/UnitTests/project.json b/src/Utilities/UnitTests/project.json index 790fb93b7a3..98e4badf801 100644 --- a/src/Utilities/UnitTests/project.json +++ b/src/Utilities/UnitTests/project.json @@ -5,7 +5,6 @@ }, "frameworks": { "net451": {}, - "net46": {} }, "runtimes": { "win-": {}, diff --git a/src/XMakeBuildEngine/UnitTests/project.json b/src/XMakeBuildEngine/UnitTests/project.json index 790fb93b7a3..98e4badf801 100644 --- a/src/XMakeBuildEngine/UnitTests/project.json +++ b/src/XMakeBuildEngine/UnitTests/project.json @@ -5,7 +5,6 @@ }, "frameworks": { "net451": {}, - "net46": {} }, "runtimes": { "win-": {}, diff --git a/src/XMakeBuildEngine/UnitTestsPublicOM/project.json b/src/XMakeBuildEngine/UnitTestsPublicOM/project.json index 790fb93b7a3..98e4badf801 100644 --- a/src/XMakeBuildEngine/UnitTestsPublicOM/project.json +++ b/src/XMakeBuildEngine/UnitTestsPublicOM/project.json @@ -5,7 +5,6 @@ }, "frameworks": { "net451": {}, - "net46": {} }, "runtimes": { "win-": {}, diff --git a/src/XMakeBuildEngine/project.json b/src/XMakeBuildEngine/project.json index cd38c24b0f0..c7cbea5afd1 100644 --- a/src/XMakeBuildEngine/project.json +++ b/src/XMakeBuildEngine/project.json @@ -4,7 +4,6 @@ }, "frameworks": { "net451": { }, - "net46": { } }, "runtimes": { "win-": { }, diff --git a/src/XMakeCommandLine/UnitTests/project.json b/src/XMakeCommandLine/UnitTests/project.json index 790fb93b7a3..98e4badf801 100644 --- a/src/XMakeCommandLine/UnitTests/project.json +++ b/src/XMakeCommandLine/UnitTests/project.json @@ -5,7 +5,6 @@ }, "frameworks": { "net451": {}, - "net46": {} }, "runtimes": { "win-": {}, diff --git a/src/XMakeTasks/UnitTests/project.json b/src/XMakeTasks/UnitTests/project.json index 790fb93b7a3..98e4badf801 100644 --- a/src/XMakeTasks/UnitTests/project.json +++ b/src/XMakeTasks/UnitTests/project.json @@ -5,7 +5,6 @@ }, "frameworks": { "net451": {}, - "net46": {} }, "runtimes": { "win-": {},