diff --git a/.gitignore b/.gitignore index 57cd8b1b77..8f4f1755c3 100644 --- a/.gitignore +++ b/.gitignore @@ -10,9 +10,10 @@ install.* *.vsix -obj/ -bin/ -test/**/.vscode + +test/**/.vscode/launch.json +test/**/.vscode/tasks.json + .logs/ .nyc_output/ coverage/ diff --git a/.travis.yml b/.travis.yml index 14e9868c4a..21b327371a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ node_js: - "8" env: -- CODE_VERSION=1.18.0 +- CODE_VERSION=1.26.0 before_install: - if [ $TRAVIS_OS_NAME == "linux" ]; then diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 859a275b9e..fce8d0e754 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -5,7 +5,10 @@ "taskName": "build", "command": "npm", "isShellCommand": true, - "args": ["run", "compile"], + "args": [ + "run", + "compile" + ], "showOutput": "always", "isBuildCommand": true }, @@ -14,19 +17,23 @@ "command": "echo", "showOutput": "always", "isShellCommand": true, - "args": ["Run tests in VS Code by launching the debugger with the 'Launch Tests' configuration."], + "args": [ + "Run tests in VS Code by launching the debugger with the 'Launch Tests' configuration." + ], "isTestCommand": true }, { "taskName": "tslint", "command": "gulp", "isShellCommand": true, - "args": ["tslint"], + "args": [ + "tslint" + ], "problemMatcher": { "owner": "tslint", "fileLocation": [ "relative", - "${workspaceRoot}" + "${workspaceFolder}" ], "severity": "warning", "pattern": { diff --git a/CHANGELOG.md b/CHANGELOG.md index 66f744f547..16038ed08c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,50 @@ -## Known Issues in 1.15.0 +## Known Issues in 1.16.0 * There currently is no completion support for package references in csproj files. ([#1156](https://github.com/OmniSharp/omnisharp-vscode/issues/1156)) * As an alternative, consider installing the [MSBuild Project Tools](https://marketplace.visualstudio.com/items?itemName=tintoy.msbuild-project-tools) extension by @tintoy. + +## 1.16.0 (September 10, 2018) + +#### Project System + +* Separated the existing "Restore Packages" option in the Command Palette into two distinct functions: + * "Restore Project" - Displays a drop-down that shows all the available projects in the solution or in the workspace. Selecting one of them would trigger a dotnet restore for the particular project. + * "Restore All Projects" - Triggers a dotnet restore for all projects in the current solution or workspace. + +* Modified the "Unresolved dependencies" prompt to restore the all the projects in the currently selected solution or workspace. (PR: [#2323](https://github.com/OmniSharp/omnisharp-vscode/pull/2323)) + +* Added support to configure the default *.sln file loaded when opening a project with multiple *.sln files in the root. _(Contributed by [@janaka](https://github.com/janaka))_ (PR: [#2053](https://github.com/OmniSharp/omnisharp-vscode/pull/2053)) + +* Added support for tracking opening, closing and changing of virtual documents that don't exist on disk. (PR: [#2436](https://github.com/OmniSharp/omnisharp-vscode/pull/2436)) _(Contributed by [@NTaylorMullen](https://github.com/NTaylorMullen))_ + +* Enabled IDE features for .cs files that are not part of a project. (PR: [#2471](https://github.com/OmniSharp/omnisharp-vscode/pull/2471), [omnisharp-roslyn#1252](https://github.com/OmniSharp/omnisharp-roslyn/pull/1252)) + +#### Misc + +* Added a prompt to "Restart OmniSharp" when there is a change in omnisharp "path", "useGlobalMono" or "waitForDebugger" settings.(PR: [#2316](https://github.com/OmniSharp/omnisharp-vscode/pull/2316)) + +#### Editor + +* Improved diagnostics by refreshing them when the active editor changes or the current window is focused. (PR: [#2317](https://github.com/OmniSharp/omnisharp-vscode/pull/2317)) _(Contributed by [@SirIntruder](https://github.com/SirIntruder))_ + +* Improved completions by adding the preselect property so the best match is preselected. (PR: [#2388](https://github.com/OmniSharp/omnisharp-vscode/pull/2388)) + +#### Testing + +* Added test execution output to the output of the Run/Debug Test CodeLens. (PR: [#2337](https://github.com/OmniSharp/omnisharp-vscode/pull/2337), [#2343](https://github.com/OmniSharp/omnisharp-vscode/pull/2343), [omnisharp-roslyn#1203](https://github.com/OmniSharp/omnisharp-roslyn/pull/1203)) +* Fixed a bug where a debug session could not be started and duplicate logs were displayed after a previous one failed due to build failure. (PR: [#2405](https://github.com/OmniSharp/omnisharp-vscode/pull/2405), [omnisharp-roslyn#1239](https://github.com/OmniSharp/omnisharp-roslyn/pull/1239)) + +#### Options + +* Added `monoPath` option to use the mono installation at the specified path when the `useGlobalMono` is set to "always" or "auto". (PR: [#2425](https://github.com/OmniSharp/omnisharp-vscode/pull/2425)) _(Contributed by [@shana](https://github.com/shana))_ + +#### Debugger + +* Added support for launching with environment variables stored in a seperate file from launch.json via a new `envFile` option. (PR: [#2462](https://github.com/OmniSharp/omnisharp-vscode/pull/2462), [#1944](https://github.com/OmniSharp/omnisharp-vscode/issues/1944)) _(Contributed by [@SebastianPfliegel](https://github.com/SebastianPfliegel))_ +* Fixed editting breakpoint conditions while debugging with recent versions of VS Code. ([#2428](https://github.com/OmniSharp/omnisharp-vscode/issues/2428)) +* Added support for hit count breakpoint conditions. ([#895](https://github.com/OmniSharp/omnisharp-vscode/issues/895)) +* Support the `applicationUrl` property in launchSettings.json. ([#2296](https://github.com/OmniSharp/omnisharp-vscode/issues/2296)) +* Improve the error message when attaching to privileged processes on Linux and macOS. ([#477](https://github.com/OmniSharp/omnisharp-vscode/issues/477)) ## 1.15.2 (May 15, 1018) @@ -32,7 +75,7 @@ #### Editor * Fixed regression where the "Generate Type in New File" code action would create an empty file. ([#2112](https://github.com/OmniSharp/omnisharp-vscode/issues/2112), PR: [omnisharp-roslyn#1143](https://github.com/OmniSharp/omnisharp-roslyn/pull/1143)) -* Made several improvments to the display of tooltips in Signature Help. ([#1940](https://github.com/OmniSharp/omnisharp-vscode/issues/1940), PR: [#1958](https://github.com/OmniSharp/omnisharp-vscode/pull/1958)) +* Made several improvements to the display of tooltips in Signature Help. ([#1940](https://github.com/OmniSharp/omnisharp-vscode/issues/1940), PR: [#1958](https://github.com/OmniSharp/omnisharp-vscode/pull/1958)) #### Options diff --git a/README.md b/README.md index f09538de15..f451b07f88 100644 --- a/README.md +++ b/README.md @@ -20,17 +20,18 @@ The C# extension is powered by [OmniSharp](https://github.com/OmniSharp/omnishar * [Documentation](https://code.visualstudio.com/docs/languages/csharp) * [Video Tutorial compiling with .NET Core](https://channel9.msdn.com/Blogs/dotnet/Get-started-VSCode-Csharp-NET-Core-Windows) -### What's New in 1.15.0 - -* Debugger support for Source Link and Symbol Servers -* Added support for downloading and launching prerelease versions of the OmniSharp server -* Improved the status bar display for OmniSharp Server and selected project information -* Added CodeLens for running and debugging all tests in a test class -* Performance improvements when OmniSharp scans for projects -* Improvements for projects containing XAML files +### What's New in 1.16.0 + +* Debugger support for launching with environment variables stored in a separate file from launch.json via a new `envFile` option. +* Debugger support for hit count breakpoint conditions. +* Enabled IDE features for .cs files that are not part of a project. +* Modified the "Unresolved dependencies" prompt to restore the all the projects in the currently selected solution or workspace. +* Added support to configure the default *.sln file loaded when opening a project with multiple *.sln files in the root. +* Added verbosity to the test execution output when running test using codelens. +* Added `monoPath` option to use the mono installation at the specified path when the `useGlobalMono` is set to "always" or "auto". * Many other bug fixes! -See our [change log](https://github.com/OmniSharp/omnisharp-vscode/blob/v1.15.0/CHANGELOG.md) for more detail. +See our [change log](https://github.com/OmniSharp/omnisharp-vscode/blob/v1.16.0/CHANGELOG.md) for more detail. ### Supported Operating Systems for Debugging diff --git a/debugger-launchjson.md b/debugger-launchjson.md index 1ed13a03c9..838748a653 100644 --- a/debugger-launchjson.md +++ b/debugger-launchjson.md @@ -1,4 +1,4 @@ -# Configurating launch.json for C# debugging +# Configuring launch.json for C# debugging The launch.json file is used to configure the debugger in Visual Studio Code. Visual Studio Code generates a launch.json with almost all of the required information. @@ -43,6 +43,8 @@ The launch browser field can be optionally added if you need to launch with a we If there are web server dependencies in your project.json, the auto generated launch file will add launch browser for you. It will open with the default program to handle URLs. +Note that `launchBrowser` requires `"console": "internalConsole"`, as the browser launcher scrapes the standard output of the target process to know when the web server has initialized itself. + ## Environment variables Environment variables may be passed to your program using this schema: @@ -68,13 +70,14 @@ Example Properties/launchSettings.json file: ``` ## Console (terminal) window -By default, processes are launched with their console output (stdout/stderr) going to the VS Code Debugger Console. This is useful for executables that take their input from the network, files, etc. But this does NOT work for applications that want to read from the console (ex: `Console.ReadLine`). For these applications, use a setting such as the following: - "console": "integratedTerminal" +The `"console"` setting controls what console (terminal) window the target app is launched into. It can be set to any of these values -- + +`"internalConsole"` (default) : the target process's console output (stdout/stderr) goes to the VS Code Debug Console. This is useful for executables that take their input from the network, files, etc. But this does **NOT** work for applications that want to read from the console (ex: `Console.ReadLine`). -When this is set to `integratedTerminal` the target process will run inside [VS Code's integrated terminal](https://code.visualstudio.com/docs/editor/integrated-terminal). Click the 'Terminal' tab in the tab group beneath the editor to interact with your application. +`"integratedTerminal"` : the target process will run inside [VS Code's integrated terminal](https://code.visualstudio.com/docs/editor/integrated-terminal). Click the 'Terminal' tab in the tab group beneath the editor to interact with your application. Alternatively add `"internalConsoleOptions": "neverOpen"` to make it so that the default foreground tab is the terminal tab. -When this is set to `externalTerminal` the target process will run in a separate terminal. +`"externalTerminal"`: the target process will run inside its own external terminal. ## Source File Map You can optionally configure a file by file mapping by providing map following this schema: @@ -86,7 +89,7 @@ You can optionally configure a file by file mapping by providing map following t ## Just My Code You can optionally disable `justMyCode` by setting it to "false". You should disable Just My Code when you are trying to debug into a library that you pulled down which doesn't have symbols or is optimized. - "justMyCode":false* + "justMyCode":false Just My Code is a set of features that makes it easier to focus on debugging your code by hiding some of the details of optimized libraries that you might be using, like the .NET Framework itself. The most important sub parts of this feature are -- diff --git a/gulpfile.ts b/gulpfile.ts index 7b29c4c977..9667a94f8f 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -25,7 +25,7 @@ gulp.task('updatePackageDependencies', () => { }); gulp.task('tslint', () => { - gulp.src([ + return gulp.src([ '**/*.ts', '!**/*.d.ts', '!**/typings**', diff --git a/package-lock.json b/package-lock.json index ab166ad6ba..5c94215f09 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,7 @@ "integrity": "sha512-xejo0g2dIEy6qrQfOfOXNWwbBn397hTl8DHe6pETGwjjTCTdRER4j6vpaeWOBSMuC7zdFbp7i/iipGbo35IQEw==", "dev": true, "requires": { - "@types/glob": "5.0.35" + "@types/glob": "*" } }, "@types/chai": { @@ -25,7 +25,7 @@ "integrity": "sha512-/kgYvj5Pwiv/bOlJ6c5GlRF/W6lUGSLrpQGl/7Gg6w7tvBYcf0iF91+wwyuwDYGO2zM0wNpcoPixZVif8I/r6g==", "dev": true, "requires": { - "@types/chai": "4.1.2" + "@types/chai": "*" } }, "@types/chai-as-promised": { @@ -34,7 +34,7 @@ "integrity": "sha512-MFiW54UOSt+f2bRw8J7LgQeIvE/9b4oGvwU7XW30S9QGAiHGnU/fmiOprsyMkdmH2rl8xSPc0/yrQw8juXU6bQ==", "dev": true, "requires": { - "@types/chai": "4.1.2" + "@types/chai": "*" } }, "@types/chai-string": { @@ -43,7 +43,17 @@ "integrity": "sha512-iR9OZXsjfA9TQBMgqXdJQwStPjEadpzTOlESbr9JYWCdckKf/nmkc+zOJwY/HYpOkyGbOWQ+0yNXK76CgCIBeQ==", "dev": true, "requires": { - "@types/chai": "4.1.2" + "@types/chai": "*" + } + }, + "@types/chokidar": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/@types/chokidar/-/chokidar-1.7.5.tgz", + "integrity": "sha512-PDkSRY7KltW3M60hSBlerxI8SFPXsO3AL/aRVsO4Kh9IHRW74Ih75gUuTd/aE4LSSFqypb10UIX3QzOJwBQMGQ==", + "dev": true, + "requires": { + "@types/events": "*", + "@types/node": "*" } }, "@types/del": { @@ -52,7 +62,7 @@ "integrity": "sha512-y6qRq6raBuu965clKgx6FHuiPu3oHdtmzMPXi8Uahsjdq1L6DL5fS/aY5/s71YwM7k6K1QIWvem5vNwlnNGIkQ==", "dev": true, "requires": { - "@types/glob": "5.0.35" + "@types/glob": "*" } }, "@types/events": { @@ -68,12 +78,12 @@ "dev": true }, "@types/fs-extra": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-5.0.2.tgz", - "integrity": "sha512-Q3FWsbdmkQd1ib11A4XNWQvRD//5KpPoGawA8aB2DR7pWKoW9XQv3+dGxD/Z1eVFze23Okdo27ZQytVFlweKvQ==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-5.0.1.tgz", + "integrity": "sha512-h3wnflb+jMTipvbbZnClgA2BexrT4w0GcfoCz5qyxd0IRsbqhLSyesM6mqZTAnhbVmhyTm5tuxfRu9R+8l+lGw==", "dev": true, "requires": { - "@types/node": "9.6.4" + "@types/node": "*" } }, "@types/glob": { @@ -82,20 +92,30 @@ "integrity": "sha512-wc+VveszMLyMWFvXLkloixT4n0harUIVZjnpzztaZ0nKLuul7Z32iMt2fUFGAaZ4y1XWjFRMtCI5ewvyh4aIeg==", "dev": true, "requires": { - "@types/events": "1.2.0", - "@types/minimatch": "3.0.3", - "@types/node": "9.6.4" + "@types/events": "*", + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/glob-stream": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/glob-stream/-/glob-stream-6.1.0.tgz", + "integrity": "sha512-RHv6ZQjcTncXo3thYZrsbAVwoy4vSKosSWhuhuQxLOTv74OJuFQxXkmUuZCr3q9uNBEVCvIzmZL/FeRNbHZGUg==", + "dev": true, + "requires": { + "@types/glob": "*", + "@types/node": "*" } }, "@types/gulp": { - "version": "3.8.36", - "resolved": "https://registry.npmjs.org/@types/gulp/-/gulp-3.8.36.tgz", - "integrity": "sha512-u6/zWPzYRNPAtvyFJ3/RSXjmBaBM1dVs5kW22/jU6J786ZGLfSndhLoNOpFI6FGQvqTA+QzFHjSMhpkAN+wxcQ==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/gulp/-/gulp-4.0.5.tgz", + "integrity": "sha512-nx1QjPTiRpvLfYsZ7MBu7bT6Cm7tAXyLbY0xbdx2IEMxCK2v2urIhJMQZHW0iV1TskM71Xl6p2uRRuWDbk+/7g==", "dev": true, "requires": { - "@types/node": "9.6.4", - "@types/orchestrator": "0.3.2", - "@types/vinyl": "2.0.2" + "@types/chokidar": "*", + "@types/undertaker": "*", + "@types/vinyl-fs": "*" } }, "@types/gulp-mocha": { @@ -104,8 +124,8 @@ "integrity": "sha512-30OJubm6wl7oVFR7ibaaTl0h52sRQDJwB0h7SXm8KbPG7TN3Bb8QqNI7ObfGFjCoBCk9tr55R4278ckLMFzNcw==", "dev": true, "requires": { - "@types/mocha": "2.2.48", - "@types/node": "9.6.4" + "@types/mocha": "*", + "@types/node": "*" } }, "@types/istanbul": { @@ -132,7 +152,7 @@ "integrity": "sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==", "dev": true, "requires": { - "@types/node": "9.6.4" + "@types/node": "*" } }, "@types/mocha": { @@ -142,25 +162,9 @@ "dev": true }, "@types/node": { - "version": "9.6.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-9.6.4.tgz", - "integrity": "sha512-Awg4BcUYiZtNKoveGOu654JVPt11V/KIC77iBz8NweyoOAZpz5rUJfPDwwD+ajfTs2HndbTCEB8IuLfX9m/mmw==", - "dev": true - }, - "@types/orchestrator": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@types/orchestrator/-/orchestrator-0.3.2.tgz", - "integrity": "sha512-cKB4yTX0wGaRCSkdHDX2fkGQbMAA8UOshC2U7DQky1CE5o+5q2iQQ8VkbPbE/88uaTtsusvBPMcCX7dgmjxBhQ==", - "dev": true, - "requires": { - "@types/node": "9.6.4", - "@types/q": "1.5.0" - } - }, - "@types/q": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.0.tgz", - "integrity": "sha512-sWj7AMiG0fYmta6ug1ublLjtj/tqn+CnCZeo7yswR1ykxel0FOWFGdWviTcGSNAMmtLbycDqbg6w98VPFKJmbw==", + "version": "9.4.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-9.4.7.tgz", + "integrity": "sha512-4Ba90mWNx8ddbafuyGGwjkZMigi+AWfYLSDCpovwsE63ia8w93r3oJ8PIAQc3y8U+XHcnMOHPIzNe3o438Ywcw==", "dev": true }, "@types/semver": { @@ -175,8 +179,8 @@ "integrity": "sha512-M2giRw93PxKS7YjU6GZjtdV9HASdB7TWqizBXe4Ju7AqbKlWvTr0gNO92XH56D/gMxqD/jNHLNfC5hA34yGqrQ==", "dev": true, "requires": { - "@types/glob": "5.0.35", - "@types/node": "9.6.4" + "@types/glob": "*", + "@types/node": "*" } }, "@types/tmp": { @@ -185,13 +189,40 @@ "integrity": "sha1-EHPEvIJHVK49EM+riKsCN7qWTk0=", "dev": true }, + "@types/undertaker": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@types/undertaker/-/undertaker-1.2.0.tgz", + "integrity": "sha512-bx/5nZCGkasXs6qaA3B6SVDjBZqdyk04UO12e0uEPSzjt5H8jEJw0DKe7O7IM0hM2bVHRh70pmOH7PEHqXwzOw==", + "dev": true, + "requires": { + "@types/events": "*", + "@types/undertaker-registry": "*" + } + }, + "@types/undertaker-registry": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/undertaker-registry/-/undertaker-registry-1.0.1.tgz", + "integrity": "sha512-Z4TYuEKn9+RbNVk1Ll2SS4x1JeLHecolIbM/a8gveaHsW0Hr+RQMraZACwTO2VD7JvepgA6UO1A1VrbktQrIbQ==", + "dev": true + }, "@types/vinyl": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.2.tgz", "integrity": "sha512-2iYpNuOl98SrLPBZfEN9Mh2JCJ2EI9HU35SfgBEb51DcmaHkhp8cKMblYeBqMQiwXMgAD3W60DbQ4i/UdLiXhw==", "dev": true, "requires": { - "@types/node": "9.6.4" + "@types/node": "*" + } + }, + "@types/vinyl-fs": { + "version": "2.4.8", + "resolved": "https://registry.npmjs.org/@types/vinyl-fs/-/vinyl-fs-2.4.8.tgz", + "integrity": "sha512-yE2pN9OOrxJVeO7IZLHAHrh5R4Q0osbn5WQRuQU6GdXoK7dNFrMK3K7YhATkzf3z0yQBkol3+gafs7Rp0s7dDg==", + "dev": true, + "requires": { + "@types/glob-stream": "*", + "@types/node": "*", + "@types/vinyl": "*" } }, "@types/yauzl": { @@ -200,8 +231,8 @@ "integrity": "sha512-KVQbjKvieCq6d5LqZ8KIzzwygF88fWC+l7wvPbRPM3OI3f9ZAlhaKUlk3kjiyvOMqopSTM7enjduXXl5B+msXw==", "dev": true, "requires": { - "@types/events": "1.2.0", - "@types/node": "9.6.4" + "@types/events": "*", + "@types/node": "*" } }, "abbrev": { @@ -215,17 +246,19 @@ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.2.0.tgz", "integrity": "sha512-c+R/U5X+2zz2+UCrCFv6odQzJdoqI+YecuhnAJLa1zYaMc13zPfwMwZrr91Pd1DYNo/yPRbiM4WVf9whgwFsIg==", "requires": { - "es6-promisify": "5.0.0" + "es6-promisify": "^5.0.0" } }, "ajv": { - "version": "4.11.8", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", - "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", + "version": "5.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", + "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", "dev": true, "requires": { - "co": "4.6.0", - "json-stable-stringify": "1.0.1" + "co": "^4.6.0", + "fast-deep-equal": "^1.0.0", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.3.0" } }, "align-text": { @@ -234,9 +267,9 @@ "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", "dev": true, "requires": { - "kind-of": "3.2.2", - "longest": "1.0.1", - "repeat-string": "1.6.1" + "kind-of": "^3.0.2", + "longest": "^1.0.1", + "repeat-string": "^1.5.2" }, "dependencies": { "kind-of": { @@ -245,7 +278,7 @@ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -262,7 +295,7 @@ "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", "dev": true, "requires": { - "ansi-wrap": "0.1.0" + "ansi-wrap": "^0.1.0" } }, "ansi-cyan": { @@ -310,6 +343,25 @@ "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=", "dev": true }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "append-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", + "integrity": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=", + "dev": true, + "requires": { + "buffer-equal": "^1.0.0" + } + }, "applicationinsights": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/applicationinsights/-/applicationinsights-1.0.1.tgz", @@ -326,14 +378,14 @@ "integrity": "sha1-/2YrSnggFJSj7lRNOjP+dJZQnrw=", "dev": true, "requires": { - "archiver-utils": "1.3.0", - "async": "2.6.0", - "buffer-crc32": "0.2.13", - "glob": "7.1.2", - "lodash": "4.17.5", - "readable-stream": "2.3.6", - "tar-stream": "1.5.5", - "zip-stream": "1.2.0" + "archiver-utils": "^1.3.0", + "async": "^2.0.0", + "buffer-crc32": "^0.2.1", + "glob": "^7.0.0", + "lodash": "^4.8.0", + "readable-stream": "^2.0.0", + "tar-stream": "^1.5.0", + "zip-stream": "^1.2.0" }, "dependencies": { "async": { @@ -342,7 +394,7 @@ "integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==", "dev": true, "requires": { - "lodash": "4.17.5" + "lodash": "^4.14.0" } }, "isarray": { @@ -363,13 +415,13 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -378,7 +430,7 @@ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "~5.1.0" } } } @@ -389,12 +441,12 @@ "integrity": "sha1-5QtMCccL89aA4y/xt5lOn52JUXQ=", "dev": true, "requires": { - "glob": "7.1.2", - "graceful-fs": "4.1.11", - "lazystream": "1.0.0", - "lodash": "4.17.5", - "normalize-path": "2.1.1", - "readable-stream": "2.3.6" + "glob": "^7.0.0", + "graceful-fs": "^4.1.0", + "lazystream": "^1.0.0", + "lodash": "^4.8.0", + "normalize-path": "^2.0.0", + "readable-stream": "^2.0.0" }, "dependencies": { "isarray": { @@ -415,13 +467,13 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -430,7 +482,7 @@ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "~5.1.0" } } } @@ -447,7 +499,7 @@ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, "requires": { - "sprintf-js": "1.0.3" + "sprintf-js": "~1.0.2" } }, "argv": { @@ -462,12 +514,30 @@ "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", "dev": true }, + "arr-filter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", + "integrity": "sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=", + "dev": true, + "requires": { + "make-iterator": "^1.0.0" + } + }, "arr-flatten": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", "dev": true }, + "arr-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", + "integrity": "sha1-Onc0X/wc814qkYJWAfnljy4kysQ=", + "dev": true, + "requires": { + "make-iterator": "^1.0.0" + } + }, "arr-union": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", @@ -492,8 +562,8 @@ "integrity": "sha1-/0KsU+ZvSF1viDI0wyJSvCKGEw4=", "dev": true, "requires": { - "async-arrays": "1.0.1", - "extended-emitter": "1.0.2" + "async-arrays": "*", + "extended-emitter": "*" } }, "array-filter": { @@ -502,6 +572,41 @@ "integrity": "sha1-fajPLiZijtcygDWB/SH2fKzS7uw=", "dev": true }, + "array-initial": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", + "integrity": "sha1-L6dLJnOTccOUe9enrcc74zSz15U=", + "dev": true, + "requires": { + "array-slice": "^1.0.0", + "is-number": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true + } + } + }, + "array-last": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", + "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", + "dev": true, + "requires": { + "is-number": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true + } + } + }, "array-map": { "version": "0.0.0", "resolved": "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz", @@ -520,13 +625,32 @@ "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", "dev": true }, + "array-sort": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", + "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", + "dev": true, + "requires": { + "default-compare": "^1.0.0", + "get-value": "^2.0.6", + "kind-of": "^5.0.2" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, "array-union": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", "dev": true, "requires": { - "array-uniq": "1.0.3" + "array-uniq": "^1.0.1" } }, "array-uniq": { @@ -553,12 +677,6 @@ "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=", "dev": true }, - "assert-plus": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", - "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=", - "dev": true - }, "assertion-error": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", @@ -583,7 +701,7 @@ "integrity": "sha1-NHrytw8qeldnotVnnMQrvxwiD9k=", "dev": true, "requires": { - "sift": "5.1.0" + "sift": "*" } }, "async-child-process": { @@ -592,15 +710,50 @@ "integrity": "sha1-J9ClmLVzhwf5iYwEi9IxNAWDdHs=", "dev": true, "requires": { - "babel-runtime": "6.26.0" + "babel-runtime": "^6.11.6" + } + }, + "async-done": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.1.tgz", + "integrity": "sha512-R1BaUeJ4PMoLNJuk+0tLJgjmEqVsdN118+Z8O+alhnQDQgy0kmD5Mqi0DNEmMx2LM0Ed5yekKu+ZXYvIHceicg==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.2", + "process-nextick-args": "^1.0.7", + "stream-exhaust": "^1.0.1" + }, + "dependencies": { + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + } } }, + "async-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", + "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=", + "dev": true + }, "async-file": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/async-file/-/async-file-2.0.2.tgz", "integrity": "sha1-Aq0HhWrDcX6DayCuxaTP4AxG3yM=", "requires": { - "rimraf": "2.6.2" + "rimraf": "^2.5.2" + } + }, + "async-settle": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", + "integrity": "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=", + "dev": true, + "requires": { + "async-done": "^1.2.2" } }, "async-shelljs": { @@ -609,8 +762,8 @@ "integrity": "sha512-dk7WMFhb1dRfexI/2voIUDpmWX3XfPRyTWeafGUtdHqlcQgIZPk0St6+d9Ns3Eantq6MB+Lk4GwMCaSS8MkMRg==", "dev": true, "requires": { - "@types/shelljs": "0.7.8", - "shelljs": "0.8.1" + "@types/shelljs": "^0.7.7", + "shelljs": "^0.8.1" } }, "asynckit": { @@ -620,15 +773,9 @@ "dev": true }, "atob": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.0.tgz", - "integrity": "sha512-SuiKH8vbsOyCALjA/+EINmt/Kdl+TQPrtFgW7XZZcwtryFu9e5kQoX3bjCW6mIvGH1fbeAZZuvwGR5IlBRznGw==", - "dev": true - }, - "aws-sign2": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", - "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz", + "integrity": "sha1-ri1acpR38onWDdf5amMUoi3Wwio=", "dev": true }, "aws4": { @@ -643,9 +790,9 @@ "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", "dev": true, "requires": { - "chalk": "1.1.3", - "esutils": "2.0.2", - "js-tokens": "3.0.2" + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" } }, "babel-runtime": { @@ -654,8 +801,25 @@ "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", "dev": true, "requires": { - "core-js": "2.5.5", - "regenerator-runtime": "0.11.1" + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "bach": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", + "integrity": "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=", + "dev": true, + "requires": { + "arr-filter": "^1.1.1", + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "array-each": "^1.0.0", + "array-initial": "^1.0.0", + "array-last": "^1.1.1", + "async-done": "^1.2.2", + "async-settle": "^1.0.0", + "now-and-later": "^2.0.0" } }, "balanced-match": { @@ -669,13 +833,13 @@ "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", "dev": true, "requires": { - "cache-base": "1.0.1", - "class-utils": "0.3.6", - "component-emitter": "1.2.1", - "define-property": "1.0.0", - "isobject": "3.0.1", - "mixin-deep": "1.3.1", - "pascalcase": "0.1.1" + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" }, "dependencies": { "define-property": { @@ -684,7 +848,7 @@ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", "dev": true, "requires": { - "is-descriptor": "1.0.2" + "is-descriptor": "^1.0.0" } }, "is-accessor-descriptor": { @@ -693,7 +857,7 @@ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, "requires": { - "kind-of": "6.0.2" + "kind-of": "^6.0.0" } }, "is-data-descriptor": { @@ -702,7 +866,7 @@ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, "requires": { - "kind-of": "6.0.2" + "kind-of": "^6.0.0" } }, "is-descriptor": { @@ -711,9 +875,9 @@ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, "requires": { - "is-accessor-descriptor": "1.0.0", - "is-data-descriptor": "1.0.0", - "kind-of": "6.0.2" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } } } @@ -731,25 +895,25 @@ "dev": true, "optional": true, "requires": { - "tweetnacl": "0.14.5" + "tweetnacl": "^0.14.3" } }, - "beeper": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz", - "integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=", - "dev": true - }, "binary": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz", "integrity": "sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk=", "dev": true, "requires": { - "buffers": "0.1.1", - "chainsaw": "0.1.0" + "buffers": "~0.1.1", + "chainsaw": "~0.1.0" } }, + "binary-extensions": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz", + "integrity": "sha1-RqoXUftqL5PuXmibsQh9SxTGwgU=", + "dev": true + }, "bit-mask": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/bit-mask/-/bit-mask-1.0.1.tgz", @@ -765,8 +929,8 @@ "integrity": "sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA==", "dev": true, "requires": { - "readable-stream": "2.3.6", - "safe-buffer": "5.1.1" + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" }, "dependencies": { "isarray": { @@ -781,13 +945,13 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -796,7 +960,7 @@ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "~5.1.0" } } } @@ -807,7 +971,7 @@ "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", "dev": true, "requires": { - "inherits": "2.0.3" + "inherits": "~2.0.0" } }, "bluebird": { @@ -822,15 +986,15 @@ "dev": true, "requires": { "bytes": "3.0.0", - "content-type": "1.0.4", + "content-type": "~1.0.4", "debug": "2.6.9", - "depd": "1.1.2", - "http-errors": "1.6.3", + "depd": "~1.1.1", + "http-errors": "~1.6.2", "iconv-lite": "0.4.19", - "on-finished": "2.3.0", + "on-finished": "~2.3.0", "qs": "6.5.1", "raw-body": "2.3.2", - "type-is": "1.6.16" + "type-is": "~1.6.15" }, "dependencies": { "debug": { @@ -856,21 +1020,12 @@ "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", "dev": true }, - "boom": { - "version": "2.10.1", - "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", - "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", - "dev": true, - "requires": { - "hoek": "2.16.3" - } - }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "requires": { - "balanced-match": "1.0.0", + "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, @@ -880,16 +1035,16 @@ "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "dev": true, "requires": { - "arr-flatten": "1.1.0", - "array-unique": "0.3.2", - "extend-shallow": "2.0.1", - "fill-range": "4.0.0", - "isobject": "3.0.1", - "repeat-element": "1.1.2", - "snapdragon": "0.8.2", - "snapdragon-node": "2.1.1", - "split-string": "3.1.0", - "to-regex": "3.0.2" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" }, "dependencies": { "extend-shallow": { @@ -898,7 +1053,7 @@ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" } } } @@ -914,6 +1069,18 @@ "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=" }, + "buffer-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", + "integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=", + "dev": true + }, + "buffer-from": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.0.0.tgz", + "integrity": "sha512-83apNb8KK0Se60UE1+4Ukbe3HbfELJ6UlI4ldtOGs7So4KD26orJM8hIY9lxdzP+UpItH1Yh/Y8GUvNFWFFRxA==", + "dev": true + }, "buffers": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz", @@ -938,15 +1105,15 @@ "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", "dev": true, "requires": { - "collection-visit": "1.0.0", - "component-emitter": "1.2.1", - "get-value": "2.0.6", - "has-value": "1.0.0", - "isobject": "3.0.1", - "set-value": "2.0.0", - "to-object-path": "0.3.0", - "union-value": "1.0.0", - "unset-value": "1.0.0" + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" } }, "call-me-maybe": { @@ -974,8 +1141,8 @@ "dev": true, "optional": true, "requires": { - "align-text": "0.1.4", - "lazy-cache": "1.0.4" + "align-text": "^0.1.3", + "lazy-cache": "^1.0.3" } }, "chai": { @@ -984,12 +1151,12 @@ "integrity": "sha1-D2RYS6ZC8PKs4oBiefTwbKI61zw=", "dev": true, "requires": { - "assertion-error": "1.1.0", - "check-error": "1.0.2", - "deep-eql": "3.0.1", - "get-func-name": "2.0.0", - "pathval": "1.1.0", - "type-detect": "4.0.8" + "assertion-error": "^1.0.1", + "check-error": "^1.0.1", + "deep-eql": "^3.0.0", + "get-func-name": "^2.0.0", + "pathval": "^1.0.0", + "type-detect": "^4.0.0" } }, "chai-arrays": { @@ -1004,7 +1171,7 @@ "integrity": "sha512-azL6xMoi+uxu6z4rhWQ1jbdUhOMhis2PvscD/xjLqNMkv3BPPp2JyyuTHOrf9BOosGpNQ11v6BKv/g57RXbiaA==", "dev": true, "requires": { - "check-error": "1.0.2" + "check-error": "^1.0.2" } }, "chai-fs": { @@ -1013,8 +1180,8 @@ "integrity": "sha1-Na4Dn7uwcQ9RIqrhf6uh6PQRB8Y=", "dev": true, "requires": { - "bit-mask": "1.0.1", - "readdir-enhanced": "1.5.2" + "bit-mask": "^1.0.1", + "readdir-enhanced": "^1.4.0" } }, "chai-string": { @@ -1029,7 +1196,7 @@ "integrity": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=", "dev": true, "requires": { - "traverse": "0.3.9" + "traverse": ">=0.3.0 <0.4" } }, "chalk": { @@ -1038,11 +1205,11 @@ "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "dev": true, "requires": { - "ansi-styles": "2.2.1", - "escape-string-regexp": "1.0.5", - "has-ansi": "2.0.0", - "strip-ansi": "3.0.1", - "supports-color": "2.0.0" + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" }, "dependencies": { "ansi-regex": { @@ -1057,7 +1224,7 @@ "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, "requires": { - "ansi-regex": "2.1.1" + "ansi-regex": "^2.0.0" } } } @@ -1074,19 +1241,42 @@ "integrity": "sha1-S59TqBsn5NXawxwP/Qz6A8xoMNs=", "dev": true, "requires": { - "css-select": "1.2.0", - "dom-serializer": "0.1.0", - "entities": "1.1.1", - "htmlparser2": "3.9.2", - "lodash": "4.17.5", - "parse5": "3.0.3" + "css-select": "~1.2.0", + "dom-serializer": "~0.1.0", + "entities": "~1.1.1", + "htmlparser2": "^3.9.1", + "lodash": "^4.15.0", + "parse5": "^3.0.1" + } + }, + "chokidar": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.3.tgz", + "integrity": "sha512-zW8iXYZtXMx4kux/nuZVXjkLP+CyIK5Al5FHnj1OgTKGZfp4Oy6/ymtMSKFv3GD8DviEmUPmJg9eFdJ/JzudMg==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.0", + "braces": "^2.3.0", + "fsevents": "^1.1.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.1", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^2.1.1", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.0.0", + "upath": "^1.0.0" }, "dependencies": { - "lodash": { - "version": "4.17.5", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.5.tgz", - "integrity": "sha512-svL3uiZf1RwhH+cWrfZn3A4+U58wbP0tGVTLQPbjplZxZ8ROD9VLuNgsRniTlLe7OlSqR79RUehXgpBW/s0IQw==", - "dev": true + "is-glob": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", + "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } } } }, @@ -1096,10 +1286,10 @@ "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", "dev": true, "requires": { - "arr-union": "3.1.0", - "define-property": "0.2.5", - "isobject": "3.0.1", - "static-extend": "0.1.2" + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" }, "dependencies": { "define-property": { @@ -1108,7 +1298,7 @@ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, "requires": { - "is-descriptor": "0.1.6" + "is-descriptor": "^0.1.0" } } } @@ -1119,15 +1309,15 @@ "integrity": "sha512-nY3W5Gu2racvdDk//ELReY+dHjb9PlIcVDFXP72nVIhq2Gy3LuVXYwJoPVudwQnv1shtohpgkdCKT2YaKY0CKw==", "dev": true, "requires": { - "string-width": "2.1.1", - "strip-ansi": "4.0.0", - "wrap-ansi": "2.1.0" + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0", + "wrap-ansi": "^2.0.0" } }, "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz", + "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8=", "dev": true }, "clone-buffer": { @@ -1148,9 +1338,9 @@ "integrity": "sha512-Bq6+4t+lbM8vhTs/Bef5c5AdEMtapp/iFb6+s4/Hh9MVTt8OLKH7ZOOZSCT+Ys7hsHvqv0GuMPJ1lnQJVHvxpg==", "dev": true, "requires": { - "inherits": "2.0.3", - "process-nextick-args": "2.0.0", - "readable-stream": "2.3.6" + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" }, "dependencies": { "isarray": { @@ -1165,13 +1355,13 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -1180,7 +1370,7 @@ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "~5.1.0" } } } @@ -1198,24 +1388,35 @@ "dev": true }, "codecov": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/codecov/-/codecov-3.0.0.tgz", - "integrity": "sha1-wnO4xPEpRXI+jcnSWAPYk0Pl8o4=", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/codecov/-/codecov-3.0.2.tgz", + "integrity": "sha512-9ljtIROIjPIUmMRqO+XuDITDoV8xRrZmA0jcEq6p2hg2+wY9wGmLfreAZGIL72IzUfdEDZaU8+Vjidg1fBQ8GQ==", "dev": true, "requires": { "argv": "0.0.2", - "request": "2.81.0", + "request": "^2.81.0", "urlgrey": "0.4.4" } }, + "collection-map": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", + "integrity": "sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=", + "dev": true, + "requires": { + "arr-map": "^2.0.2", + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + } + }, "collection-visit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", "dev": true, "requires": { - "map-visit": "1.0.0", - "object-visit": "1.0.1" + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" } }, "color-convert": { @@ -1224,7 +1425,7 @@ "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==", "dev": true, "requires": { - "color-name": "1.1.3" + "color-name": "^1.1.1" } }, "color-name": { @@ -1245,7 +1446,7 @@ "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=", "dev": true, "requires": { - "delayed-stream": "1.0.0" + "delayed-stream": "~1.0.0" } }, "commander": { @@ -1266,10 +1467,10 @@ "integrity": "sha1-UkqfEJA/OoEzibAiXSfEi7dRiQ8=", "dev": true, "requires": { - "buffer-crc32": "0.2.13", - "crc32-stream": "2.0.0", - "normalize-path": "2.1.1", - "readable-stream": "2.3.6" + "buffer-crc32": "^0.2.1", + "crc32-stream": "^2.0.0", + "normalize-path": "^2.0.0", + "readable-stream": "^2.0.0" }, "dependencies": { "isarray": { @@ -1284,13 +1485,13 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -1299,7 +1500,7 @@ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "~5.1.0" } } } @@ -1309,6 +1510,50 @@ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, "connect": { "version": "3.6.6", "resolved": "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz", @@ -1317,7 +1562,7 @@ "requires": { "debug": "2.6.9", "finalhandler": "1.1.0", - "parseurl": "1.3.2", + "parseurl": "~1.3.2", "utils-merge": "1.0.1" }, "dependencies": { @@ -1350,18 +1595,28 @@ "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", "dev": true }, + "copy-props": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.4.tgz", + "integrity": "sha512-7cjuUME+p+S3HZlbllgsn2CDwS+5eCCX16qBgNC4jgSTf49qR1VKy/Zhl400m0IQXl/bPGEVqncgUUMjrr4s8A==", + "dev": true, + "requires": { + "each-props": "^1.3.0", + "is-plain-object": "^2.0.1" + } + }, "copyfiles": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/copyfiles/-/copyfiles-2.0.0.tgz", "integrity": "sha512-NSSJdwCH27/hEiBlhkXYWh3AaPo8IATxLX5XtJQgknOvOehrREtETsGd/BNr2vuj0URgKBC/50PNRM3yShQGJQ==", "dev": true, "requires": { - "glob": "7.1.2", - "minimatch": "3.0.4", - "mkdirp": "0.5.1", + "glob": "^7.0.5", + "minimatch": "^3.0.3", + "mkdirp": "^0.5.1", "noms": "0.0.0", - "through2": "2.0.3", - "yargs": "11.0.0" + "through2": "^2.0.1", + "yargs": "^11.0.0" } }, "core-js": { @@ -1388,8 +1643,8 @@ "integrity": "sha1-483TtN8xaN10494/u8t7KX/pCPQ=", "dev": true, "requires": { - "crc": "3.5.0", - "readable-stream": "2.3.6" + "crc": "^3.4.4", + "readable-stream": "^2.0.0" }, "dependencies": { "isarray": { @@ -1404,13 +1659,13 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -1419,7 +1674,7 @@ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "~5.1.0" } } } @@ -1430,8 +1685,8 @@ "integrity": "sha512-Mx8mw6JWhfpYoEk7PGvHxJMLQwQHORAs8+2bX+C1lGQ4h3GkDb1zbzC2Nw85YH9ZQMlO0BHZxMacgrfPmMFxbg==", "dev": true, "requires": { - "cross-spawn": "5.1.0", - "is-windows": "1.0.2" + "cross-spawn": "^5.1.0", + "is-windows": "^1.0.0" } }, "cross-spawn": { @@ -1440,18 +1695,9 @@ "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", "dev": true, "requires": { - "lru-cache": "4.1.2", - "shebang-command": "1.2.0", - "which": "1.3.0" - } - }, - "cryptiles": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", - "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", - "dev": true, - "requires": { - "boom": "2.10.1" + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } }, "css-select": { @@ -1460,10 +1706,10 @@ "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", "dev": true, "requires": { - "boolbase": "1.0.0", - "css-what": "2.1.0", + "boolbase": "~1.0.0", + "css-what": "2.1", "domutils": "1.5.1", - "nth-check": "1.0.1" + "nth-check": "~1.0.1" } }, "css-what": { @@ -1472,7 +1718,16 @@ "integrity": "sha1-lGfQMsOM+u+58teVASUwYvh/ob0=", "dev": true }, - "dargs": { + "d": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz", + "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=", + "dev": true, + "requires": { + "es5-ext": "^0.10.9" + } + }, + "dargs": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/dargs/-/dargs-5.1.0.tgz", "integrity": "sha1-7H6lDHhWTNNsnV7Bj2Yyn63ieCk=", @@ -1484,7 +1739,7 @@ "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", "dev": true, "requires": { - "assert-plus": "1.0.0" + "assert-plus": "^1.0.0" }, "dependencies": { "assert-plus": { @@ -1495,12 +1750,6 @@ } } }, - "dateformat": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz", - "integrity": "sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI=", - "dev": true - }, "debug": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", @@ -1527,7 +1776,7 @@ "integrity": "sha1-sJJ0O+hCfcYh6gBnzex+cN0Z83s=", "dev": true, "requires": { - "is-obj": "1.0.1" + "is-obj": "^1.0.0" } }, "deep-eql": { @@ -1536,7 +1785,7 @@ "integrity": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==", "dev": true, "requires": { - "type-detect": "4.0.8" + "type-detect": "^4.0.0" } }, "deep-is": { @@ -1545,23 +1794,37 @@ "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", "dev": true }, - "defaults": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", - "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "default-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", + "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", "dev": true, "requires": { - "clone": "1.0.4" + "kind-of": "^5.0.2" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } } }, + "default-resolution": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", + "integrity": "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=", + "dev": true + }, "define-properties": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz", "integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=", "dev": true, "requires": { - "foreach": "2.0.5", - "object-keys": "1.0.11" + "foreach": "^2.0.5", + "object-keys": "^1.0.8" } }, "define-property": { @@ -1570,8 +1833,8 @@ "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", "dev": true, "requires": { - "is-descriptor": "1.0.2", - "isobject": "3.0.1" + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" }, "dependencies": { "is-accessor-descriptor": { @@ -1580,7 +1843,7 @@ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, "requires": { - "kind-of": "6.0.2" + "kind-of": "^6.0.0" } }, "is-data-descriptor": { @@ -1589,7 +1852,7 @@ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, "requires": { - "kind-of": "6.0.2" + "kind-of": "^6.0.0" } }, "is-descriptor": { @@ -1598,9 +1861,9 @@ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, "requires": { - "is-accessor-descriptor": "1.0.0", - "is-data-descriptor": "1.0.0", - "kind-of": "6.0.2" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } } } @@ -1611,12 +1874,12 @@ "integrity": "sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=", "dev": true, "requires": { - "globby": "6.1.0", - "is-path-cwd": "1.0.0", - "is-path-in-cwd": "1.0.1", - "p-map": "1.2.0", - "pify": "3.0.0", - "rimraf": "2.6.2" + "globby": "^6.1.0", + "is-path-cwd": "^1.0.0", + "is-path-in-cwd": "^1.0.0", + "p-map": "^1.1.1", + "pify": "^3.0.0", + "rimraf": "^2.2.8" } }, "delayed-stream": { @@ -1637,12 +1900,6 @@ "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", "dev": true }, - "deprecated": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/deprecated/-/deprecated-0.0.1.tgz", - "integrity": "sha1-+cmvVGSvoeepcUWKi97yqpTVuxk=", - "dev": true - }, "detect-file": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", @@ -1654,7 +1911,7 @@ "resolved": "https://registry.npmjs.org/diagnostic-channel/-/diagnostic-channel-0.2.0.tgz", "integrity": "sha1-zJmvlhLCP7H/8TYSxy8sv6qNWhc=", "requires": { - "semver": "5.5.0" + "semver": "^5.3.0" } }, "diagnostic-channel-publishers": { @@ -1674,8 +1931,8 @@ "integrity": "sha1-BzxpdUbOB4DOI75KKOKT5AvDDII=", "dev": true, "requires": { - "domelementtype": "1.1.3", - "entities": "1.1.1" + "domelementtype": "~1.1.1", + "entities": "~1.1.1" }, "dependencies": { "domelementtype": { @@ -1693,12 +1950,12 @@ "dev": true }, "domhandler": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.1.tgz", - "integrity": "sha1-iS5HAAqZvlW783dP/qBWHYh5wlk=", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", "dev": true, "requires": { - "domelementtype": "1.3.0" + "domelementtype": "1" } }, "domutils": { @@ -1707,8 +1964,8 @@ "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", "dev": true, "requires": { - "dom-serializer": "0.1.0", - "domelementtype": "1.3.0" + "dom-serializer": "0", + "domelementtype": "1" } }, "duplexer": { @@ -1717,39 +1974,16 @@ "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", "dev": true }, - "duplexer2": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", - "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=", - "dev": true, - "requires": { - "readable-stream": "1.1.14" - }, - "dependencies": { - "readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", - "dev": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "0.0.1", - "string_decoder": "0.10.31" - } - } - } - }, "duplexify": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.5.4.tgz", - "integrity": "sha512-JzYSLYMhoVVBe8+mbHQ4KgpvHpm0DZpJuL8PY93Vyv1fW7jYJ90LoXa1di/CVbJM+TgMs91rbDapE/RNIfnJsA==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.6.0.tgz", + "integrity": "sha512-fO3Di4tBKJpYTFHAxTU00BcfWMY9w24r/x21a6rZRbsD/ToUgGxsMbiGRmB7uVAXeGKXD9MwiLZa5E97EVgIRQ==", "dev": true, "requires": { - "end-of-stream": "1.4.1", - "inherits": "2.0.3", - "readable-stream": "2.3.6", - "stream-shift": "1.0.0" + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" }, "dependencies": { "end-of-stream": { @@ -1758,7 +1992,7 @@ "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", "dev": true, "requires": { - "once": "1.4.0" + "once": "^1.4.0" } }, "isarray": { @@ -1773,13 +2007,13 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -1788,11 +2022,21 @@ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "~5.1.0" } } } }, + "each-props": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", + "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.1", + "object.defaults": "^1.1.0" + } + }, "ecc-jsbn": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", @@ -1800,7 +2044,7 @@ "dev": true, "optional": true, "requires": { - "jsbn": "0.1.1" + "jsbn": "~0.1.0" } }, "ee-first": { @@ -1816,23 +2060,12 @@ "dev": true }, "end-of-stream": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz", - "integrity": "sha1-jhdyBsPICDfYVjLouTWd/osvbq8=", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", + "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", "dev": true, "requires": { - "once": "1.3.3" - }, - "dependencies": { - "once": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", - "integrity": "sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA=", - "dev": true, - "requires": { - "wrappy": "1.0.2" - } - } + "once": "^1.4.0" } }, "entities": { @@ -1847,7 +2080,7 @@ "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", "dev": true, "requires": { - "is-arrayish": "0.2.1" + "is-arrayish": "^0.2.1" } }, "es-abstract": { @@ -1856,11 +2089,11 @@ "integrity": "sha512-ZnQrE/lXTTQ39ulXZ+J1DTFazV9qBy61x2bY071B+qGco8Z8q1QddsLdt/EF8Ai9hcWH72dWS0kFqXLxOxqslA==", "dev": true, "requires": { - "es-to-primitive": "1.1.1", - "function-bind": "1.1.1", - "has": "1.0.1", - "is-callable": "1.1.3", - "is-regex": "1.0.4" + "es-to-primitive": "^1.1.1", + "function-bind": "^1.1.1", + "has": "^1.0.1", + "is-callable": "^1.1.3", + "is-regex": "^1.0.4" } }, "es-to-primitive": { @@ -1869,9 +2102,31 @@ "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=", "dev": true, "requires": { - "is-callable": "1.1.3", - "is-date-object": "1.0.1", - "is-symbol": "1.0.1" + "is-callable": "^1.1.1", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.1" + } + }, + "es5-ext": { + "version": "0.10.42", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.42.tgz", + "integrity": "sha512-AJxO1rmPe1bDEfSR6TJ/FgMFYuTBhR5R57KW58iCkYACMyFbrkqVyzXSurYoScDGvgyMpk7uRF/lPUPPTmsRSA==", + "dev": true, + "requires": { + "es6-iterator": "~2.0.3", + "es6-symbol": "~3.1.1", + "next-tick": "1" + } + }, + "es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" } }, "es6-promise": { @@ -1884,7 +2139,29 @@ "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", "integrity": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=", "requires": { - "es6-promise": "4.2.4" + "es6-promise": "^4.0.3" + } + }, + "es6-symbol": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", + "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "~0.10.14" + } + }, + "es6-weak-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz", + "integrity": "sha1-XjqzIlH/0VOKH45f+hNXdy+S2W8=", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "^0.10.14", + "es6-iterator": "^2.0.1", + "es6-symbol": "^3.1.1" } }, "escape-html": { @@ -1905,11 +2182,11 @@ "integrity": "sha1-WltTr0aTEQvrsIZ6o0MN07cKEBg=", "dev": true, "requires": { - "esprima": "2.7.3", - "estraverse": "1.9.3", - "esutils": "2.0.2", - "optionator": "0.8.2", - "source-map": "0.2.0" + "esprima": "^2.7.1", + "estraverse": "^1.9.1", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.2.0" }, "dependencies": { "source-map": { @@ -1919,7 +2196,7 @@ "dev": true, "optional": true, "requires": { - "amdefine": "1.0.1" + "amdefine": ">=0.0.4" } } } @@ -1944,17 +2221,17 @@ }, "event-stream": { "version": "3.3.4", - "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", + "resolved": "http://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", "integrity": "sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=", "dev": true, "requires": { - "duplexer": "0.1.1", - "from": "0.1.7", - "map-stream": "0.1.0", + "duplexer": "~0.1.1", + "from": "~0", + "map-stream": "~0.1.0", "pause-stream": "0.0.11", - "split": "0.3.3", - "stream-combiner": "0.0.4", - "through": "2.3.8" + "split": "0.3", + "stream-combiner": "~0.0.4", + "through": "~2.3.1" }, "dependencies": { "map-stream": { @@ -1971,13 +2248,13 @@ "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", "dev": true, "requires": { - "cross-spawn": "5.1.0", - "get-stream": "3.0.0", - "is-stream": "1.1.0", - "npm-run-path": "2.0.2", - "p-finally": "1.0.0", - "signal-exit": "3.0.2", - "strip-eof": "1.0.0" + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" } }, "expand-brackets": { @@ -1986,13 +2263,13 @@ "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", "dev": true, "requires": { - "debug": "2.6.9", - "define-property": "0.2.5", - "extend-shallow": "2.0.1", - "posix-character-classes": "0.1.1", - "regex-not": "1.0.2", - "snapdragon": "0.8.2", - "to-regex": "3.0.2" + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" }, "dependencies": { "debug": { @@ -2010,7 +2287,7 @@ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, "requires": { - "is-descriptor": "0.1.6" + "is-descriptor": "^0.1.0" } }, "extend-shallow": { @@ -2019,7 +2296,7 @@ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" } } } @@ -2030,20 +2307,20 @@ "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", "dev": true, "requires": { - "fill-range": "2.2.3" + "fill-range": "^2.1.0" }, "dependencies": { "fill-range": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", - "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", + "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", "dev": true, "requires": { - "is-number": "2.1.0", - "isobject": "2.1.0", - "randomatic": "1.1.7", - "repeat-element": "1.1.2", - "repeat-string": "1.6.1" + "is-number": "^2.1.0", + "isobject": "^2.0.0", + "randomatic": "^3.0.0", + "repeat-element": "^1.1.2", + "repeat-string": "^1.5.2" } }, "is-number": { @@ -2052,7 +2329,7 @@ "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", "dev": true, "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" } }, "isarray": { @@ -2076,7 +2353,7 @@ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -2087,7 +2364,7 @@ "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", "dev": true, "requires": { - "homedir-polyfill": "1.0.1" + "homedir-polyfill": "^1.0.1" } }, "extend": { @@ -2102,8 +2379,8 @@ "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", "dev": true, "requires": { - "assign-symbols": "1.0.0", - "is-extendable": "1.0.1" + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" }, "dependencies": { "is-extendable": { @@ -2112,7 +2389,7 @@ "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "dev": true, "requires": { - "is-plain-object": "2.0.4" + "is-plain-object": "^2.0.4" } } } @@ -2123,8 +2400,8 @@ "integrity": "sha1-olIauT87G2mjX/OjXamIk4Wpm6A=", "dev": true, "requires": { - "sift": "5.1.0", - "wolfy87-eventemitter": "5.2.4" + "sift": "*", + "wolfy87-eventemitter": "*" } }, "extglob": { @@ -2133,14 +2410,14 @@ "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "dev": true, "requires": { - "array-unique": "0.3.2", - "define-property": "1.0.0", - "expand-brackets": "2.1.4", - "extend-shallow": "2.0.1", - "fragment-cache": "0.2.1", - "regex-not": "1.0.2", - "snapdragon": "0.8.2", - "to-regex": "3.0.2" + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" }, "dependencies": { "define-property": { @@ -2149,7 +2426,7 @@ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", "dev": true, "requires": { - "is-descriptor": "1.0.2" + "is-descriptor": "^1.0.0" } }, "extend-shallow": { @@ -2158,7 +2435,7 @@ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" } }, "is-accessor-descriptor": { @@ -2167,7 +2444,7 @@ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, "requires": { - "kind-of": "6.0.2" + "kind-of": "^6.0.0" } }, "is-data-descriptor": { @@ -2176,7 +2453,7 @@ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, "requires": { - "kind-of": "6.0.2" + "kind-of": "^6.0.0" } }, "is-descriptor": { @@ -2185,9 +2462,9 @@ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, "requires": { - "is-accessor-descriptor": "1.0.0", - "is-data-descriptor": "1.0.0", - "kind-of": "6.0.2" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } } } @@ -2204,9 +2481,9 @@ "integrity": "sha1-9BEl49hPLn2JpD0G2VjI94vha+E=", "dev": true, "requires": { - "ansi-gray": "0.1.1", - "color-support": "1.1.3", - "time-stamp": "1.1.0" + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "time-stamp": "^1.0.0" } }, "fast-deep-equal": { @@ -2232,7 +2509,7 @@ "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz", "integrity": "sha1-i1vL2ewyfFBBv5qwI/1nUPEXfmU=", "requires": { - "pend": "1.2.0" + "pend": "~1.2.0" } }, "filename-regex": { @@ -2241,50 +2518,16 @@ "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", "dev": true }, - "fileset": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fileset/-/fileset-0.2.1.tgz", - "integrity": "sha1-WI74lzxmI7KnbfRlEFaWuWqsgGc=", - "dev": true, - "requires": { - "glob": "5.0.15", - "minimatch": "2.0.10" - }, - "dependencies": { - "glob": { - "version": "5.0.15", - "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", - "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", - "dev": true, - "requires": { - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "2.0.10", - "once": "1.4.0", - "path-is-absolute": "1.0.1" - } - }, - "minimatch": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", - "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=", - "dev": true, - "requires": { - "brace-expansion": "1.1.11" - } - } - } - }, "fill-range": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", "dev": true, "requires": { - "extend-shallow": "2.0.1", - "is-number": "3.0.0", - "repeat-string": "1.6.1", - "to-regex-range": "2.1.1" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" }, "dependencies": { "extend-shallow": { @@ -2293,7 +2536,7 @@ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" } } } @@ -2305,12 +2548,12 @@ "dev": true, "requires": { "debug": "2.6.9", - "encodeurl": "1.0.2", - "escape-html": "1.0.3", - "on-finished": "2.3.0", - "parseurl": "1.3.2", - "statuses": "1.3.1", - "unpipe": "1.0.0" + "encodeurl": "~1.0.1", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.2", + "statuses": "~1.3.1", + "unpipe": "~1.0.0" }, "dependencies": { "debug": { @@ -2330,19 +2573,13 @@ } } }, - "find-index": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz", - "integrity": "sha1-Z101iyyjiS15Whq0cjL4tuLg3eQ=", - "dev": true - }, "find-up": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", "dev": true, "requires": { - "locate-path": "2.0.0" + "locate-path": "^2.0.0" } }, "findup-sync": { @@ -2351,10 +2588,10 @@ "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=", "dev": true, "requires": { - "detect-file": "1.0.0", - "is-glob": "3.1.0", - "micromatch": "3.1.10", - "resolve-dir": "1.0.1" + "detect-file": "^1.0.0", + "is-glob": "^3.1.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" } }, "fined": { @@ -2363,11 +2600,11 @@ "integrity": "sha1-s33IRLdqL15wgeiE98CuNE8VNHY=", "dev": true, "requires": { - "expand-tilde": "2.0.2", - "is-plain-object": "2.0.4", - "object.defaults": "1.1.0", - "object.pick": "1.3.0", - "parse-filepath": "1.0.2" + "expand-tilde": "^2.0.2", + "is-plain-object": "^2.0.3", + "object.defaults": "^1.1.0", + "object.pick": "^1.2.0", + "parse-filepath": "^1.0.1" } }, "first-chunk-stream": { @@ -2382,6 +2619,48 @@ "integrity": "sha1-Tnmumy6zi/hrO7Vr8+ClaqX8q9c=", "dev": true }, + "flush-write-stream": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.3.tgz", + "integrity": "sha512-calZMC10u0FMUqoiunI2AiGIIUtUIvifNwkHhNupZH4cbNnW1Itkoh/Nf5HFYmDrwWPjrUxpkZT0KhuCq0jmGw==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.4" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, "for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", @@ -2394,7 +2673,7 @@ "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", "dev": true, "requires": { - "for-in": "1.0.2" + "for-in": "^1.0.1" } }, "foreach": { @@ -2409,24 +2688,13 @@ "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", "dev": true }, - "form-data": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", - "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", - "dev": true, - "requires": { - "asynckit": "0.4.0", - "combined-stream": "1.0.6", - "mime-types": "2.1.18" - } - }, "fragment-cache": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", "dev": true, "requires": { - "map-cache": "0.2.2" + "map-cache": "^0.2.2" } }, "from": { @@ -2440,9 +2708,19 @@ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-5.0.0.tgz", "integrity": "sha512-66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ==", "requires": { - "graceful-fs": "4.1.11", - "jsonfile": "4.0.0", - "universalify": "0.1.1" + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fs-mkdirp-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", + "integrity": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "through2": "^2.0.3" } }, "fs.realpath": { @@ -2450,117 +2728,622 @@ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, - "fstream": { - "version": "0.1.31", - "resolved": "https://registry.npmjs.org/fstream/-/fstream-0.1.31.tgz", - "integrity": "sha1-czfwWPu7vvqMn1YaKMqwhJICyYg=", + "fsevents": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz", + "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==", "dev": true, + "optional": true, "requires": { - "graceful-fs": "3.0.11", - "inherits": "2.0.3", - "mkdirp": "0.5.1", - "rimraf": "2.6.2" + "nan": "^2.9.2", + "node-pre-gyp": "^0.10.0" }, "dependencies": { - "graceful-fs": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz", - "integrity": "sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg=", + "abbrev": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "ansi-regex": { + "version": "2.1.1", + "bundled": true, + "dev": true + }, + "aproba": { + "version": "1.2.0", + "bundled": true, + "dev": true, + "optional": true + }, + "are-we-there-yet": { + "version": "1.1.4", + "bundled": true, "dev": true, + "optional": true, "requires": { - "natives": "1.1.3" + "delegates": "1.0.0", + "readable-stream": "2.3.6" } - } - } - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "gaze": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz", - "integrity": "sha1-QLcJU30k0dRXZ9takIaJ3+aaxE8=", - "dev": true, - "requires": { - "globule": "0.1.0" - } - }, - "generate-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", - "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=", - "dev": true - }, - "generate-object-property": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", - "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", - "dev": true, - "requires": { - "is-property": "1.0.2" - } - }, - "get-caller-file": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", - "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=", - "dev": true - }, - "get-func-name": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", - "integrity": "sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=", - "dev": true - }, - "get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw=", - "dev": true - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", - "dev": true - }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", - "dev": true - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "dev": true, - "requires": { - "assert-plus": "1.0.0" - }, - "dependencies": { - "assert-plus": { + }, + "balanced-match": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "bundled": true, "dev": true - } - } - }, - "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", - "requires": { - "fs.realpath": "1.0.0", - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" + }, + "brace-expansion": { + "version": "1.1.11", + "bundled": true, + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + } + }, + "chownr": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "code-point-at": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true, + "dev": true + }, + "console-control-strings": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "debug": { + "version": "2.6.9", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "deep-extend": { + "version": "0.5.1", + "bundled": true, + "dev": true, + "optional": true + }, + "delegates": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "detect-libc": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "optional": true + }, + "fs-minipass": { + "version": "1.2.5", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "minipass": "2.2.4" + } + }, + "fs.realpath": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "gauge": { + "version": "2.7.4", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "aproba": "1.2.0", + "console-control-strings": "1.1.0", + "has-unicode": "2.0.1", + "object-assign": "4.1.1", + "signal-exit": "3.0.2", + "string-width": "1.0.2", + "strip-ansi": "3.0.1", + "wide-align": "1.1.2" + } + }, + "glob": { + "version": "7.1.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "has-unicode": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "iconv-lite": { + "version": "0.4.21", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "safer-buffer": "2.1.2" + } + }, + "ignore-walk": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "minimatch": "3.0.4" + } + }, + "inflight": { + "version": "1.0.6", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "bundled": true, + "dev": true + }, + "ini": { + "version": "1.3.5", + "bundled": true, + "dev": true, + "optional": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + } + }, + "isarray": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "minimatch": { + "version": "3.0.4", + "bundled": true, + "dev": true, + "requires": { + "brace-expansion": "1.1.11" + } + }, + "minimist": { + "version": "0.0.8", + "bundled": true, + "dev": true + }, + "minipass": { + "version": "2.2.4", + "bundled": true, + "dev": true, + "requires": { + "safe-buffer": "5.1.1", + "yallist": "3.0.2" + } + }, + "minizlib": { + "version": "1.1.0", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "minipass": "2.2.4" + } + }, + "mkdirp": { + "version": "0.5.1", + "bundled": true, + "dev": true, + "requires": { + "minimist": "0.0.8" + } + }, + "ms": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "needle": { + "version": "2.2.0", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "debug": "2.6.9", + "iconv-lite": "0.4.21", + "sax": "1.2.4" + } + }, + "node-pre-gyp": { + "version": "0.10.0", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "detect-libc": "1.0.3", + "mkdirp": "0.5.1", + "needle": "2.2.0", + "nopt": "4.0.1", + "npm-packlist": "1.1.10", + "npmlog": "4.1.2", + "rc": "1.2.7", + "rimraf": "2.6.2", + "semver": "5.5.0", + "tar": "4.4.1" + } + }, + "nopt": { + "version": "4.0.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "abbrev": "1.1.1", + "osenv": "0.1.5" + } + }, + "npm-bundled": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "optional": true + }, + "npm-packlist": { + "version": "1.1.10", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "ignore-walk": "3.0.1", + "npm-bundled": "1.0.3" + } + }, + "npmlog": { + "version": "4.1.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "are-we-there-yet": "1.1.4", + "console-control-strings": "1.1.0", + "gauge": "2.7.4", + "set-blocking": "2.0.0" + } + }, + "number-is-nan": { + "version": "1.0.1", + "bundled": true, + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "once": { + "version": "1.4.0", + "bundled": true, + "dev": true, + "requires": { + "wrappy": "1.0.2" + } + }, + "os-homedir": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "os-tmpdir": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "osenv": { + "version": "0.1.5", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "os-homedir": "1.0.2", + "os-tmpdir": "1.0.2" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "process-nextick-args": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "rc": { + "version": "1.2.7", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "deep-extend": "0.5.1", + "ini": "1.3.5", + "minimist": "1.2.0", + "strip-json-comments": "2.0.1" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "bundled": true, + "dev": true, + "optional": true + } + } + }, + "readable-stream": { + "version": "2.3.6", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "2.0.0", + "safe-buffer": "5.1.1", + "string_decoder": "1.1.1", + "util-deprecate": "1.0.2" + } + }, + "rimraf": { + "version": "2.6.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "glob": "7.1.2" + } + }, + "safe-buffer": { + "version": "5.1.1", + "bundled": true, + "dev": true + }, + "safer-buffer": { + "version": "2.1.2", + "bundled": true, + "dev": true, + "optional": true + }, + "sax": { + "version": "1.2.4", + "bundled": true, + "dev": true, + "optional": true + }, + "semver": { + "version": "5.5.0", + "bundled": true, + "dev": true, + "optional": true + }, + "set-blocking": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "signal-exit": { + "version": "3.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "string-width": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + } + }, + "strip-json-comments": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "tar": { + "version": "4.4.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "chownr": "1.0.1", + "fs-minipass": "1.2.5", + "minipass": "2.2.4", + "minizlib": "1.1.0", + "mkdirp": "0.5.1", + "safe-buffer": "5.1.1", + "yallist": "3.0.2" + } + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "wide-align": { + "version": "1.1.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "string-width": "1.0.2" + } + }, + "wrappy": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "yallist": { + "version": "3.0.2", + "bundled": true, + "dev": true + } + } + }, + "fstream": { + "version": "0.1.31", + "resolved": "https://registry.npmjs.org/fstream/-/fstream-0.1.31.tgz", + "integrity": "sha1-czfwWPu7vvqMn1YaKMqwhJICyYg=", + "dev": true, + "requires": { + "graceful-fs": "~3.0.2", + "inherits": "~2.0.0", + "mkdirp": "0.5", + "rimraf": "2" + }, + "dependencies": { + "graceful-fs": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz", + "integrity": "sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg=", + "dev": true, + "requires": { + "natives": "^1.1.0" + } + } + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "get-caller-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", + "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=", + "dev": true + }, + "get-func-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", + "integrity": "sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=", + "dev": true + }, + "get-port": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", + "integrity": "sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw=", + "dev": true + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + } + } + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" } }, "glob-base": { @@ -2569,8 +3352,8 @@ "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", "dev": true, "requires": { - "glob-parent": "2.0.0", - "is-glob": "2.0.1" + "glob-parent": "^2.0.0", + "is-glob": "^2.0.0" }, "dependencies": { "glob-parent": { @@ -2579,7 +3362,7 @@ "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", "dev": true, "requires": { - "is-glob": "2.0.1" + "is-glob": "^2.0.0" } }, "is-extglob": { @@ -2594,7 +3377,7 @@ "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", "dev": true, "requires": { - "is-extglob": "1.0.0" + "is-extglob": "^1.0.0" } } } @@ -2605,8 +3388,8 @@ "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", "dev": true, "requires": { - "is-glob": "3.1.0", - "path-dirname": "1.0.2" + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" } }, "glob-promise": { @@ -2615,52 +3398,65 @@ "integrity": "sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==", "dev": true, "requires": { - "@types/glob": "5.0.35" + "@types/glob": "*" } }, "glob-stream": { - "version": "3.1.18", - "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz", - "integrity": "sha1-kXCl8St5Awb9/lmPMT+PeVT9FDs=", - "dev": true, - "requires": { - "glob": "4.5.3", - "glob2base": "0.0.12", - "minimatch": "2.0.10", - "ordered-read-streams": "0.1.0", - "through2": "0.6.5", - "unique-stream": "1.0.0" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", + "integrity": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=", + "dev": true, + "requires": { + "extend": "^3.0.0", + "glob": "^7.1.1", + "glob-parent": "^3.1.0", + "is-negated-glob": "^1.0.0", + "ordered-read-streams": "^1.0.0", + "pumpify": "^1.3.5", + "readable-stream": "^2.1.5", + "remove-trailing-separator": "^1.0.1", + "to-absolute-glob": "^2.0.0", + "unique-stream": "^2.0.2" }, "dependencies": { - "glob": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", - "integrity": "sha1-xstz0yJsHv7wTePFbQEvAzd+4V8=", + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "2.0.10", - "once": "1.4.0" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "minimatch": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", - "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=", + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "brace-expansion": "1.1.11" + "safe-buffer": "~5.1.0" } }, - "through2": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", - "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", + "to-absolute-glob": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", + "integrity": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=", "dev": true, "requires": { - "readable-stream": "1.0.34", - "xtend": "4.0.1" + "is-absolute": "^1.0.0", + "is-negated-glob": "^1.0.0" } } } @@ -2672,21 +3468,15 @@ "dev": true }, "glob-watcher": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz", - "integrity": "sha1-uVtKjfdLOcgymLDAXJeLTZo7cQs=", - "dev": true, - "requires": { - "gaze": "0.5.2" - } - }, - "glob2base": { - "version": "0.0.12", - "resolved": "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz", - "integrity": "sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY=", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.1.tgz", + "integrity": "sha512-fK92r2COMC199WCyGUblrZKhjra3cyVMDiypDdqg1vsSDmexnbYivK1kNR4QItiNXLKmGlqan469ks67RtNa2g==", "dev": true, "requires": { - "find-index": "0.1.1" + "async-done": "^1.2.0", + "chokidar": "^2.0.0", + "just-debounce": "^1.0.0", + "object.defaults": "^1.1.0" } }, "global-modules": { @@ -2695,9 +3485,9 @@ "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", "dev": true, "requires": { - "global-prefix": "1.0.2", - "is-windows": "1.0.2", - "resolve-dir": "1.0.1" + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" } }, "global-prefix": { @@ -2706,11 +3496,11 @@ "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", "dev": true, "requires": { - "expand-tilde": "2.0.2", - "homedir-polyfill": "1.0.1", - "ini": "1.3.5", - "is-windows": "1.0.2", - "which": "1.3.0" + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" } }, "globby": { @@ -2719,11 +3509,11 @@ "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", "dev": true, "requires": { - "array-union": "1.0.2", - "glob": "7.1.2", - "object-assign": "4.1.1", - "pify": "2.3.0", - "pinkie-promise": "2.0.1" + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" }, "dependencies": { "pify": { @@ -2734,65 +3524,13 @@ } } }, - "globule": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz", - "integrity": "sha1-2cjt3h2nnRJaFRt5UzuXhnY0auU=", - "dev": true, - "requires": { - "glob": "3.1.21", - "lodash": "1.0.2", - "minimatch": "0.2.14" - }, - "dependencies": { - "glob": { - "version": "3.1.21", - "resolved": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz", - "integrity": "sha1-0p4KBV3qUTj00H7UDomC6DwgZs0=", - "dev": true, - "requires": { - "graceful-fs": "1.2.3", - "inherits": "1.0.2", - "minimatch": "0.2.14" - } - }, - "graceful-fs": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz", - "integrity": "sha1-FaSAaldUfLLS2/J/QuiajDRRs2Q=", - "dev": true - }, - "inherits": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz", - "integrity": "sha1-ykMJ2t7mtUzAuNJH6NfHoJdb3Js=", - "dev": true - }, - "lru-cache": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", - "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=", - "dev": true - }, - "minimatch": { - "version": "0.2.14", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", - "integrity": "sha1-x054BXT2PG+aCQ6Q775u9TpqdWo=", - "dev": true, - "requires": { - "lru-cache": "2.7.3", - "sigmund": "1.0.1" - } - } - } - }, "glogg": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.1.tgz", "integrity": "sha512-ynYqXLoluBKf9XGR1gA59yEJisIL7YHEH4xr3ZziHB5/yl4qWfaK8Js9jGe6gBGCSCKVqiyO30WnRZADvemUNw==", "dev": true, "requires": { - "sparkles": "1.0.0" + "sparkles": "^1.0.0" } }, "graceful-fs": { @@ -2807,31 +3545,139 @@ "dev": true }, "gulp": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz", - "integrity": "sha1-VxzkWSjdQK9lFPxAEYZgFsE4RbQ=", - "dev": true, - "requires": { - "archy": "1.0.0", - "chalk": "1.1.3", - "deprecated": "0.0.1", - "gulp-util": "3.0.8", - "interpret": "1.1.0", - "liftoff": "2.5.0", - "minimist": "1.2.0", - "orchestrator": "0.3.8", - "pretty-hrtime": "1.0.3", - "semver": "4.3.6", - "tildify": "1.2.0", - "v8flags": "2.1.1", - "vinyl-fs": "0.3.14" + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.0.tgz", + "integrity": "sha1-lXZsYB2t5Kd+0+eyttwDiBtZY2Y=", + "dev": true, + "requires": { + "glob-watcher": "^5.0.0", + "gulp-cli": "^2.0.0", + "undertaker": "^1.0.0", + "vinyl-fs": "^3.0.0" }, "dependencies": { - "semver": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", - "integrity": "sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto=", + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", + "dev": true + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "gulp-cli": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.0.1.tgz", + "integrity": "sha512-RxujJJdN8/O6IW2nPugl7YazhmrIEjmiVfPKrWt68r71UCaLKS71Hp0gpKT+F6qOUFtr7KqtifDKaAJPRVvMYQ==", + "dev": true, + "requires": { + "ansi-colors": "^1.0.1", + "archy": "^1.0.0", + "array-sort": "^1.0.0", + "color-support": "^1.1.3", + "concat-stream": "^1.6.0", + "copy-props": "^2.0.1", + "fancy-log": "^1.3.2", + "gulplog": "^1.0.0", + "interpret": "^1.1.0", + "isobject": "^3.0.1", + "liftoff": "^2.5.0", + "matchdep": "^2.0.0", + "mute-stdout": "^1.0.0", + "pretty-hrtime": "^1.0.0", + "replace-homedir": "^1.0.0", + "semver-greatest-satisfied-range": "^1.1.0", + "v8flags": "^3.0.1", + "yargs": "^7.1.0" + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "dev": true, + "requires": { + "lcid": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", "dev": true + }, + "yargs": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz", + "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", + "dev": true, + "requires": { + "camelcase": "^3.0.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^1.0.2", + "which-module": "^1.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^5.0.0" + } + }, + "yargs-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", + "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", + "dev": true, + "requires": { + "camelcase": "^3.0.0" + } } } }, @@ -2841,9 +3687,9 @@ "integrity": "sha1-AMOQuSigeZslGsz2MaoJ4BzGKZw=", "dev": true, "requires": { - "deep-assign": "1.0.0", - "stat-mode": "0.2.2", - "through2": "2.0.3" + "deep-assign": "^1.0.0", + "stat-mode": "^0.2.0", + "through2": "^2.0.0" } }, "gulp-filter": { @@ -2852,9 +3698,9 @@ "integrity": "sha1-oF4Rr/sHz33PQafeHLe2OsN4PnM=", "dev": true, "requires": { - "multimatch": "2.1.0", - "plugin-error": "0.1.2", - "streamfilter": "1.0.7" + "multimatch": "^2.0.0", + "plugin-error": "^0.1.2", + "streamfilter": "^1.0.5" } }, "gulp-gunzip": { @@ -2863,34 +3709,18 @@ "integrity": "sha1-FbdBFF6Dqcb1CIYkG1fMWHHxUak=", "dev": true, "requires": { - "through2": "0.6.5", - "vinyl": "0.4.6" + "through2": "~0.6.5", + "vinyl": "~0.4.6" }, - "dependencies": { - "clone": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz", - "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8=", - "dev": true - }, + "dependencies": { "through2": { "version": "0.6.5", "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", "dev": true, "requires": { - "readable-stream": "1.0.34", - "xtend": "4.0.1" - } - }, - "vinyl": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", - "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=", - "dev": true, - "requires": { - "clone": "0.2.0", - "clone-stats": "0.0.1" + "readable-stream": ">=1.0.33-1 <1.1.0-0", + "xtend": ">=4.0.0 <4.1.0-0" } } } @@ -2901,12 +3731,12 @@ "integrity": "sha512-NIjXZLqqcw9DXIEBcfm0sP1AUDlUJJeaK9EGCH2s6lSwo5NK/cEat0Vm7XelOkxZnWl0O5Za+aM6E4jyxWxTlw==", "dev": true, "requires": { - "dargs": "5.1.0", - "execa": "0.8.0", - "mocha": "4.1.0", - "npm-run-path": "2.0.2", - "plugin-error": "0.1.2", - "through2": "2.0.3" + "dargs": "^5.1.0", + "execa": "^0.8.0", + "mocha": "^4.1.0", + "npm-run-path": "^2.0.2", + "plugin-error": "^0.1.2", + "through2": "^2.0.3" }, "dependencies": { "execa": { @@ -2915,13 +3745,13 @@ "integrity": "sha1-2NdrvBtVIX7RkP1t1J08d07PyNo=", "dev": true, "requires": { - "cross-spawn": "5.1.0", - "get-stream": "3.0.0", - "is-stream": "1.1.0", - "npm-run-path": "2.0.2", - "p-finally": "1.0.0", - "signal-exit": "3.0.2", - "strip-eof": "1.0.0" + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" } }, "mocha": { @@ -2948,28 +3778,28 @@ "integrity": "sha512-rKC3+DyXWgK0ZLKwmRsrkyHVZAjNkfzeehuFWdGGcqGDTZFH73+RH6S/RDAAxl9GusSjZSUWYLmT9N5pzXFOXQ==", "dev": true, "requires": { - "has-flag": "2.0.0" + "has-flag": "^2.0.0" } } } }, - "gulp-remote-src": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/gulp-remote-src/-/gulp-remote-src-0.4.3.tgz", - "integrity": "sha1-VyjP1kNDPdSEXd7wlp8PlxoqtKE=", + "gulp-remote-src-vscode": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/gulp-remote-src-vscode/-/gulp-remote-src-vscode-0.5.0.tgz", + "integrity": "sha512-/9vtSk9eI9DEWCqzGieglPqmx0WUQ9pwPHyHFpKmfxqdgqGJC2l0vFMdYs54hLdDsMDEZFLDL2J4ikjc4hQ5HQ==", "dev": true, "requires": { - "event-stream": "3.3.4", - "node.extend": "1.1.6", - "request": "2.79.0", - "through2": "2.0.3", - "vinyl": "2.0.2" + "event-stream": "^3.3.4", + "node.extend": "^1.1.2", + "request": "^2.79.0", + "through2": "^2.0.3", + "vinyl": "^2.0.1" }, "dependencies": { - "caseless": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", - "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=", + "clone": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz", + "integrity": "sha1-0hfR6WERjjrJpLi7oyhVU79kfNs=", "dev": true }, "clone-stats": { @@ -2978,111 +3808,46 @@ "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", "dev": true }, - "har-validator": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", - "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=", - "dev": true, - "requires": { - "chalk": "1.1.3", - "commander": "2.11.0", - "is-my-json-valid": "2.17.2", - "pinkie-promise": "2.0.1" - } - }, - "qs": { - "version": "6.3.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz", - "integrity": "sha1-51vV9uJoEioqDgvaYwslUMFmUCw=", - "dev": true - }, - "replace-ext": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", - "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", - "dev": true - }, - "request": { - "version": "2.79.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.79.0.tgz", - "integrity": "sha1-Tf5b9r6LjNw3/Pk+BLZVd3InEN4=", - "dev": true, - "requires": { - "aws-sign2": "0.6.0", - "aws4": "1.7.0", - "caseless": "0.11.0", - "combined-stream": "1.0.6", - "extend": "3.0.1", - "forever-agent": "0.6.1", - "form-data": "2.1.4", - "har-validator": "2.0.6", - "hawk": "3.1.3", - "http-signature": "1.1.1", - "is-typedarray": "1.0.0", - "isstream": "0.1.2", - "json-stringify-safe": "5.0.1", - "mime-types": "2.1.18", - "oauth-sign": "0.8.2", - "qs": "6.3.2", - "stringstream": "0.0.5", - "tough-cookie": "2.3.4", - "tunnel-agent": "0.4.3", - "uuid": "3.2.1" - } - }, - "tunnel-agent": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", - "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=", - "dev": true - }, "vinyl": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.0.2.tgz", - "integrity": "sha1-CjcT2NTpIhxY8QyhbAEWyeJe2nw=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.1.0.tgz", + "integrity": "sha1-Ah+cLPlR1rk5lDyJ617lrdT9kkw=", "dev": true, "requires": { - "clone": "1.0.4", - "clone-buffer": "1.0.0", - "clone-stats": "1.0.0", - "cloneable-readable": "1.1.2", - "is-stream": "1.1.0", - "remove-trailing-separator": "1.1.0", - "replace-ext": "1.0.0" + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" } } } }, - "gulp-sequence": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/gulp-sequence/-/gulp-sequence-1.0.0.tgz", - "integrity": "sha512-c+p+EcyBl1UCpbfFA/vUD6MuC7uxoY6Y4g2lq9lLtzOHh9o1wijAQ4o0TIRQ14C7cG6zR6Zi+bpA0cW78CFt6g==", - "dev": true, - "requires": { - "thunks": "4.9.2" - } - }, "gulp-sourcemaps": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz", "integrity": "sha1-uG/zSdgBzrVuHZ59x7vLS33uYAw=", "dev": true, "requires": { - "convert-source-map": "1.5.1", - "graceful-fs": "4.1.11", - "strip-bom": "2.0.0", - "through2": "2.0.3", - "vinyl": "1.2.0" + "convert-source-map": "^1.1.1", + "graceful-fs": "^4.1.2", + "strip-bom": "^2.0.0", + "through2": "^2.0.0", + "vinyl": "^1.0.0" }, "dependencies": { - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true, - "requires": { - "is-utf8": "0.2.1" - } + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "dev": true + }, + "replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", + "dev": true }, "vinyl": { "version": "1.2.0", @@ -3090,8 +3855,8 @@ "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", "dev": true, "requires": { - "clone": "1.0.4", - "clone-stats": "0.0.1", + "clone": "^1.0.0", + "clone-stats": "^0.0.1", "replace-ext": "0.0.1" } } @@ -3103,10 +3868,10 @@ "integrity": "sha1-wWUyBzLRks5W/ZQnH/oSMjS/KuA=", "dev": true, "requires": { - "event-stream": "3.3.4", - "mkdirp": "0.5.1", - "queue": "3.1.0", - "vinyl-fs": "2.4.4" + "event-stream": "^3.3.1", + "mkdirp": "^0.5.1", + "queue": "^3.1.0", + "vinyl-fs": "^2.4.3" }, "dependencies": { "arr-diff": { @@ -3115,7 +3880,7 @@ "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", "dev": true, "requires": { - "arr-flatten": "1.1.0" + "arr-flatten": "^1.0.1" } }, "array-unique": { @@ -3130,18 +3895,24 @@ "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", "dev": true, "requires": { - "expand-range": "1.8.2", - "preserve": "0.2.0", - "repeat-element": "1.1.2" + "expand-range": "^1.8.1", + "preserve": "^0.2.0", + "repeat-element": "^1.1.2" } }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "dev": true + }, "expand-brackets": { "version": "0.1.5", "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", "dev": true, "requires": { - "is-posix-bracket": "0.1.1" + "is-posix-bracket": "^0.1.0" } }, "extglob": { @@ -3150,7 +3921,7 @@ "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", "dev": true, "requires": { - "is-extglob": "1.0.0" + "is-extglob": "^1.0.0" } }, "glob": { @@ -3159,11 +3930,11 @@ "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", "dev": true, "requires": { - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" } }, "glob-stream": { @@ -3172,14 +3943,14 @@ "integrity": "sha1-pVZlqajM3EGRWofHAeMtTgFvrSI=", "dev": true, "requires": { - "extend": "3.0.1", - "glob": "5.0.15", - "glob-parent": "3.1.0", - "micromatch": "2.3.11", - "ordered-read-streams": "0.3.0", - "through2": "0.6.5", - "to-absolute-glob": "0.1.1", - "unique-stream": "2.2.1" + "extend": "^3.0.0", + "glob": "^5.0.3", + "glob-parent": "^3.0.0", + "micromatch": "^2.3.7", + "ordered-read-streams": "^0.3.0", + "through2": "^0.6.0", + "to-absolute-glob": "^0.1.1", + "unique-stream": "^2.0.2" }, "dependencies": { "isarray": { @@ -3194,10 +3965,10 @@ "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", "isarray": "0.0.1", - "string_decoder": "0.10.31" + "string_decoder": "~0.10.x" } }, "string_decoder": { @@ -3212,8 +3983,8 @@ "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", "dev": true, "requires": { - "readable-stream": "1.0.34", - "xtend": "4.0.1" + "readable-stream": ">=1.0.33-1 <1.1.0-0", + "xtend": ">=4.0.0 <4.1.0-0" } } } @@ -3230,7 +4001,7 @@ "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", "dev": true, "requires": { - "is-extglob": "1.0.0" + "is-extglob": "^1.0.0" } }, "isarray": { @@ -3245,7 +4016,7 @@ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } }, "micromatch": { @@ -3254,19 +4025,19 @@ "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", "dev": true, "requires": { - "arr-diff": "2.0.0", - "array-unique": "0.2.1", - "braces": "1.8.5", - "expand-brackets": "0.1.5", - "extglob": "0.3.2", - "filename-regex": "2.0.1", - "is-extglob": "1.0.0", - "is-glob": "2.0.1", - "kind-of": "3.2.2", - "normalize-path": "2.1.1", - "object.omit": "2.0.1", - "parse-glob": "3.0.4", - "regex-cache": "0.4.4" + "arr-diff": "^2.0.0", + "array-unique": "^0.2.1", + "braces": "^1.8.2", + "expand-brackets": "^0.1.4", + "extglob": "^0.3.1", + "filename-regex": "^2.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.1", + "kind-of": "^3.0.2", + "normalize-path": "^2.0.1", + "object.omit": "^2.0.0", + "parse-glob": "^3.0.4", + "regex-cache": "^0.4.2" } }, "ordered-read-streams": { @@ -3275,8 +4046,8 @@ "integrity": "sha1-cTfmmzKYuzQiR6G77jiByA4v14s=", "dev": true, "requires": { - "is-stream": "1.1.0", - "readable-stream": "2.3.6" + "is-stream": "^1.0.1", + "readable-stream": "^2.0.1" } }, "readable-stream": { @@ -3285,41 +4056,28 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, + "replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", + "dev": true + }, "string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" - } - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true, - "requires": { - "is-utf8": "0.2.1" - } - }, - "unique-stream": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.2.1.tgz", - "integrity": "sha1-WqADz76Uxf+GbE59ZouxxNuts2k=", - "dev": true, - "requires": { - "json-stable-stringify": "1.0.1", - "through2-filter": "2.0.0" + "safe-buffer": "~5.1.0" } }, "vinyl": { @@ -3328,8 +4086,8 @@ "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", "dev": true, "requires": { - "clone": "1.0.4", - "clone-stats": "0.0.1", + "clone": "^1.0.0", + "clone-stats": "^0.0.1", "replace-ext": "0.0.1" } }, @@ -3339,23 +4097,23 @@ "integrity": "sha1-vm/zJwy1Xf19MGNkDegfJddTIjk=", "dev": true, "requires": { - "duplexify": "3.5.4", - "glob-stream": "5.3.5", - "graceful-fs": "4.1.11", + "duplexify": "^3.2.0", + "glob-stream": "^5.3.2", + "graceful-fs": "^4.0.0", "gulp-sourcemaps": "1.6.0", - "is-valid-glob": "0.3.0", - "lazystream": "1.0.0", - "lodash.isequal": "4.5.0", - "merge-stream": "1.0.1", - "mkdirp": "0.5.1", - "object-assign": "4.1.1", - "readable-stream": "2.3.6", - "strip-bom": "2.0.0", - "strip-bom-stream": "1.0.0", - "through2": "2.0.3", - "through2-filter": "2.0.0", - "vali-date": "1.0.0", - "vinyl": "1.2.0" + "is-valid-glob": "^0.3.0", + "lazystream": "^1.0.0", + "lodash.isequal": "^4.0.0", + "merge-stream": "^1.0.0", + "mkdirp": "^0.5.0", + "object-assign": "^4.0.0", + "readable-stream": "^2.0.4", + "strip-bom": "^2.0.0", + "strip-bom-stream": "^1.0.0", + "through2": "^2.0.0", + "through2-filter": "^2.0.0", + "vali-date": "^1.0.0", + "vinyl": "^1.0.0" } } } @@ -3369,9 +4127,9 @@ "@types/fancy-log": "1.3.0", "chalk": "2.3.1", "fancy-log": "1.3.2", - "map-stream": "0.0.7", + "map-stream": "~0.0.7", "plugin-error": "1.0.1", - "through": "2.3.8" + "through": "~2.3.8" }, "dependencies": { "ansi-styles": { @@ -3380,7 +4138,7 @@ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "color-convert": "1.9.1" + "color-convert": "^1.9.0" } }, "chalk": { @@ -3389,9 +4147,9 @@ "integrity": "sha512-QUU4ofkDoMIVO7hcx1iPTISs88wsO8jA92RQIm4JAwZvFGGAV2hSAA1NX7oVj2Ej2Q6NDTcRDjPTFrMCRZoJ6g==", "dev": true, "requires": { - "ansi-styles": "3.2.1", - "escape-string-regexp": "1.0.5", - "supports-color": "5.3.0" + "ansi-styles": "^3.2.0", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.2.0" } }, "has-flag": { @@ -3406,10 +4164,10 @@ "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", "dev": true, "requires": { - "ansi-colors": "1.1.0", - "arr-diff": "4.0.0", - "arr-union": "3.1.0", - "extend-shallow": "3.0.2" + "ansi-colors": "^1.0.1", + "arr-diff": "^4.0.0", + "arr-union": "^3.1.0", + "extend-shallow": "^3.0.2" } }, "supports-color": { @@ -3418,55 +4176,46 @@ "integrity": "sha512-0aP01LLIskjKs3lq52EC0aGBAJhLq7B2Rd8HC/DR/PtNNpcLilNmHC12O+hu0usQpo7wtHNRqtrhBwtDb0+dNg==", "dev": true, "requires": { - "has-flag": "3.0.0" + "has-flag": "^3.0.0" } } } }, "gulp-untar": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/gulp-untar/-/gulp-untar-0.0.6.tgz", - "integrity": "sha1-1r3v3n6ajgVMnxYjhaB4LEvnQAA=", - "dev": true, - "requires": { - "event-stream": "3.3.4", - "gulp-util": "3.0.8", - "streamifier": "0.1.1", - "tar": "2.2.1", - "through2": "2.0.3" - } - }, - "gulp-util": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz", - "integrity": "sha1-AFTh50RQLifATBh8PsxQXdVLu08=", + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/gulp-untar/-/gulp-untar-0.0.7.tgz", + "integrity": "sha512-0QfbCH2a1k2qkTLWPqTX+QO4qNsHn3kC546YhAP3/n0h+nvtyGITDuDrYBMDZeW4WnFijmkOvBWa5HshTic1tw==", "dev": true, "requires": { - "array-differ": "1.0.0", - "array-uniq": "1.0.3", - "beeper": "1.1.1", - "chalk": "1.1.3", - "dateformat": "2.2.0", - "fancy-log": "1.3.2", - "gulplog": "1.0.0", - "has-gulplog": "0.1.0", - "lodash._reescape": "3.0.0", - "lodash._reevaluate": "3.0.0", - "lodash._reinterpolate": "3.0.0", - "lodash.template": "3.6.2", - "minimist": "1.2.0", - "multipipe": "0.1.2", - "object-assign": "3.0.0", - "replace-ext": "0.0.1", - "through2": "2.0.3", - "vinyl": "0.5.3" + "event-stream": "~3.3.4", + "streamifier": "~0.1.1", + "tar": "^2.2.1", + "through2": "~2.0.3", + "vinyl": "^1.2.0" }, "dependencies": { - "object-assign": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", - "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=", + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "dev": true + }, + "replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", "dev": true + }, + "vinyl": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz", + "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", + "dev": true, + "requires": { + "clone": "^1.0.0", + "clone-stats": "^0.0.1", + "replace-ext": "0.0.1" + } } } }, @@ -3476,13 +4225,13 @@ "integrity": "sha1-JOQGhdwFtxSZlSRQmeBZAmO+ja0=", "dev": true, "requires": { - "event-stream": "3.3.4", - "queue": "4.4.2", - "through2": "2.0.3", - "vinyl": "2.1.0", - "vinyl-fs": "2.4.4", - "yauzl": "2.9.1", - "yazl": "2.4.3" + "event-stream": "^3.3.1", + "queue": "^4.2.1", + "through2": "^2.0.3", + "vinyl": "^2.0.2", + "vinyl-fs": "^2.0.0", + "yauzl": "^2.2.1", + "yazl": "^2.2.1" }, "dependencies": { "arr-diff": { @@ -3491,7 +4240,7 @@ "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", "dev": true, "requires": { - "arr-flatten": "1.1.0" + "arr-flatten": "^1.0.1" } }, "array-unique": { @@ -3506,15 +4255,15 @@ "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", "dev": true, "requires": { - "expand-range": "1.8.2", - "preserve": "0.2.0", - "repeat-element": "1.1.2" + "expand-range": "^1.8.1", + "preserve": "^0.2.0", + "repeat-element": "^1.1.2" } }, "clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz", + "integrity": "sha1-0hfR6WERjjrJpLi7oyhVU79kfNs=", "dev": true }, "clone-stats": { @@ -3529,7 +4278,7 @@ "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", "dev": true, "requires": { - "is-posix-bracket": "0.1.1" + "is-posix-bracket": "^0.1.0" } }, "extglob": { @@ -3538,7 +4287,7 @@ "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", "dev": true, "requires": { - "is-extglob": "1.0.0" + "is-extglob": "^1.0.0" } }, "glob": { @@ -3547,11 +4296,11 @@ "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", "dev": true, "requires": { - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" } }, "glob-stream": { @@ -3560,14 +4309,14 @@ "integrity": "sha1-pVZlqajM3EGRWofHAeMtTgFvrSI=", "dev": true, "requires": { - "extend": "3.0.1", - "glob": "5.0.15", - "glob-parent": "3.1.0", - "micromatch": "2.3.11", - "ordered-read-streams": "0.3.0", - "through2": "0.6.5", - "to-absolute-glob": "0.1.1", - "unique-stream": "2.2.1" + "extend": "^3.0.0", + "glob": "^5.0.3", + "glob-parent": "^3.0.0", + "micromatch": "^2.3.7", + "ordered-read-streams": "^0.3.0", + "through2": "^0.6.0", + "to-absolute-glob": "^0.1.1", + "unique-stream": "^2.0.2" }, "dependencies": { "isarray": { @@ -3582,10 +4331,10 @@ "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", "isarray": "0.0.1", - "string_decoder": "0.10.31" + "string_decoder": "~0.10.x" } }, "string_decoder": { @@ -3600,8 +4349,8 @@ "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", "dev": true, "requires": { - "readable-stream": "1.0.34", - "xtend": "4.0.1" + "readable-stream": ">=1.0.33-1 <1.1.0-0", + "xtend": ">=4.0.0 <4.1.0-0" } } } @@ -3618,7 +4367,7 @@ "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", "dev": true, "requires": { - "is-extglob": "1.0.0" + "is-extglob": "^1.0.0" } }, "isarray": { @@ -3633,7 +4382,7 @@ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } }, "micromatch": { @@ -3642,19 +4391,19 @@ "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", "dev": true, "requires": { - "arr-diff": "2.0.0", - "array-unique": "0.2.1", - "braces": "1.8.5", - "expand-brackets": "0.1.5", - "extglob": "0.3.2", - "filename-regex": "2.0.1", - "is-extglob": "1.0.0", - "is-glob": "2.0.1", - "kind-of": "3.2.2", - "normalize-path": "2.1.1", - "object.omit": "2.0.1", - "parse-glob": "3.0.4", - "regex-cache": "0.4.4" + "arr-diff": "^2.0.0", + "array-unique": "^0.2.1", + "braces": "^1.8.2", + "expand-brackets": "^0.1.4", + "extglob": "^0.3.1", + "filename-regex": "^2.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.1", + "kind-of": "^3.0.2", + "normalize-path": "^2.0.1", + "object.omit": "^2.0.0", + "parse-glob": "^3.0.4", + "regex-cache": "^0.4.2" } }, "ordered-read-streams": { @@ -3663,8 +4412,8 @@ "integrity": "sha1-cTfmmzKYuzQiR6G77jiByA4v14s=", "dev": true, "requires": { - "is-stream": "1.1.0", - "readable-stream": "2.3.6" + "is-stream": "^1.0.1", + "readable-stream": "^2.0.1" } }, "queue": { @@ -3673,7 +4422,7 @@ "integrity": "sha512-fSMRXbwhMwipcDZ08enW2vl+YDmAmhcNcr43sCJL8DIg+CFOsoRLG23ctxA+fwNk1w55SePSiS7oqQQSgQoVJQ==", "dev": true, "requires": { - "inherits": "2.0.3" + "inherits": "~2.0.0" } }, "readable-stream": { @@ -3682,47 +4431,22 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "replace-ext": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", - "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", - "dev": true - }, "string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" - } - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true, - "requires": { - "is-utf8": "0.2.1" - } - }, - "unique-stream": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.2.1.tgz", - "integrity": "sha1-WqADz76Uxf+GbE59ZouxxNuts2k=", - "dev": true, - "requires": { - "json-stable-stringify": "1.0.1", - "through2-filter": "2.0.0" + "safe-buffer": "~5.1.0" } }, "vinyl": { @@ -3731,12 +4455,12 @@ "integrity": "sha1-Ah+cLPlR1rk5lDyJ617lrdT9kkw=", "dev": true, "requires": { - "clone": "2.1.2", - "clone-buffer": "1.0.0", - "clone-stats": "1.0.0", - "cloneable-readable": "1.1.2", - "remove-trailing-separator": "1.1.0", - "replace-ext": "1.0.0" + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" } }, "vinyl-fs": { @@ -3745,23 +4469,23 @@ "integrity": "sha1-vm/zJwy1Xf19MGNkDegfJddTIjk=", "dev": true, "requires": { - "duplexify": "3.5.4", - "glob-stream": "5.3.5", - "graceful-fs": "4.1.11", + "duplexify": "^3.2.0", + "glob-stream": "^5.3.2", + "graceful-fs": "^4.0.0", "gulp-sourcemaps": "1.6.0", - "is-valid-glob": "0.3.0", - "lazystream": "1.0.0", - "lodash.isequal": "4.5.0", - "merge-stream": "1.0.1", - "mkdirp": "0.5.1", - "object-assign": "4.1.1", - "readable-stream": "2.3.6", - "strip-bom": "2.0.0", - "strip-bom-stream": "1.0.0", - "through2": "2.0.3", - "through2-filter": "2.0.0", - "vali-date": "1.0.0", - "vinyl": "1.2.0" + "is-valid-glob": "^0.3.0", + "lazystream": "^1.0.0", + "lodash.isequal": "^4.0.0", + "merge-stream": "^1.0.0", + "mkdirp": "^0.5.0", + "object-assign": "^4.0.0", + "readable-stream": "^2.0.4", + "strip-bom": "^2.0.0", + "strip-bom-stream": "^1.0.0", + "through2": "^2.0.0", + "through2-filter": "^2.0.0", + "vali-date": "^1.0.0", + "vinyl": "^1.0.0" }, "dependencies": { "clone": { @@ -3788,8 +4512,8 @@ "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", "dev": true, "requires": { - "clone": "1.0.4", - "clone-stats": "0.0.1", + "clone": "^1.0.0", + "clone-stats": "^0.0.1", "replace-ext": "0.0.1" } } @@ -3803,7 +4527,7 @@ "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=", "dev": true, "requires": { - "glogg": "1.0.1" + "glogg": "^1.0.0" } }, "handlebars": { @@ -3812,10 +4536,10 @@ "integrity": "sha1-Ywo13+ApS8KB7a5v/F0yn8eYLcw=", "dev": true, "requires": { - "async": "1.5.2", - "optimist": "0.6.1", - "source-map": "0.4.4", - "uglify-js": "2.8.29" + "async": "^1.4.0", + "optimist": "^0.6.1", + "source-map": "^0.4.4", + "uglify-js": "^2.6" }, "dependencies": { "source-map": { @@ -3824,25 +4548,25 @@ "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", "dev": true, "requires": { - "amdefine": "1.0.1" + "amdefine": ">=0.0.4" } } } }, "har-schema": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz", - "integrity": "sha1-0mMTX0MwfALGAq/I/pWXDAFRNp4=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", "dev": true }, "har-validator": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz", - "integrity": "sha1-M0gdDxu/9gDdID11gSpqX7oALio=", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", + "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", "dev": true, "requires": { - "ajv": "4.11.8", - "har-schema": "1.0.5" + "ajv": "^5.1.0", + "har-schema": "^2.0.0" } }, "has": { @@ -3851,7 +4575,7 @@ "integrity": "sha1-hGFzP1OLCDfJNh45qauelwTcLyg=", "dev": true, "requires": { - "function-bind": "1.1.1" + "function-bind": "^1.0.2" } }, "has-ansi": { @@ -3860,7 +4584,7 @@ "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", "dev": true, "requires": { - "ansi-regex": "2.1.1" + "ansi-regex": "^2.0.0" }, "dependencies": { "ansi-regex": { @@ -3877,14 +4601,11 @@ "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=", "dev": true }, - "has-gulplog": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", - "integrity": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=", - "dev": true, - "requires": { - "sparkles": "1.0.0" - } + "has-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", + "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", + "dev": true }, "has-value": { "version": "1.0.0", @@ -3892,9 +4613,9 @@ "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", "dev": true, "requires": { - "get-value": "2.0.6", - "has-values": "1.0.0", - "isobject": "3.0.1" + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" } }, "has-values": { @@ -3903,8 +4624,8 @@ "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", "dev": true, "requires": { - "is-number": "3.0.0", - "kind-of": "4.0.0" + "is-number": "^3.0.0", + "kind-of": "^4.0.0" }, "dependencies": { "kind-of": { @@ -3913,42 +4634,24 @@ "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", "dev": true, "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } }, - "hawk": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", - "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", - "dev": true, - "requires": { - "boom": "2.10.1", - "cryptiles": "2.0.5", - "hoek": "2.16.3", - "sntp": "1.0.9" - } - }, "he": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz", "integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0=", "dev": true }, - "hoek": { - "version": "2.16.3", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", - "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=", - "dev": true - }, "homedir-polyfill": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz", "integrity": "sha1-TCu8inWJmP7r9e1oWA921GdotLw=", "dev": true, "requires": { - "parse-passwd": "1.0.0" + "parse-passwd": "^1.0.0" } }, "hosted-git-info": { @@ -3963,12 +4666,12 @@ "integrity": "sha1-G9+HrMoPP55T+k/M6w9LTLsAszg=", "dev": true, "requires": { - "domelementtype": "1.3.0", - "domhandler": "2.4.1", - "domutils": "1.5.1", - "entities": "1.1.1", - "inherits": "2.0.3", - "readable-stream": "2.3.6" + "domelementtype": "^1.3.0", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^2.0.2" }, "dependencies": { "isarray": { @@ -3983,13 +4686,13 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -3998,7 +4701,7 @@ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "~5.1.0" } } } @@ -4009,10 +4712,10 @@ "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", "dev": true, "requires": { - "depd": "1.1.2", + "depd": "~1.1.2", "inherits": "2.0.3", "setprototypeof": "1.1.0", - "statuses": "1.5.0" + "statuses": ">= 1.4.0 < 2" } }, "http-proxy-agent": { @@ -4020,28 +4723,17 @@ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz", "integrity": "sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==", "requires": { - "agent-base": "4.2.0", + "agent-base": "4", "debug": "3.1.0" } }, - "http-signature": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", - "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", - "dev": true, - "requires": { - "assert-plus": "0.2.0", - "jsprim": "1.4.1", - "sshpk": "1.14.1" - } - }, "https-proxy-agent": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz", "integrity": "sha512-HPCTS1LW51bcyMYbxUIOO4HEOlQ1/1qRaFWcyxvwaqUS9TY88aoEuHUY33kuAh1YhVVaDQhLZsnPd+XNARWZlQ==", "requires": { - "agent-base": "4.2.0", - "debug": "3.1.0" + "agent-base": "^4.1.0", + "debug": "^3.1.0" } }, "iconv-lite": { @@ -4055,8 +4747,8 @@ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "requires": { - "once": "1.4.0", - "wrappy": "1.0.2" + "once": "^1.3.0", + "wrappy": "1" } }, "inherits": { @@ -4094,8 +4786,8 @@ "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", "dev": true, "requires": { - "is-relative": "1.0.0", - "is-windows": "1.0.2" + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" } }, "is-accessor-descriptor": { @@ -4104,7 +4796,7 @@ "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "dev": true, "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -4113,7 +4805,7 @@ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -4124,6 +4816,15 @@ "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", "dev": true }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, "is-buffer": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", @@ -4136,7 +4837,7 @@ "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", "dev": true, "requires": { - "builtin-modules": "1.1.1" + "builtin-modules": "^1.0.0" } }, "is-callable": { @@ -4151,7 +4852,7 @@ "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "dev": true, "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -4160,7 +4861,7 @@ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -4177,9 +4878,9 @@ "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" }, "dependencies": { "kind-of": { @@ -4202,7 +4903,7 @@ "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", "dev": true, "requires": { - "is-primitive": "2.0.0" + "is-primitive": "^2.0.0" } }, "is-extendable": { @@ -4229,35 +4930,22 @@ "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", "dev": true, "requires": { - "is-extglob": "2.1.1" + "is-extglob": "^2.1.0" } }, - "is-my-ip-valid": { + "is-negated-glob": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz", - "integrity": "sha512-gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ==", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", + "integrity": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=", "dev": true }, - "is-my-json-valid": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.2.tgz", - "integrity": "sha512-IBhBslgngMQN8DDSppmgDv7RNrlFotuuDsKcrCP3+HbFaVivIBU7u9oiiErw8sH4ynx3+gOGQ3q2otkgiSi6kg==", - "dev": true, - "requires": { - "generate-function": "2.0.0", - "generate-object-property": "1.2.0", - "is-my-ip-valid": "1.0.0", - "jsonpointer": "4.0.1", - "xtend": "4.0.1" - } - }, "is-number": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "dev": true, "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -4266,7 +4954,7 @@ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -4283,7 +4971,7 @@ "integrity": "sha512-OTiixgpZAT1M4NHgS5IguFp/Vz2VI3U7Goh4/HA1adtwyLtSBrxYlcSYkhpAE07s4fKEcjrFxyvtQBND4vFQyQ==", "dev": true, "requires": { - "is-number": "4.0.0" + "is-number": "^4.0.0" }, "dependencies": { "is-number": { @@ -4306,7 +4994,7 @@ "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", "dev": true, "requires": { - "is-path-inside": "1.0.1" + "is-path-inside": "^1.0.0" } }, "is-path-inside": { @@ -4315,7 +5003,7 @@ "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", "dev": true, "requires": { - "path-is-inside": "1.0.2" + "path-is-inside": "^1.0.1" } }, "is-plain-object": { @@ -4324,7 +5012,7 @@ "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "requires": { - "isobject": "3.0.1" + "isobject": "^3.0.1" } }, "is-posix-bracket": { @@ -4339,19 +5027,13 @@ "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", "dev": true }, - "is-property": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", - "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=", - "dev": true - }, "is-regex": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", "dev": true, "requires": { - "has": "1.0.1" + "has": "^1.0.1" } }, "is-relative": { @@ -4360,7 +5042,7 @@ "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", "dev": true, "requires": { - "is-unc-path": "1.0.0" + "is-unc-path": "^1.0.0" } }, "is-stream": { @@ -4387,7 +5069,7 @@ "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", "dev": true, "requires": { - "unc-path-regex": "0.1.2" + "unc-path-regex": "^0.1.2" } }, "is-utf8": { @@ -4435,117 +5117,36 @@ "istanbul": { "version": "0.4.5", "resolved": "https://registry.npmjs.org/istanbul/-/istanbul-0.4.5.tgz", - "integrity": "sha1-ZcfXPUxNqE1POsMQuRj7C4Azczs=", - "dev": true, - "requires": { - "abbrev": "1.0.9", - "async": "1.5.2", - "escodegen": "1.8.1", - "esprima": "2.7.3", - "glob": "5.0.15", - "handlebars": "4.0.11", - "js-yaml": "3.11.0", - "mkdirp": "0.5.1", - "nopt": "3.0.6", - "once": "1.4.0", - "resolve": "1.1.7", - "supports-color": "3.2.3", - "which": "1.3.0", - "wordwrap": "1.0.0" - }, - "dependencies": { - "glob": { - "version": "5.0.15", - "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", - "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", - "dev": true, - "requires": { - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" - } - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", - "dev": true - }, - "resolve": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", - "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", - "dev": true - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "dev": true, - "requires": { - "has-flag": "1.0.0" - } - } - } - }, - "istanbul-combine": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/istanbul-combine/-/istanbul-combine-0.3.0.tgz", - "integrity": "sha1-VrLV5joiBZi23ErIrVcucV6ZV3M=", - "dev": true, - "requires": { - "glob": "5.0.15", - "istanbul": "0.3.22", - "minimist": "1.2.0", - "q": "1.5.1" - }, - "dependencies": { - "escodegen": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.7.1.tgz", - "integrity": "sha1-MOz89mypjcZ80v0WKr626vqM5vw=", - "dev": true, - "requires": { - "esprima": "1.2.5", - "estraverse": "1.9.3", - "esutils": "2.0.2", - "optionator": "0.5.0", - "source-map": "0.2.0" - }, - "dependencies": { - "esprima": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.5.tgz", - "integrity": "sha1-CZNQL+r2aBODJXVvMPmlH+7sEek=", - "dev": true - } - } - }, - "esprima": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.5.0.tgz", - "integrity": "sha1-84ekb9NEwbGjm6+MIL+0O20AWMw=", - "dev": true - }, - "fast-levenshtein": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.0.7.tgz", - "integrity": "sha1-AXjc3uAjuSkFGTrwlZ6KdjnP3Lk=", - "dev": true - }, + "integrity": "sha1-ZcfXPUxNqE1POsMQuRj7C4Azczs=", + "dev": true, + "requires": { + "abbrev": "1.0.x", + "async": "1.x", + "escodegen": "1.8.x", + "esprima": "2.7.x", + "glob": "^5.0.15", + "handlebars": "^4.0.1", + "js-yaml": "3.x", + "mkdirp": "0.5.x", + "nopt": "3.x", + "once": "1.x", + "resolve": "1.1.x", + "supports-color": "^3.1.0", + "which": "^1.1.1", + "wordwrap": "^1.0.0" + }, + "dependencies": { "glob": { "version": "5.0.15", "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", "dev": true, "requires": { - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" } }, "has-flag": { @@ -4554,83 +5155,19 @@ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", "dev": true }, - "istanbul": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/istanbul/-/istanbul-0.3.22.tgz", - "integrity": "sha1-PhZNhQIf4ZyYXR8OfvDD4i0BLrY=", - "dev": true, - "requires": { - "abbrev": "1.0.9", - "async": "1.5.2", - "escodegen": "1.7.1", - "esprima": "2.5.0", - "fileset": "0.2.1", - "handlebars": "4.0.11", - "js-yaml": "3.11.0", - "mkdirp": "0.5.1", - "nopt": "3.0.6", - "once": "1.4.0", - "resolve": "1.1.7", - "supports-color": "3.2.3", - "which": "1.3.0", - "wordwrap": "1.0.0" - } - }, - "levn": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.2.5.tgz", - "integrity": "sha1-uo0znQykphDjo/FFucr0iAcVUFQ=", - "dev": true, - "requires": { - "prelude-ls": "1.1.2", - "type-check": "0.3.2" - } - }, - "optionator": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.5.0.tgz", - "integrity": "sha1-t1qJlaLUF98ltuTjhi9QqohlE2g=", - "dev": true, - "requires": { - "deep-is": "0.1.3", - "fast-levenshtein": "1.0.7", - "levn": "0.2.5", - "prelude-ls": "1.1.2", - "type-check": "0.3.2", - "wordwrap": "0.0.3" - }, - "dependencies": { - "wordwrap": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", - "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", - "dev": true - } - } - }, "resolve": { "version": "1.1.7", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", "dev": true }, - "source-map": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz", - "integrity": "sha1-2rc/vPwrqBm03gO9b26qSBZLP50=", - "dev": true, - "optional": true, - "requires": { - "amdefine": "1.0.1" - } - }, "supports-color": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "dev": true, "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -4647,8 +5184,8 @@ "integrity": "sha512-saJstZWv7oNeOyBh3+Dx1qWzhW0+e6/8eDzo7p5rDFqxntSztloLtuKu+Ejhtq82jsilwOIZYsCz+lIjthg1Hw==", "dev": true, "requires": { - "argparse": "1.0.10", - "esprima": "4.0.0" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, "dependencies": { "esprima": { @@ -4690,7 +5227,7 @@ "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", "dev": true, "requires": { - "jsonify": "0.0.0" + "jsonify": "~0.0.0" } }, "json-stringify-safe": { @@ -4700,16 +5237,16 @@ "dev": true }, "jsonc-parser": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-1.0.3.tgz", - "integrity": "sha512-hk/69oAeaIzchq/v3lS50PXuzn5O2ynldopMC+SWBql7J2WtdptfB9dy8Y7+Og5rPkTCpn83zTiO8FMcqlXJ/g==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-1.0.0.tgz", + "integrity": "sha1-3cyGSucI5gp6bdNtrqABcvqNknI=" }, "jsonfile": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", "requires": { - "graceful-fs": "4.1.11" + "graceful-fs": "^4.1.6" } }, "jsonify": { @@ -4718,12 +5255,6 @@ "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", "dev": true }, - "jsonpointer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", - "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=", - "dev": true - }, "jsprim": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", @@ -4744,12 +5275,28 @@ } } }, + "just-debounce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.0.0.tgz", + "integrity": "sha1-h/zPrv/AtozRnVX2cilD+SnqNeo=", + "dev": true + }, "kind-of": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", "dev": true }, + "last-run": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", + "integrity": "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=", + "dev": true, + "requires": { + "default-resolution": "^2.0.0", + "es6-weak-map": "^2.0.1" + } + }, "lazy-cache": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", @@ -4763,7 +5310,7 @@ "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=", "dev": true, "requires": { - "readable-stream": "2.3.6" + "readable-stream": "^2.0.5" }, "dependencies": { "isarray": { @@ -4778,13 +5325,13 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -4793,7 +5340,7 @@ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "~5.1.0" } } } @@ -4804,7 +5351,16 @@ "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", "dev": true, "requires": { - "invert-kv": "1.0.0" + "invert-kv": "^1.0.0" + } + }, + "lead": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", + "integrity": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=", + "dev": true, + "requires": { + "flush-write-stream": "^1.0.2" } }, "levn": { @@ -4813,8 +5369,8 @@ "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", "dev": true, "requires": { - "prelude-ls": "1.1.2", - "type-check": "0.3.2" + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" } }, "liftoff": { @@ -4823,14 +5379,14 @@ "integrity": "sha1-IAkpG7Mc6oYbvxCnwVooyvdcMew=", "dev": true, "requires": { - "extend": "3.0.1", - "findup-sync": "2.0.0", - "fined": "1.1.0", - "flagged-respawn": "1.0.0", - "is-plain-object": "2.0.4", - "object.map": "1.0.1", - "rechoir": "0.6.2", - "resolve": "1.7.0" + "extend": "^3.0.0", + "findup-sync": "^2.0.0", + "fined": "^1.0.1", + "flagged-respawn": "^1.0.0", + "is-plain-object": "^2.0.4", + "object.map": "^1.0.0", + "rechoir": "^0.6.2", + "resolve": "^1.1.7" } }, "linkify-it": { @@ -4839,7 +5395,7 @@ "integrity": "sha1-2UpGSPmxwXnWT6lykSaL22zpQ08=", "dev": true, "requires": { - "uc.micro": "1.0.5" + "uc.micro": "^1.0.1" } }, "load-json-file": { @@ -4848,11 +5404,11 @@ "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", "dev": true, "requires": { - "graceful-fs": "4.1.11", - "parse-json": "2.2.0", - "pify": "2.3.0", - "pinkie-promise": "2.0.1", - "strip-bom": "2.0.0" + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" }, "dependencies": { "pify": { @@ -4867,7 +5423,7 @@ "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", "dev": true, "requires": { - "is-utf8": "0.2.1" + "is-utf8": "^0.2.0" } } } @@ -4878,89 +5434,14 @@ "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", "dev": true, "requires": { - "p-locate": "2.0.0", - "path-exists": "3.0.0" + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" } }, "lodash": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz", - "integrity": "sha1-j1dWDIO1n8JwvT1WG2kAQ0MOJVE=", - "dev": true - }, - "lodash._basecopy": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", - "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=", - "dev": true - }, - "lodash._basetostring": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz", - "integrity": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=", - "dev": true - }, - "lodash._basevalues": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz", - "integrity": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=", - "dev": true - }, - "lodash._getnative": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", - "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=", - "dev": true - }, - "lodash._isiterateecall": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", - "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=", - "dev": true - }, - "lodash._reescape": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz", - "integrity": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=", - "dev": true - }, - "lodash._reevaluate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz", - "integrity": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=", - "dev": true - }, - "lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=", - "dev": true - }, - "lodash._root": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz", - "integrity": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=", - "dev": true - }, - "lodash.escape": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz", - "integrity": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=", - "dev": true, - "requires": { - "lodash._root": "3.0.1" - } - }, - "lodash.isarguments": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", - "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=", - "dev": true - }, - "lodash.isarray": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", - "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", "dev": true }, "lodash.isequal": { @@ -4969,50 +5450,6 @@ "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=", "dev": true }, - "lodash.keys": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", - "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", - "dev": true, - "requires": { - "lodash._getnative": "3.9.1", - "lodash.isarguments": "3.1.0", - "lodash.isarray": "3.0.4" - } - }, - "lodash.restparam": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", - "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=", - "dev": true - }, - "lodash.template": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz", - "integrity": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=", - "dev": true, - "requires": { - "lodash._basecopy": "3.0.1", - "lodash._basetostring": "3.0.1", - "lodash._basevalues": "3.0.0", - "lodash._isiterateecall": "3.0.9", - "lodash._reinterpolate": "3.0.0", - "lodash.escape": "3.2.0", - "lodash.keys": "3.1.2", - "lodash.restparam": "3.6.1", - "lodash.templatesettings": "3.1.1" - } - }, - "lodash.templatesettings": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz", - "integrity": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=", - "dev": true, - "requires": { - "lodash._reinterpolate": "3.0.0", - "lodash.escape": "3.2.0" - } - }, "longest": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", @@ -5025,8 +5462,8 @@ "integrity": "sha512-wgeVXhrDwAWnIF/yZARsFnMBtdFXOg1b8RIrhilp+0iDYN4mdQcNZElDZ0e4B64BhaxeQ5zN7PMyvu7we1kPeQ==", "dev": true, "requires": { - "pseudomap": "1.0.2", - "yallist": "2.1.2" + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" } }, "ltcdr": { @@ -5047,7 +5484,7 @@ "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", "dev": true, "requires": { - "kind-of": "6.0.2" + "kind-of": "^6.0.2" } }, "map-cache": { @@ -5068,7 +5505,7 @@ "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", "dev": true, "requires": { - "object-visit": "1.0.1" + "object-visit": "^1.0.0" } }, "markdown-it": { @@ -5077,11 +5514,11 @@ "integrity": "sha512-CzzqSSNkFRUf9vlWvhK1awpJreMRqdCrBvZ8DIoDWTOkESMIF741UPAhuAmbyWmdiFPA6WARNhnu2M6Nrhwa+A==", "dev": true, "requires": { - "argparse": "1.0.10", - "entities": "1.1.1", - "linkify-it": "2.0.3", - "mdurl": "1.0.1", - "uc.micro": "1.0.5" + "argparse": "^1.0.7", + "entities": "~1.1.1", + "linkify-it": "^2.0.0", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" } }, "match-stream": { @@ -5090,10 +5527,28 @@ "integrity": "sha1-mesFAJOzTf+t5CG5rAtBCpz6F88=", "dev": true, "requires": { - "buffers": "0.1.1", - "readable-stream": "1.0.34" + "buffers": "~0.1.1", + "readable-stream": "~1.0.0" + } + }, + "matchdep": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", + "integrity": "sha1-xvNINKDY28OzfCfui7yyfHd1WC4=", + "dev": true, + "requires": { + "findup-sync": "^2.0.0", + "micromatch": "^3.0.4", + "resolve": "^1.4.0", + "stack-trace": "0.0.10" } }, + "math-random": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz", + "integrity": "sha1-izqsWIuKZuSXXjzepn97sylgH6w=", + "dev": true + }, "mdurl": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", @@ -5112,7 +5567,7 @@ "integrity": "sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=", "dev": true, "requires": { - "mimic-fn": "1.2.0" + "mimic-fn": "^1.0.0" } }, "memorystream": { @@ -5127,7 +5582,7 @@ "integrity": "sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=", "dev": true, "requires": { - "readable-stream": "2.3.6" + "readable-stream": "^2.0.1" }, "dependencies": { "isarray": { @@ -5142,13 +5597,13 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -5157,7 +5612,7 @@ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "~5.1.0" } } } @@ -5168,19 +5623,19 @@ "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "dev": true, "requires": { - "arr-diff": "4.0.0", - "array-unique": "0.3.2", - "braces": "2.3.2", - "define-property": "2.0.2", - "extend-shallow": "3.0.2", - "extglob": "2.0.4", - "fragment-cache": "0.2.1", - "kind-of": "6.0.2", - "nanomatch": "1.2.9", - "object.pick": "1.3.0", - "regex-not": "1.0.2", - "snapdragon": "0.8.2", - "to-regex": "3.0.2" + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" } }, "mime": { @@ -5201,7 +5656,7 @@ "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", "dev": true, "requires": { - "mime-db": "1.33.0" + "mime-db": "~1.33.0" } }, "mimic-fn": { @@ -5215,7 +5670,7 @@ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "requires": { - "brace-expansion": "1.1.11" + "brace-expansion": "^1.1.7" } }, "minimist": { @@ -5230,8 +5685,8 @@ "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==", "dev": true, "requires": { - "for-in": "1.0.2", - "is-extendable": "1.0.1" + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" }, "dependencies": { "is-extendable": { @@ -5240,7 +5695,7 @@ "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "dev": true, "requires": { - "is-plain-object": "2.0.4" + "is-plain-object": "^2.0.4" } } } @@ -5261,9 +5716,9 @@ } }, "mocha": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-5.0.5.tgz", - "integrity": "sha512-3MM3UjZ5p8EJrYpG7s+29HAI9G7sTzKEe4+w37Dg0QP7qL4XGsV+Q2xet2cE37AqdgN1OtYQB6Vl98YiPV3PgA==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-5.0.4.tgz", + "integrity": "sha512-nMOpAPFosU1B4Ix1jdhx5e3q7XO55ic5a8cgYvW27CequcEY+BabS0kUVL1Cw1V5PuVHZWeNRWFLmEPexo79VA==", "dev": true, "requires": { "browser-stdout": "1.3.1", @@ -5296,7 +5751,7 @@ "integrity": "sha512-rKC3+DyXWgK0ZLKwmRsrkyHVZAjNkfzeehuFWdGGcqGDTZFH73+RH6S/RDAAxl9GusSjZSUWYLmT9N5pzXFOXQ==", "dev": true, "requires": { - "has-flag": "2.0.0" + "has-flag": "^2.0.0" } } } @@ -5307,9 +5762,9 @@ "integrity": "sha512-vnq0iOYdeP0w7xaWTeQxniy/CJ/uQGI5rHerTB/PVeUm2GNKcy2tJFGikmAw73boJIYsdQ/H5TR09E4QCUib6A==", "dev": true, "requires": { - "chalk": "1.1.3", - "cross-spawn": "5.1.0", - "yargs": "6.6.0" + "chalk": "^1.1.3", + "cross-spawn": "^5.1.0", + "yargs": "^6.5.0" }, "dependencies": { "ansi-regex": { @@ -5330,9 +5785,9 @@ "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", "dev": true, "requires": { - "string-width": "1.0.2", - "strip-ansi": "3.0.1", - "wrap-ansi": "2.1.0" + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" } }, "is-fullwidth-code-point": { @@ -5341,7 +5796,7 @@ "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", "dev": true, "requires": { - "number-is-nan": "1.0.1" + "number-is-nan": "^1.0.0" } }, "os-locale": { @@ -5350,7 +5805,7 @@ "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", "dev": true, "requires": { - "lcid": "1.0.0" + "lcid": "^1.0.0" } }, "string-width": { @@ -5359,9 +5814,9 @@ "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", "dev": true, "requires": { - "code-point-at": "1.1.0", - "is-fullwidth-code-point": "1.0.0", - "strip-ansi": "3.0.1" + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" } }, "strip-ansi": { @@ -5370,7 +5825,7 @@ "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, "requires": { - "ansi-regex": "2.1.1" + "ansi-regex": "^2.0.0" } }, "which-module": { @@ -5385,19 +5840,19 @@ "integrity": "sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg=", "dev": true, "requires": { - "camelcase": "3.0.0", - "cliui": "3.2.0", - "decamelize": "1.2.0", - "get-caller-file": "1.0.2", - "os-locale": "1.4.0", - "read-pkg-up": "1.0.1", - "require-directory": "2.1.1", - "require-main-filename": "1.0.1", - "set-blocking": "2.0.0", - "string-width": "1.0.2", - "which-module": "1.0.0", - "y18n": "3.2.1", - "yargs-parser": "4.2.1" + "camelcase": "^3.0.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^1.0.2", + "which-module": "^1.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^4.2.0" } }, "yargs-parser": { @@ -5406,7 +5861,7 @@ "integrity": "sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw=", "dev": true, "requires": { - "camelcase": "3.0.0" + "camelcase": "^3.0.0" } } } @@ -5417,10 +5872,10 @@ "integrity": "sha1-7e/sDoC+i8oobx4MAN6Nv+vw7JA=", "dev": true, "requires": { - "body-parser": "1.18.2", - "connect": "3.6.6", - "multiparty": "4.1.3", - "underscore": "1.8.3" + "body-parser": "^1.18.1", + "connect": "^3.4.0", + "multiparty": "^4.1.2", + "underscore": "^1.8.3" } }, "ms": { @@ -5434,10 +5889,10 @@ "integrity": "sha1-nHkGoi+0wCkZ4vX3UWG0zb1LKis=", "dev": true, "requires": { - "array-differ": "1.0.0", - "array-union": "1.0.2", - "arrify": "1.0.1", - "minimatch": "3.0.4" + "array-differ": "^1.0.0", + "array-union": "^1.0.1", + "arrify": "^1.0.0", + "minimatch": "^3.0.0" } }, "multiparty": { @@ -5446,17 +5901,14 @@ "integrity": "sha1-PEPH/LGJbhdGBDap3Qtu8WaOT5Q=", "dev": true, "requires": { - "fd-slicer": "1.0.1" + "fd-slicer": "~1.0.1" } }, - "multipipe": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz", - "integrity": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=", - "dev": true, - "requires": { - "duplexer2": "0.0.2" - } + "mute-stdout": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.0.tgz", + "integrity": "sha1-WzLqB+tDyd7WEwQ0z5JvRrKn/U0=", + "dev": true }, "mute-stream": { "version": "0.0.7", @@ -5464,24 +5916,31 @@ "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", "dev": true }, + "nan": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz", + "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==", + "dev": true, + "optional": true + }, "nanomatch": { "version": "1.2.9", "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.9.tgz", "integrity": "sha512-n8R9bS8yQ6eSXaV6jHUpKzD8gLsin02w1HSFiegwrs9E098Ylhw5jdyKPaYqvHknHaSCKTPp7C8dGCQ0q9koXA==", "dev": true, "requires": { - "arr-diff": "4.0.0", - "array-unique": "0.3.2", - "define-property": "2.0.2", - "extend-shallow": "3.0.2", - "fragment-cache": "0.2.1", - "is-odd": "2.0.0", - "is-windows": "1.0.2", - "kind-of": "6.0.2", - "object.pick": "1.3.0", - "regex-not": "1.0.2", - "snapdragon": "0.8.2", - "to-regex": "3.0.2" + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-odd": "^2.0.0", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" } }, "natives": { @@ -5490,12 +5949,18 @@ "integrity": "sha512-BZGSYV4YOLxzoTK73l0/s/0sH9l8SHs2ocReMH1f8JYSh5FUWu4ZrKCpJdRkWXV6HFR/pZDz7bwWOVAY07q77g==", "dev": true }, + "next-tick": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", + "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=", + "dev": true + }, "node-filter-async": { "version": "0.0.4", "resolved": "https://registry.npmjs.org/node-filter-async/-/node-filter-async-0.0.4.tgz", "integrity": "sha512-W3p4yGNzH1822Z+CHitXY0uCy3vd9Vic7lEZv8NXHqT9erfod+UuZ/wN57oJwCqiSMoBqke62suyORwVb/mYIA==", "requires": { - "bluebird": "3.5.1" + "bluebird": "^3.5.1" } }, "node.extend": { @@ -5504,7 +5969,7 @@ "integrity": "sha1-p7iCyC1sk6SGOlUEvV3o7IYli5Y=", "dev": true, "requires": { - "is": "3.2.1" + "is": "^3.1.0" } }, "noms": { @@ -5513,8 +5978,8 @@ "integrity": "sha1-2o69nzr51nYJGbJ9nNyAkqczKFk=", "dev": true, "requires": { - "inherits": "2.0.3", - "readable-stream": "1.0.34" + "inherits": "^2.0.1", + "readable-stream": "~1.0.31" } }, "nopt": { @@ -5523,7 +5988,7 @@ "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", "dev": true, "requires": { - "abbrev": "1.0.9" + "abbrev": "1" } }, "normalize-package-data": { @@ -5532,10 +5997,10 @@ "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", "dev": true, "requires": { - "hosted-git-info": "2.6.0", - "is-builtin-module": "1.0.0", - "semver": "5.5.0", - "validate-npm-package-license": "3.0.3" + "hosted-git-info": "^2.1.4", + "is-builtin-module": "^1.0.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" } }, "normalize-path": { @@ -5544,7 +6009,16 @@ "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", "dev": true, "requires": { - "remove-trailing-separator": "1.1.0" + "remove-trailing-separator": "^1.0.1" + } + }, + "now-and-later": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.0.tgz", + "integrity": "sha1-vGHLtFbXnLMiB85HygUTb/Ln1u4=", + "dev": true, + "requires": { + "once": "^1.3.2" } }, "npm-run-all": { @@ -5553,15 +6027,15 @@ "integrity": "sha512-Z2aRlajMK4SQ8u19ZA75NZZu7wupfCNQWdYosIi8S6FgBdGf/8Y6Hgyjdc8zU2cYmIRVCx1nM80tJPkdEd+UYg==", "dev": true, "requires": { - "ansi-styles": "3.2.1", - "chalk": "2.3.2", - "cross-spawn": "5.1.0", - "memorystream": "0.3.1", - "minimatch": "3.0.4", - "ps-tree": "1.1.0", - "read-pkg": "3.0.0", - "shell-quote": "1.6.1", - "string.prototype.padend": "3.0.0" + "ansi-styles": "^3.2.0", + "chalk": "^2.1.0", + "cross-spawn": "^5.1.0", + "memorystream": "^0.3.1", + "minimatch": "^3.0.4", + "ps-tree": "^1.1.0", + "read-pkg": "^3.0.0", + "shell-quote": "^1.6.1", + "string.prototype.padend": "^3.0.0" }, "dependencies": { "ansi-styles": { @@ -5570,7 +6044,7 @@ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "color-convert": "1.9.1" + "color-convert": "^1.9.0" } }, "chalk": { @@ -5579,9 +6053,9 @@ "integrity": "sha512-ZM4j2/ld/YZDc3Ma8PgN7gyAk+kHMMMyzLNryCPGhWrsfAuDVeuid5bpRFTDgMH9JBK2lA4dyyAkkZYF/WcqDQ==", "dev": true, "requires": { - "ansi-styles": "3.2.1", - "escape-string-regexp": "1.0.5", - "supports-color": "5.3.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" } }, "has-flag": { @@ -5596,10 +6070,10 @@ "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", "dev": true, "requires": { - "graceful-fs": "4.1.11", - "parse-json": "4.0.0", - "pify": "3.0.0", - "strip-bom": "3.0.0" + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" } }, "parse-json": { @@ -5608,8 +6082,8 @@ "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", "dev": true, "requires": { - "error-ex": "1.3.1", - "json-parse-better-errors": "1.0.2" + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" } }, "path-type": { @@ -5618,7 +6092,7 @@ "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "dev": true, "requires": { - "pify": "3.0.0" + "pify": "^3.0.0" } }, "read-pkg": { @@ -5627,9 +6101,9 @@ "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", "dev": true, "requires": { - "load-json-file": "4.0.0", - "normalize-package-data": "2.4.0", - "path-type": "3.0.0" + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" } }, "strip-bom": { @@ -5644,7 +6118,7 @@ "integrity": "sha512-0aP01LLIskjKs3lq52EC0aGBAJhLq7B2Rd8HC/DR/PtNNpcLilNmHC12O+hu0usQpo7wtHNRqtrhBwtDb0+dNg==", "dev": true, "requires": { - "has-flag": "3.0.0" + "has-flag": "^3.0.0" } } } @@ -5655,7 +6129,7 @@ "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", "dev": true, "requires": { - "path-key": "2.0.1" + "path-key": "^2.0.0" } }, "nth-check": { @@ -5664,7 +6138,7 @@ "integrity": "sha1-mSms32KPwsQQmN6rgqxYDPFJquQ=", "dev": true, "requires": { - "boolbase": "1.0.0" + "boolbase": "~1.0.0" } }, "number-is-nan": { @@ -5674,38 +6148,38 @@ "dev": true }, "nyc": { - "version": "11.6.0", - "resolved": "https://registry.npmjs.org/nyc/-/nyc-11.6.0.tgz", - "integrity": "sha512-ZaXCh0wmbk2aSBH2B5hZGGvK2s9aM8DIm2rVY+BG3Fx8tUS+bpJSswUVZqOD1YfCmnYRFSqgYJSr7UeeUcW0jg==", - "dev": true, - "requires": { - "archy": "1.0.0", - "arrify": "1.0.1", - "caching-transform": "1.0.1", - "convert-source-map": "1.5.1", - "debug-log": "1.0.1", - "default-require-extensions": "1.0.0", - "find-cache-dir": "0.1.1", - "find-up": "2.1.0", - "foreground-child": "1.5.6", - "glob": "7.1.2", - "istanbul-lib-coverage": "1.2.0", - "istanbul-lib-hook": "1.1.0", - "istanbul-lib-instrument": "1.10.1", - "istanbul-lib-report": "1.1.3", - "istanbul-lib-source-maps": "1.2.3", - "istanbul-reports": "1.3.0", - "md5-hex": "1.3.0", - "merge-source-map": "1.1.0", - "micromatch": "2.3.11", - "mkdirp": "0.5.1", - "resolve-from": "2.0.0", - "rimraf": "2.6.2", - "signal-exit": "3.0.2", - "spawn-wrap": "1.4.2", - "test-exclude": "4.2.1", + "version": "11.8.0", + "resolved": "https://registry.npmjs.org/nyc/-/nyc-11.8.0.tgz", + "integrity": "sha512-PUFq1PSsx5OinSk5g5aaZygcDdI3QQT5XUlbR9QRMihtMS6w0Gm8xj4BxmKeeAlpQXC5M2DIhH16Y+KejceivQ==", + "dev": true, + "requires": { + "archy": "^1.0.0", + "arrify": "^1.0.1", + "caching-transform": "^1.0.0", + "convert-source-map": "^1.5.1", + "debug-log": "^1.0.1", + "default-require-extensions": "^1.0.0", + "find-cache-dir": "^0.1.1", + "find-up": "^2.1.0", + "foreground-child": "^1.5.3", + "glob": "^7.0.6", + "istanbul-lib-coverage": "^1.1.2", + "istanbul-lib-hook": "^1.1.0", + "istanbul-lib-instrument": "^1.10.0", + "istanbul-lib-report": "^1.1.3", + "istanbul-lib-source-maps": "^1.2.3", + "istanbul-reports": "^1.4.0", + "md5-hex": "^1.2.0", + "merge-source-map": "^1.1.0", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.0", + "resolve-from": "^2.0.0", + "rimraf": "^2.6.2", + "signal-exit": "^3.0.1", + "spawn-wrap": "^1.4.2", + "test-exclude": "^4.2.0", "yargs": "11.1.0", - "yargs-parser": "8.1.0" + "yargs-parser": "^8.0.0" }, "dependencies": { "align-text": { @@ -5713,9 +6187,9 @@ "bundled": true, "dev": true, "requires": { - "kind-of": "3.2.2", - "longest": "1.0.1", - "repeat-string": "1.6.1" + "kind-of": "^3.0.2", + "longest": "^1.0.1", + "repeat-string": "^1.5.2" } }, "amdefine": { @@ -5738,7 +6212,7 @@ "bundled": true, "dev": true, "requires": { - "default-require-extensions": "1.0.0" + "default-require-extensions": "^1.0.0" } }, "archy": { @@ -5747,12 +6221,9 @@ "dev": true }, "arr-diff": { - "version": "2.0.0", + "version": "4.0.0", "bundled": true, - "dev": true, - "requires": { - "arr-flatten": "1.1.0" - } + "dev": true }, "arr-flatten": { "version": "1.1.0", @@ -5765,7 +6236,7 @@ "dev": true }, "array-unique": { - "version": "0.2.1", + "version": "0.3.2", "bundled": true, "dev": true }, @@ -5785,7 +6256,7 @@ "dev": true }, "atob": { - "version": "2.0.3", + "version": "2.1.1", "bundled": true, "dev": true }, @@ -5794,9 +6265,9 @@ "bundled": true, "dev": true, "requires": { - "chalk": "1.1.3", - "esutils": "2.0.2", - "js-tokens": "3.0.2" + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" } }, "babel-generator": { @@ -5804,14 +6275,14 @@ "bundled": true, "dev": true, "requires": { - "babel-messages": "6.23.0", - "babel-runtime": "6.26.0", - "babel-types": "6.26.0", - "detect-indent": "4.0.0", - "jsesc": "1.3.0", - "lodash": "4.17.5", - "source-map": "0.5.7", - "trim-right": "1.0.1" + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "detect-indent": "^4.0.0", + "jsesc": "^1.3.0", + "lodash": "^4.17.4", + "source-map": "^0.5.7", + "trim-right": "^1.0.1" } }, "babel-messages": { @@ -5819,7 +6290,7 @@ "bundled": true, "dev": true, "requires": { - "babel-runtime": "6.26.0" + "babel-runtime": "^6.22.0" } }, "babel-runtime": { @@ -5827,8 +6298,8 @@ "bundled": true, "dev": true, "requires": { - "core-js": "2.5.3", - "regenerator-runtime": "0.11.1" + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" } }, "babel-template": { @@ -5836,11 +6307,11 @@ "bundled": true, "dev": true, "requires": { - "babel-runtime": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0", - "babylon": "6.18.0", - "lodash": "4.17.5" + "babel-runtime": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "lodash": "^4.17.4" } }, "babel-traverse": { @@ -5848,15 +6319,15 @@ "bundled": true, "dev": true, "requires": { - "babel-code-frame": "6.26.0", - "babel-messages": "6.23.0", - "babel-runtime": "6.26.0", - "babel-types": "6.26.0", - "babylon": "6.18.0", - "debug": "2.6.9", - "globals": "9.18.0", - "invariant": "2.2.3", - "lodash": "4.17.5" + "babel-code-frame": "^6.26.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "debug": "^2.6.8", + "globals": "^9.18.0", + "invariant": "^2.2.2", + "lodash": "^4.17.4" } }, "babel-types": { @@ -5864,10 +6335,10 @@ "bundled": true, "dev": true, "requires": { - "babel-runtime": "6.26.0", - "esutils": "2.0.2", - "lodash": "4.17.5", - "to-fast-properties": "1.0.3" + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" } }, "babylon": { @@ -5885,13 +6356,13 @@ "bundled": true, "dev": true, "requires": { - "cache-base": "1.0.1", - "class-utils": "0.3.6", - "component-emitter": "1.2.1", - "define-property": "1.0.0", - "isobject": "3.0.1", - "mixin-deep": "1.3.1", - "pascalcase": "0.1.1" + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" }, "dependencies": { "define-property": { @@ -5899,13 +6370,44 @@ "bundled": true, "dev": true, "requires": { - "is-descriptor": "1.0.2" + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } }, "isobject": { "version": "3.0.1", "bundled": true, "dev": true + }, + "kind-of": { + "version": "6.0.2", + "bundled": true, + "dev": true } } }, @@ -5914,18 +6416,35 @@ "bundled": true, "dev": true, "requires": { - "balanced-match": "1.0.0", + "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "braces": { - "version": "1.8.5", + "version": "2.3.2", "bundled": true, "dev": true, "requires": { - "expand-range": "1.8.2", - "preserve": "0.2.0", - "repeat-element": "1.1.2" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } } }, "builtin-modules": { @@ -5938,15 +6457,15 @@ "bundled": true, "dev": true, "requires": { - "collection-visit": "1.0.0", - "component-emitter": "1.2.1", - "get-value": "2.0.6", - "has-value": "1.0.0", - "isobject": "3.0.1", - "set-value": "2.0.0", - "to-object-path": "0.3.0", - "union-value": "1.0.0", - "unset-value": "1.0.0" + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" }, "dependencies": { "isobject": { @@ -5961,9 +6480,9 @@ "bundled": true, "dev": true, "requires": { - "md5-hex": "1.3.0", - "mkdirp": "0.5.1", - "write-file-atomic": "1.3.4" + "md5-hex": "^1.2.0", + "mkdirp": "^0.5.1", + "write-file-atomic": "^1.1.4" } }, "camelcase": { @@ -5978,8 +6497,8 @@ "dev": true, "optional": true, "requires": { - "align-text": "0.1.4", - "lazy-cache": "1.0.4" + "align-text": "^0.1.3", + "lazy-cache": "^1.0.3" } }, "chalk": { @@ -5987,11 +6506,11 @@ "bundled": true, "dev": true, "requires": { - "ansi-styles": "2.2.1", - "escape-string-regexp": "1.0.5", - "has-ansi": "2.0.0", - "strip-ansi": "3.0.1", - "supports-color": "2.0.0" + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" } }, "class-utils": { @@ -5999,75 +6518,24 @@ "bundled": true, "dev": true, "requires": { - "arr-union": "3.1.0", - "define-property": "0.2.5", - "isobject": "3.0.1", - "static-extend": "0.1.2" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "bundled": true, - "dev": true, - "requires": { - "is-descriptor": "0.1.6" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "bundled": true, - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "bundled": true, - "dev": true, - "requires": { - "is-buffer": "1.1.6" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "bundled": true, - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "bundled": true, - "dev": true, - "requires": { - "is-buffer": "1.1.6" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", "bundled": true, "dev": true, "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" + "is-descriptor": "^0.1.0" } }, "isobject": { "version": "3.0.1", "bundled": true, "dev": true - }, - "kind-of": { - "version": "5.1.0", - "bundled": true, - "dev": true } } }, @@ -6077,8 +6545,8 @@ "dev": true, "optional": true, "requires": { - "center-align": "0.1.3", - "right-align": "0.1.3", + "center-align": "^0.1.1", + "right-align": "^0.1.1", "wordwrap": "0.0.2" }, "dependencies": { @@ -6100,8 +6568,8 @@ "bundled": true, "dev": true, "requires": { - "map-visit": "1.0.0", - "object-visit": "1.0.1" + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" } }, "commondir": { @@ -6130,7 +6598,7 @@ "dev": true }, "core-js": { - "version": "2.5.3", + "version": "2.5.6", "bundled": true, "dev": true }, @@ -6139,8 +6607,8 @@ "bundled": true, "dev": true, "requires": { - "lru-cache": "4.1.2", - "which": "1.3.0" + "lru-cache": "^4.0.1", + "which": "^1.2.9" } }, "debug": { @@ -6171,7 +6639,7 @@ "bundled": true, "dev": true, "requires": { - "strip-bom": "2.0.0" + "strip-bom": "^2.0.0" } }, "define-property": { @@ -6179,14 +6647,45 @@ "bundled": true, "dev": true, "requires": { - "is-descriptor": "1.0.2", - "isobject": "3.0.1" + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" }, "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, "isobject": { "version": "3.0.1", "bundled": true, "dev": true + }, + "kind-of": { + "version": "6.0.2", + "bundled": true, + "dev": true } } }, @@ -6195,7 +6694,7 @@ "bundled": true, "dev": true, "requires": { - "repeating": "2.0.1" + "repeating": "^2.0.0" } }, "error-ex": { @@ -6203,7 +6702,7 @@ "bundled": true, "dev": true, "requires": { - "is-arrayish": "0.2.1" + "is-arrayish": "^0.2.1" } }, "escape-string-regexp": { @@ -6221,13 +6720,13 @@ "bundled": true, "dev": true, "requires": { - "cross-spawn": "5.1.0", - "get-stream": "3.0.0", - "is-stream": "1.1.0", - "npm-run-path": "2.0.2", - "p-finally": "1.0.0", - "signal-exit": "3.0.2", - "strip-eof": "1.0.0" + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" }, "dependencies": { "cross-spawn": { @@ -6235,27 +6734,43 @@ "bundled": true, "dev": true, "requires": { - "lru-cache": "4.1.2", - "shebang-command": "1.2.0", - "which": "1.3.0" + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } } } }, "expand-brackets": { - "version": "0.1.5", - "bundled": true, - "dev": true, - "requires": { - "is-posix-bracket": "0.1.1" - } - }, - "expand-range": { - "version": "1.8.2", + "version": "2.1.4", "bundled": true, "dev": true, "requires": { - "fill-range": "2.2.3" + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "bundled": true, + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } } }, "extend-shallow": { @@ -6263,8 +6778,8 @@ "bundled": true, "dev": true, "requires": { - "assign-symbols": "1.0.0", - "is-extendable": "1.0.1" + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" }, "dependencies": { "is-extendable": { @@ -6272,34 +6787,94 @@ "bundled": true, "dev": true, "requires": { - "is-plain-object": "2.0.4" + "is-plain-object": "^2.0.4" } } } }, "extglob": { - "version": "0.3.2", + "version": "2.0.4", "bundled": true, "dev": true, "requires": { - "is-extglob": "1.0.0" + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "kind-of": { + "version": "6.0.2", + "bundled": true, + "dev": true + } } }, - "filename-regex": { - "version": "2.0.1", - "bundled": true, - "dev": true - }, "fill-range": { - "version": "2.2.3", + "version": "4.0.0", "bundled": true, "dev": true, "requires": { - "is-number": "2.1.0", - "isobject": "2.1.0", - "randomatic": "1.1.7", - "repeat-element": "1.1.2", - "repeat-string": "1.6.1" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } } }, "find-cache-dir": { @@ -6307,9 +6882,9 @@ "bundled": true, "dev": true, "requires": { - "commondir": "1.0.1", - "mkdirp": "0.5.1", - "pkg-dir": "1.0.0" + "commondir": "^1.0.1", + "mkdirp": "^0.5.1", + "pkg-dir": "^1.0.0" } }, "find-up": { @@ -6317,7 +6892,7 @@ "bundled": true, "dev": true, "requires": { - "locate-path": "2.0.0" + "locate-path": "^2.0.0" } }, "for-in": { @@ -6325,21 +6900,13 @@ "bundled": true, "dev": true }, - "for-own": { - "version": "0.1.5", - "bundled": true, - "dev": true, - "requires": { - "for-in": "1.0.2" - } - }, "foreground-child": { "version": "1.5.6", "bundled": true, "dev": true, "requires": { - "cross-spawn": "4.0.2", - "signal-exit": "3.0.2" + "cross-spawn": "^4", + "signal-exit": "^3.0.0" } }, "fragment-cache": { @@ -6347,7 +6914,7 @@ "bundled": true, "dev": true, "requires": { - "map-cache": "0.2.2" + "map-cache": "^0.2.2" } }, "fs.realpath": { @@ -6375,29 +6942,12 @@ "bundled": true, "dev": true, "requires": { - "fs.realpath": "1.0.0", - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" - } - }, - "glob-base": { - "version": "0.3.0", - "bundled": true, - "dev": true, - "requires": { - "glob-parent": "2.0.0", - "is-glob": "2.0.1" - } - }, - "glob-parent": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "requires": { - "is-glob": "2.0.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" } }, "globals": { @@ -6415,10 +6965,10 @@ "bundled": true, "dev": true, "requires": { - "async": "1.5.2", - "optimist": "0.6.1", - "source-map": "0.4.4", - "uglify-js": "2.8.29" + "async": "^1.4.0", + "optimist": "^0.6.1", + "source-map": "^0.4.4", + "uglify-js": "^2.6" }, "dependencies": { "source-map": { @@ -6426,7 +6976,7 @@ "bundled": true, "dev": true, "requires": { - "amdefine": "1.0.1" + "amdefine": ">=0.0.4" } } } @@ -6436,7 +6986,7 @@ "bundled": true, "dev": true, "requires": { - "ansi-regex": "2.1.1" + "ansi-regex": "^2.0.0" } }, "has-flag": { @@ -6449,9 +6999,9 @@ "bundled": true, "dev": true, "requires": { - "get-value": "2.0.6", - "has-values": "1.0.0", - "isobject": "3.0.1" + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" }, "dependencies": { "isobject": { @@ -6466,8 +7016,8 @@ "bundled": true, "dev": true, "requires": { - "is-number": "3.0.0", - "kind-of": "4.0.0" + "is-number": "^3.0.0", + "kind-of": "^4.0.0" }, "dependencies": { "is-number": { @@ -6475,7 +7025,7 @@ "bundled": true, "dev": true, "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -6483,7 +7033,7 @@ "bundled": true, "dev": true, "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -6493,7 +7043,7 @@ "bundled": true, "dev": true, "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -6513,8 +7063,8 @@ "bundled": true, "dev": true, "requires": { - "once": "1.4.0", - "wrappy": "1.0.2" + "once": "^1.3.0", + "wrappy": "1" } }, "inherits": { @@ -6523,11 +7073,11 @@ "dev": true }, "invariant": { - "version": "2.2.3", + "version": "2.2.4", "bundled": true, "dev": true, "requires": { - "loose-envify": "1.3.1" + "loose-envify": "^1.0.0" } }, "invert-kv": { @@ -6536,18 +7086,11 @@ "dev": true }, "is-accessor-descriptor": { - "version": "1.0.0", + "version": "0.1.6", "bundled": true, "dev": true, "requires": { - "kind-of": "6.0.2" - }, - "dependencies": { - "kind-of": { - "version": "6.0.2", - "bundled": true, - "dev": true - } + "kind-of": "^3.0.2" } }, "is-arrayish": { @@ -6565,70 +7108,45 @@ "bundled": true, "dev": true, "requires": { - "builtin-modules": "1.1.1" + "builtin-modules": "^1.0.0" } }, "is-data-descriptor": { - "version": "1.0.0", + "version": "0.1.4", "bundled": true, "dev": true, "requires": { - "kind-of": "6.0.2" - }, - "dependencies": { - "kind-of": { - "version": "6.0.2", - "bundled": true, - "dev": true - } + "kind-of": "^3.0.2" } }, "is-descriptor": { - "version": "1.0.2", + "version": "0.1.6", "bundled": true, "dev": true, "requires": { - "is-accessor-descriptor": "1.0.0", - "is-data-descriptor": "1.0.0", - "kind-of": "6.0.2" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" }, "dependencies": { "kind-of": { - "version": "6.0.2", + "version": "5.1.0", "bundled": true, "dev": true } } }, - "is-dotfile": { - "version": "1.0.3", - "bundled": true, - "dev": true - }, - "is-equal-shallow": { - "version": "0.1.3", - "bundled": true, - "dev": true, - "requires": { - "is-primitive": "2.0.0" - } - }, "is-extendable": { "version": "0.1.1", "bundled": true, "dev": true }, - "is-extglob": { - "version": "1.0.0", - "bundled": true, - "dev": true - }, "is-finite": { "version": "1.0.2", "bundled": true, "dev": true, "requires": { - "number-is-nan": "1.0.1" + "number-is-nan": "^1.0.0" } }, "is-fullwidth-code-point": { @@ -6636,20 +7154,12 @@ "bundled": true, "dev": true }, - "is-glob": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "requires": { - "is-extglob": "1.0.0" - } - }, "is-number": { - "version": "2.1.0", + "version": "3.0.0", "bundled": true, "dev": true, "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" } }, "is-odd": { @@ -6657,7 +7167,7 @@ "bundled": true, "dev": true, "requires": { - "is-number": "4.0.0" + "is-number": "^4.0.0" }, "dependencies": { "is-number": { @@ -6672,7 +7182,7 @@ "bundled": true, "dev": true, "requires": { - "isobject": "3.0.1" + "isobject": "^3.0.1" }, "dependencies": { "isobject": { @@ -6682,16 +7192,6 @@ } } }, - "is-posix-bracket": { - "version": "0.1.1", - "bundled": true, - "dev": true - }, - "is-primitive": { - "version": "2.0.0", - "bundled": true, - "dev": true - }, "is-stream": { "version": "1.1.0", "bundled": true, @@ -6718,12 +7218,9 @@ "dev": true }, "isobject": { - "version": "2.1.0", + "version": "3.0.1", "bundled": true, - "dev": true, - "requires": { - "isarray": "1.0.0" - } + "dev": true }, "istanbul-lib-coverage": { "version": "1.2.0", @@ -6735,7 +7232,7 @@ "bundled": true, "dev": true, "requires": { - "append-transform": "0.4.0" + "append-transform": "^0.4.0" } }, "istanbul-lib-instrument": { @@ -6743,13 +7240,13 @@ "bundled": true, "dev": true, "requires": { - "babel-generator": "6.26.1", - "babel-template": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0", - "babylon": "6.18.0", - "istanbul-lib-coverage": "1.2.0", - "semver": "5.5.0" + "babel-generator": "^6.18.0", + "babel-template": "^6.16.0", + "babel-traverse": "^6.18.0", + "babel-types": "^6.18.0", + "babylon": "^6.18.0", + "istanbul-lib-coverage": "^1.2.0", + "semver": "^5.3.0" } }, "istanbul-lib-report": { @@ -6757,10 +7254,10 @@ "bundled": true, "dev": true, "requires": { - "istanbul-lib-coverage": "1.2.0", - "mkdirp": "0.5.1", - "path-parse": "1.0.5", - "supports-color": "3.2.3" + "istanbul-lib-coverage": "^1.1.2", + "mkdirp": "^0.5.1", + "path-parse": "^1.0.5", + "supports-color": "^3.1.2" }, "dependencies": { "supports-color": { @@ -6768,7 +7265,7 @@ "bundled": true, "dev": true, "requires": { - "has-flag": "1.0.0" + "has-flag": "^1.0.0" } } } @@ -6778,11 +7275,11 @@ "bundled": true, "dev": true, "requires": { - "debug": "3.1.0", - "istanbul-lib-coverage": "1.2.0", - "mkdirp": "0.5.1", - "rimraf": "2.6.2", - "source-map": "0.5.7" + "debug": "^3.1.0", + "istanbul-lib-coverage": "^1.1.2", + "mkdirp": "^0.5.1", + "rimraf": "^2.6.1", + "source-map": "^0.5.3" }, "dependencies": { "debug": { @@ -6796,11 +7293,11 @@ } }, "istanbul-reports": { - "version": "1.3.0", + "version": "1.4.0", "bundled": true, "dev": true, "requires": { - "handlebars": "4.0.11" + "handlebars": "^4.0.3" } }, "js-tokens": { @@ -6818,7 +7315,7 @@ "bundled": true, "dev": true, "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } }, "lazy-cache": { @@ -6832,7 +7329,7 @@ "bundled": true, "dev": true, "requires": { - "invert-kv": "1.0.0" + "invert-kv": "^1.0.0" } }, "load-json-file": { @@ -6840,11 +7337,11 @@ "bundled": true, "dev": true, "requires": { - "graceful-fs": "4.1.11", - "parse-json": "2.2.0", - "pify": "2.3.0", - "pinkie-promise": "2.0.1", - "strip-bom": "2.0.0" + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" } }, "locate-path": { @@ -6852,8 +7349,8 @@ "bundled": true, "dev": true, "requires": { - "p-locate": "2.0.0", - "path-exists": "3.0.0" + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" }, "dependencies": { "path-exists": { @@ -6864,7 +7361,7 @@ } }, "lodash": { - "version": "4.17.5", + "version": "4.17.10", "bundled": true, "dev": true }, @@ -6878,16 +7375,16 @@ "bundled": true, "dev": true, "requires": { - "js-tokens": "3.0.2" + "js-tokens": "^3.0.0" } }, "lru-cache": { - "version": "4.1.2", + "version": "4.1.3", "bundled": true, "dev": true, "requires": { - "pseudomap": "1.0.2", - "yallist": "2.1.2" + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" } }, "map-cache": { @@ -6900,7 +7397,7 @@ "bundled": true, "dev": true, "requires": { - "object-visit": "1.0.1" + "object-visit": "^1.0.0" } }, "md5-hex": { @@ -6908,7 +7405,7 @@ "bundled": true, "dev": true, "requires": { - "md5-o-matic": "0.1.1" + "md5-o-matic": "^0.1.1" } }, "md5-o-matic": { @@ -6921,7 +7418,7 @@ "bundled": true, "dev": true, "requires": { - "mimic-fn": "1.2.0" + "mimic-fn": "^1.0.0" } }, "merge-source-map": { @@ -6929,7 +7426,7 @@ "bundled": true, "dev": true, "requires": { - "source-map": "0.6.1" + "source-map": "^0.6.1" }, "dependencies": { "source-map": { @@ -6940,23 +7437,30 @@ } }, "micromatch": { - "version": "2.3.11", - "bundled": true, - "dev": true, - "requires": { - "arr-diff": "2.0.0", - "array-unique": "0.2.1", - "braces": "1.8.5", - "expand-brackets": "0.1.5", - "extglob": "0.3.2", - "filename-regex": "2.0.1", - "is-extglob": "1.0.0", - "is-glob": "2.0.1", - "kind-of": "3.2.2", - "normalize-path": "2.1.1", - "object.omit": "2.0.1", - "parse-glob": "3.0.4", - "regex-cache": "0.4.4" + "version": "3.1.10", + "bundled": true, + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "6.0.2", + "bundled": true, + "dev": true + } } }, "mimic-fn": { @@ -6969,7 +7473,7 @@ "bundled": true, "dev": true, "requires": { - "brace-expansion": "1.1.11" + "brace-expansion": "^1.1.7" } }, "minimist": { @@ -6982,8 +7486,8 @@ "bundled": true, "dev": true, "requires": { - "for-in": "1.0.2", - "is-extendable": "1.0.1" + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" }, "dependencies": { "is-extendable": { @@ -6991,7 +7495,7 @@ "bundled": true, "dev": true, "requires": { - "is-plain-object": "2.0.4" + "is-plain-object": "^2.0.4" } } } @@ -7014,18 +7518,18 @@ "bundled": true, "dev": true, "requires": { - "arr-diff": "4.0.0", - "array-unique": "0.3.2", - "define-property": "2.0.2", - "extend-shallow": "3.0.2", - "fragment-cache": "0.2.1", - "is-odd": "2.0.0", - "is-windows": "1.0.2", - "kind-of": "6.0.2", - "object.pick": "1.3.0", - "regex-not": "1.0.2", - "snapdragon": "0.8.2", - "to-regex": "3.0.2" + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-odd": "^2.0.0", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" }, "dependencies": { "arr-diff": { @@ -7050,18 +7554,10 @@ "bundled": true, "dev": true, "requires": { - "hosted-git-info": "2.6.0", - "is-builtin-module": "1.0.0", - "semver": "5.5.0", - "validate-npm-package-license": "3.0.3" - } - }, - "normalize-path": { - "version": "2.1.1", - "bundled": true, - "dev": true, - "requires": { - "remove-trailing-separator": "1.1.0" + "hosted-git-info": "^2.1.4", + "is-builtin-module": "^1.0.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" } }, "npm-run-path": { @@ -7069,7 +7565,7 @@ "bundled": true, "dev": true, "requires": { - "path-key": "2.0.1" + "path-key": "^2.0.0" } }, "number-is-nan": { @@ -7087,50 +7583,17 @@ "bundled": true, "dev": true, "requires": { - "copy-descriptor": "0.1.1", - "define-property": "0.2.5", - "kind-of": "3.2.2" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "bundled": true, - "dev": true, - "requires": { - "is-descriptor": "0.1.6" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "bundled": true, - "dev": true, - "requires": { - "kind-of": "3.2.2" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "bundled": true, - "dev": true, - "requires": { - "kind-of": "3.2.2" - } - }, - "is-descriptor": { - "version": "0.1.6", + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", "bundled": true, "dev": true, "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "bundled": true, - "dev": true - } + "is-descriptor": "^0.1.0" } } } @@ -7140,7 +7603,7 @@ "bundled": true, "dev": true, "requires": { - "isobject": "3.0.1" + "isobject": "^3.0.0" }, "dependencies": { "isobject": { @@ -7150,21 +7613,12 @@ } } }, - "object.omit": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "requires": { - "for-own": "0.1.5", - "is-extendable": "0.1.1" - } - }, "object.pick": { "version": "1.3.0", "bundled": true, "dev": true, "requires": { - "isobject": "3.0.1" + "isobject": "^3.0.1" }, "dependencies": { "isobject": { @@ -7179,7 +7633,7 @@ "bundled": true, "dev": true, "requires": { - "wrappy": "1.0.2" + "wrappy": "1" } }, "optimist": { @@ -7187,8 +7641,8 @@ "bundled": true, "dev": true, "requires": { - "minimist": "0.0.8", - "wordwrap": "0.0.3" + "minimist": "~0.0.1", + "wordwrap": "~0.0.2" } }, "os-homedir": { @@ -7201,9 +7655,9 @@ "bundled": true, "dev": true, "requires": { - "execa": "0.7.0", - "lcid": "1.0.0", - "mem": "1.1.0" + "execa": "^0.7.0", + "lcid": "^1.0.0", + "mem": "^1.1.0" } }, "p-finally": { @@ -7216,7 +7670,7 @@ "bundled": true, "dev": true, "requires": { - "p-try": "1.0.0" + "p-try": "^1.0.0" } }, "p-locate": { @@ -7224,7 +7678,7 @@ "bundled": true, "dev": true, "requires": { - "p-limit": "1.2.0" + "p-limit": "^1.1.0" } }, "p-try": { @@ -7232,23 +7686,12 @@ "bundled": true, "dev": true }, - "parse-glob": { - "version": "3.0.4", - "bundled": true, - "dev": true, - "requires": { - "glob-base": "0.3.0", - "is-dotfile": "1.0.3", - "is-extglob": "1.0.0", - "is-glob": "2.0.1" - } - }, "parse-json": { "version": "2.2.0", "bundled": true, "dev": true, "requires": { - "error-ex": "1.3.1" + "error-ex": "^1.2.0" } }, "pascalcase": { @@ -7261,7 +7704,7 @@ "bundled": true, "dev": true, "requires": { - "pinkie-promise": "2.0.1" + "pinkie-promise": "^2.0.0" } }, "path-is-absolute": { @@ -7284,9 +7727,9 @@ "bundled": true, "dev": true, "requires": { - "graceful-fs": "4.1.11", - "pify": "2.3.0", - "pinkie-promise": "2.0.1" + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" } }, "pify": { @@ -7304,7 +7747,7 @@ "bundled": true, "dev": true, "requires": { - "pinkie": "2.0.4" + "pinkie": "^2.0.0" } }, "pkg-dir": { @@ -7312,7 +7755,7 @@ "bundled": true, "dev": true, "requires": { - "find-up": "1.1.2" + "find-up": "^1.0.0" }, "dependencies": { "find-up": { @@ -7320,8 +7763,8 @@ "bundled": true, "dev": true, "requires": { - "path-exists": "2.1.0", - "pinkie-promise": "2.0.1" + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" } } } @@ -7331,61 +7774,19 @@ "bundled": true, "dev": true }, - "preserve": { - "version": "0.2.0", - "bundled": true, - "dev": true - }, "pseudomap": { "version": "1.0.2", "bundled": true, "dev": true }, - "randomatic": { - "version": "1.1.7", - "bundled": true, - "dev": true, - "requires": { - "is-number": "3.0.0", - "kind-of": "4.0.0" - }, - "dependencies": { - "is-number": { - "version": "3.0.0", - "bundled": true, - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "bundled": true, - "dev": true, - "requires": { - "is-buffer": "1.1.6" - } - } - } - }, - "kind-of": { - "version": "4.0.0", - "bundled": true, - "dev": true, - "requires": { - "is-buffer": "1.1.6" - } - } - } - }, "read-pkg": { "version": "1.1.0", "bundled": true, "dev": true, "requires": { - "load-json-file": "1.1.0", - "normalize-package-data": "2.4.0", - "path-type": "1.1.0" + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" } }, "read-pkg-up": { @@ -7393,8 +7794,8 @@ "bundled": true, "dev": true, "requires": { - "find-up": "1.1.2", - "read-pkg": "1.1.0" + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" }, "dependencies": { "find-up": { @@ -7402,8 +7803,8 @@ "bundled": true, "dev": true, "requires": { - "path-exists": "2.1.0", - "pinkie-promise": "2.0.1" + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" } } } @@ -7413,28 +7814,15 @@ "bundled": true, "dev": true }, - "regex-cache": { - "version": "0.4.4", - "bundled": true, - "dev": true, - "requires": { - "is-equal-shallow": "0.1.3" - } - }, "regex-not": { "version": "1.0.2", "bundled": true, "dev": true, "requires": { - "extend-shallow": "3.0.2", - "safe-regex": "1.1.0" + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" } }, - "remove-trailing-separator": { - "version": "1.1.0", - "bundled": true, - "dev": true - }, "repeat-element": { "version": "1.1.2", "bundled": true, @@ -7450,7 +7838,7 @@ "bundled": true, "dev": true, "requires": { - "is-finite": "1.0.2" + "is-finite": "^1.0.0" } }, "require-directory": { @@ -7484,7 +7872,7 @@ "dev": true, "optional": true, "requires": { - "align-text": "0.1.4" + "align-text": "^0.1.1" } }, "rimraf": { @@ -7492,7 +7880,7 @@ "bundled": true, "dev": true, "requires": { - "glob": "7.1.2" + "glob": "^7.0.5" } }, "safe-regex": { @@ -7500,7 +7888,7 @@ "bundled": true, "dev": true, "requires": { - "ret": "0.1.15" + "ret": "~0.1.10" } }, "semver": { @@ -7518,10 +7906,10 @@ "bundled": true, "dev": true, "requires": { - "extend-shallow": "2.0.1", - "is-extendable": "0.1.1", - "is-plain-object": "2.0.4", - "split-string": "3.1.0" + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" }, "dependencies": { "extend-shallow": { @@ -7529,7 +7917,7 @@ "bundled": true, "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" } } } @@ -7539,7 +7927,7 @@ "bundled": true, "dev": true, "requires": { - "shebang-regex": "1.0.0" + "shebang-regex": "^1.0.0" } }, "shebang-regex": { @@ -7562,14 +7950,14 @@ "bundled": true, "dev": true, "requires": { - "base": "0.11.2", - "debug": "2.6.9", - "define-property": "0.2.5", - "extend-shallow": "2.0.1", - "map-cache": "0.2.2", - "source-map": "0.5.7", - "source-map-resolve": "0.5.1", - "use": "3.1.0" + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" }, "dependencies": { "define-property": { @@ -7577,7 +7965,7 @@ "bundled": true, "dev": true, "requires": { - "is-descriptor": "0.1.6" + "is-descriptor": "^0.1.0" } }, "extend-shallow": { @@ -7585,84 +7973,64 @@ "bundled": true, "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" } - }, - "is-accessor-descriptor": { - "version": "0.1.6", + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "bundled": true, + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", "bundled": true, "dev": true, "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "bundled": true, - "dev": true, - "requires": { - "is-buffer": "1.1.6" - } - } + "is-descriptor": "^1.0.0" } }, - "is-data-descriptor": { - "version": "0.1.4", + "is-accessor-descriptor": { + "version": "1.0.0", "bundled": true, "dev": true, "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "bundled": true, - "dev": true, - "requires": { - "is-buffer": "1.1.6" - } - } + "kind-of": "^6.0.0" } }, - "is-descriptor": { - "version": "0.1.6", + "is-data-descriptor": { + "version": "1.0.0", "bundled": true, "dev": true, "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" + "kind-of": "^6.0.0" } }, - "kind-of": { - "version": "5.1.0", - "bundled": true, - "dev": true - } - } - }, - "snapdragon-node": { - "version": "2.1.1", - "bundled": true, - "dev": true, - "requires": { - "define-property": "1.0.0", - "isobject": "3.0.1", - "snapdragon-util": "3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", + "is-descriptor": { + "version": "1.0.2", "bundled": true, "dev": true, "requires": { - "is-descriptor": "1.0.2" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } }, "isobject": { "version": "3.0.1", "bundled": true, "dev": true + }, + "kind-of": { + "version": "6.0.2", + "bundled": true, + "dev": true } } }, @@ -7671,7 +8039,7 @@ "bundled": true, "dev": true, "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.2.0" } }, "source-map": { @@ -7684,11 +8052,11 @@ "bundled": true, "dev": true, "requires": { - "atob": "2.0.3", - "decode-uri-component": "0.2.0", - "resolve-url": "0.2.1", - "source-map-url": "0.4.0", - "urix": "0.1.0" + "atob": "^2.0.0", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" } }, "source-map-url": { @@ -7701,12 +8069,12 @@ "bundled": true, "dev": true, "requires": { - "foreground-child": "1.5.6", - "mkdirp": "0.5.1", - "os-homedir": "1.0.2", - "rimraf": "2.6.2", - "signal-exit": "3.0.2", - "which": "1.3.0" + "foreground-child": "^1.5.6", + "mkdirp": "^0.5.0", + "os-homedir": "^1.0.1", + "rimraf": "^2.6.2", + "signal-exit": "^3.0.2", + "which": "^1.3.0" } }, "spdx-correct": { @@ -7714,8 +8082,8 @@ "bundled": true, "dev": true, "requires": { - "spdx-expression-parse": "3.0.0", - "spdx-license-ids": "3.0.0" + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" } }, "spdx-exceptions": { @@ -7728,8 +8096,8 @@ "bundled": true, "dev": true, "requires": { - "spdx-exceptions": "2.1.0", - "spdx-license-ids": "3.0.0" + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" } }, "spdx-license-ids": { @@ -7742,7 +8110,7 @@ "bundled": true, "dev": true, "requires": { - "extend-shallow": "3.0.2" + "extend-shallow": "^3.0.0" } }, "static-extend": { @@ -7750,8 +8118,8 @@ "bundled": true, "dev": true, "requires": { - "define-property": "0.2.5", - "object-copy": "0.1.0" + "define-property": "^0.2.5", + "object-copy": "^0.1.0" }, "dependencies": { "define-property": { @@ -7759,59 +8127,8 @@ "bundled": true, "dev": true, "requires": { - "is-descriptor": "0.1.6" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "bundled": true, - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "bundled": true, - "dev": true, - "requires": { - "is-buffer": "1.1.6" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "bundled": true, - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "bundled": true, - "dev": true, - "requires": { - "is-buffer": "1.1.6" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "bundled": true, - "dev": true, - "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" + "is-descriptor": "^0.1.0" } - }, - "kind-of": { - "version": "5.1.0", - "bundled": true, - "dev": true } } }, @@ -7820,8 +8137,8 @@ "bundled": true, "dev": true, "requires": { - "is-fullwidth-code-point": "2.0.0", - "strip-ansi": "4.0.0" + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" }, "dependencies": { "ansi-regex": { @@ -7834,7 +8151,7 @@ "bundled": true, "dev": true, "requires": { - "ansi-regex": "3.0.0" + "ansi-regex": "^3.0.0" } } } @@ -7844,7 +8161,7 @@ "bundled": true, "dev": true, "requires": { - "ansi-regex": "2.1.1" + "ansi-regex": "^2.0.0" } }, "strip-bom": { @@ -7852,7 +8169,7 @@ "bundled": true, "dev": true, "requires": { - "is-utf8": "0.2.1" + "is-utf8": "^0.2.0" } }, "strip-eof": { @@ -7870,11 +8187,11 @@ "bundled": true, "dev": true, "requires": { - "arrify": "1.0.1", - "micromatch": "3.1.9", - "object-assign": "4.1.1", - "read-pkg-up": "1.0.1", - "require-main-filename": "1.0.1" + "arrify": "^1.0.1", + "micromatch": "^3.1.8", + "object-assign": "^4.1.0", + "read-pkg-up": "^1.0.1", + "require-main-filename": "^1.0.1" }, "dependencies": { "arr-diff": { @@ -7888,38 +8205,28 @@ "dev": true }, "braces": { - "version": "2.3.1", + "version": "2.3.2", "bundled": true, "dev": true, "requires": { - "arr-flatten": "1.1.0", - "array-unique": "0.3.2", - "define-property": "1.0.0", - "extend-shallow": "2.0.1", - "fill-range": "4.0.0", - "isobject": "3.0.1", - "kind-of": "6.0.2", - "repeat-element": "1.1.2", - "snapdragon": "0.8.2", - "snapdragon-node": "2.1.1", - "split-string": "3.1.0", - "to-regex": "3.0.2" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" }, "dependencies": { - "define-property": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "requires": { - "is-descriptor": "1.0.2" - } - }, "extend-shallow": { "version": "2.0.1", "bundled": true, "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" } } } @@ -7929,13 +8236,13 @@ "bundled": true, "dev": true, "requires": { - "debug": "2.6.9", - "define-property": "0.2.5", - "extend-shallow": "2.0.1", - "posix-character-classes": "0.1.1", - "regex-not": "1.0.2", - "snapdragon": "0.8.2", - "to-regex": "3.0.2" + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" }, "dependencies": { "define-property": { @@ -7943,7 +8250,7 @@ "bundled": true, "dev": true, "requires": { - "is-descriptor": "0.1.6" + "is-descriptor": "^0.1.0" } }, "extend-shallow": { @@ -7951,7 +8258,43 @@ "bundled": true, "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "bundled": true, + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "bundled": true, + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "bundled": true, + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "bundled": true, + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, "is-descriptor": { @@ -7959,9 +8302,9 @@ "bundled": true, "dev": true, "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" } }, "kind-of": { @@ -7976,14 +8319,14 @@ "bundled": true, "dev": true, "requires": { - "array-unique": "0.3.2", - "define-property": "1.0.0", - "expand-brackets": "2.1.4", - "extend-shallow": "2.0.1", - "fragment-cache": "0.2.1", - "regex-not": "1.0.2", - "snapdragon": "0.8.2", - "to-regex": "3.0.2" + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" }, "dependencies": { "define-property": { @@ -7991,7 +8334,7 @@ "bundled": true, "dev": true, "requires": { - "is-descriptor": "1.0.2" + "is-descriptor": "^1.0.0" } }, "extend-shallow": { @@ -7999,7 +8342,7 @@ "bundled": true, "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" } } } @@ -8009,10 +8352,10 @@ "bundled": true, "dev": true, "requires": { - "extend-shallow": "2.0.1", - "is-number": "3.0.0", - "repeat-string": "1.6.1", - "to-regex-range": "2.1.1" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" }, "dependencies": { "extend-shallow": { @@ -8020,45 +8363,35 @@ "bundled": true, "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" } } } }, "is-accessor-descriptor": { - "version": "0.1.6", + "version": "1.0.0", "bundled": true, "dev": true, "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "bundled": true, - "dev": true, - "requires": { - "is-buffer": "1.1.6" - } - } + "kind-of": "^6.0.0" } }, "is-data-descriptor": { - "version": "0.1.4", + "version": "1.0.0", "bundled": true, "dev": true, "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "bundled": true, - "dev": true, - "requires": { - "is-buffer": "1.1.6" - } - } + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } }, "is-number": { @@ -8066,7 +8399,7 @@ "bundled": true, "dev": true, "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -8074,7 +8407,7 @@ "bundled": true, "dev": true, "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -8090,23 +8423,23 @@ "dev": true }, "micromatch": { - "version": "3.1.9", + "version": "3.1.10", "bundled": true, "dev": true, "requires": { - "arr-diff": "4.0.0", - "array-unique": "0.3.2", - "braces": "2.3.1", - "define-property": "2.0.2", - "extend-shallow": "3.0.2", - "extglob": "2.0.4", - "fragment-cache": "0.2.1", - "kind-of": "6.0.2", - "nanomatch": "1.2.9", - "object.pick": "1.3.0", - "regex-not": "1.0.2", - "snapdragon": "0.8.2", - "to-regex": "3.0.2" + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" } } } @@ -8121,7 +8454,7 @@ "bundled": true, "dev": true, "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" } }, "to-regex": { @@ -8129,10 +8462,10 @@ "bundled": true, "dev": true, "requires": { - "define-property": "2.0.2", - "extend-shallow": "3.0.2", - "regex-not": "1.0.2", - "safe-regex": "1.1.0" + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" } }, "to-regex-range": { @@ -8140,8 +8473,8 @@ "bundled": true, "dev": true, "requires": { - "is-number": "3.0.0", - "repeat-string": "1.6.1" + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" }, "dependencies": { "is-number": { @@ -8149,7 +8482,7 @@ "bundled": true, "dev": true, "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" } } } @@ -8165,9 +8498,9 @@ "dev": true, "optional": true, "requires": { - "source-map": "0.5.7", - "uglify-to-browserify": "1.0.2", - "yargs": "3.10.0" + "source-map": "~0.5.1", + "uglify-to-browserify": "~1.0.0", + "yargs": "~3.10.0" }, "dependencies": { "yargs": { @@ -8176,9 +8509,9 @@ "dev": true, "optional": true, "requires": { - "camelcase": "1.2.1", - "cliui": "2.1.0", - "decamelize": "1.2.0", + "camelcase": "^1.0.2", + "cliui": "^2.1.0", + "decamelize": "^1.0.0", "window-size": "0.1.0" } } @@ -8195,10 +8528,10 @@ "bundled": true, "dev": true, "requires": { - "arr-union": "3.1.0", - "get-value": "2.0.6", - "is-extendable": "0.1.1", - "set-value": "0.4.3" + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^0.4.3" }, "dependencies": { "extend-shallow": { @@ -8206,7 +8539,7 @@ "bundled": true, "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" } }, "set-value": { @@ -8214,10 +8547,10 @@ "bundled": true, "dev": true, "requires": { - "extend-shallow": "2.0.1", - "is-extendable": "0.1.1", - "is-plain-object": "2.0.4", - "to-object-path": "0.3.0" + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.1", + "to-object-path": "^0.3.0" } } } @@ -8227,8 +8560,8 @@ "bundled": true, "dev": true, "requires": { - "has-value": "0.3.1", - "isobject": "3.0.1" + "has-value": "^0.3.1", + "isobject": "^3.0.0" }, "dependencies": { "has-value": { @@ -8236,9 +8569,9 @@ "bundled": true, "dev": true, "requires": { - "get-value": "2.0.6", - "has-values": "0.1.4", - "isobject": "2.1.0" + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" }, "dependencies": { "isobject": { @@ -8273,7 +8606,7 @@ "bundled": true, "dev": true, "requires": { - "kind-of": "6.0.2" + "kind-of": "^6.0.2" }, "dependencies": { "kind-of": { @@ -8288,8 +8621,8 @@ "bundled": true, "dev": true, "requires": { - "spdx-correct": "3.0.0", - "spdx-expression-parse": "3.0.0" + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" } }, "which": { @@ -8297,7 +8630,7 @@ "bundled": true, "dev": true, "requires": { - "isexe": "2.0.0" + "isexe": "^2.0.0" } }, "which-module": { @@ -8321,8 +8654,8 @@ "bundled": true, "dev": true, "requires": { - "string-width": "1.0.2", - "strip-ansi": "3.0.1" + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" }, "dependencies": { "is-fullwidth-code-point": { @@ -8330,7 +8663,7 @@ "bundled": true, "dev": true, "requires": { - "number-is-nan": "1.0.1" + "number-is-nan": "^1.0.0" } }, "string-width": { @@ -8338,9 +8671,9 @@ "bundled": true, "dev": true, "requires": { - "code-point-at": "1.1.0", - "is-fullwidth-code-point": "1.0.0", - "strip-ansi": "3.0.1" + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" } } } @@ -8355,9 +8688,9 @@ "bundled": true, "dev": true, "requires": { - "graceful-fs": "4.1.11", - "imurmurhash": "0.1.4", - "slide": "1.1.6" + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "slide": "^1.1.5" } }, "y18n": { @@ -8375,18 +8708,18 @@ "bundled": true, "dev": true, "requires": { - "cliui": "4.0.0", - "decamelize": "1.2.0", - "find-up": "2.1.0", - "get-caller-file": "1.0.2", - "os-locale": "2.1.0", - "require-directory": "2.1.1", - "require-main-filename": "1.0.1", - "set-blocking": "2.0.0", - "string-width": "2.1.1", - "which-module": "2.0.0", - "y18n": "3.2.1", - "yargs-parser": "9.0.2" + "cliui": "^4.0.0", + "decamelize": "^1.1.1", + "find-up": "^2.1.0", + "get-caller-file": "^1.0.1", + "os-locale": "^2.0.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^9.0.2" }, "dependencies": { "ansi-regex": { @@ -8400,13 +8733,13 @@ "dev": true }, "cliui": { - "version": "4.0.0", + "version": "4.1.0", "bundled": true, "dev": true, "requires": { - "string-width": "2.1.1", - "strip-ansi": "4.0.0", - "wrap-ansi": "2.1.0" + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0", + "wrap-ansi": "^2.0.0" } }, "strip-ansi": { @@ -8414,7 +8747,7 @@ "bundled": true, "dev": true, "requires": { - "ansi-regex": "3.0.0" + "ansi-regex": "^3.0.0" } }, "yargs-parser": { @@ -8422,7 +8755,7 @@ "bundled": true, "dev": true, "requires": { - "camelcase": "4.1.0" + "camelcase": "^4.1.0" } } } @@ -8432,7 +8765,7 @@ "bundled": true, "dev": true, "requires": { - "camelcase": "4.1.0" + "camelcase": "^4.1.0" }, "dependencies": { "camelcase": { @@ -8462,9 +8795,9 @@ "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", "dev": true, "requires": { - "copy-descriptor": "0.1.1", - "define-property": "0.2.5", - "kind-of": "3.2.2" + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" }, "dependencies": { "define-property": { @@ -8473,7 +8806,7 @@ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, "requires": { - "is-descriptor": "0.1.6" + "is-descriptor": "^0.1.0" } }, "kind-of": { @@ -8482,7 +8815,7 @@ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -8499,7 +8832,19 @@ "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", "dev": true, "requires": { - "isobject": "3.0.1" + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", + "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", + "dev": true, + "requires": { + "define-properties": "^1.1.2", + "function-bind": "^1.1.1", + "has-symbols": "^1.0.0", + "object-keys": "^1.0.11" } }, "object.defaults": { @@ -8508,10 +8853,10 @@ "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=", "dev": true, "requires": { - "array-each": "1.0.1", - "array-slice": "1.1.0", - "for-own": "1.0.0", - "isobject": "3.0.1" + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" } }, "object.map": { @@ -8520,8 +8865,8 @@ "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=", "dev": true, "requires": { - "for-own": "1.0.0", - "make-iterator": "1.0.1" + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" } }, "object.omit": { @@ -8530,8 +8875,8 @@ "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", "dev": true, "requires": { - "for-own": "0.1.5", - "is-extendable": "0.1.1" + "for-own": "^0.1.4", + "is-extendable": "^0.1.1" }, "dependencies": { "for-own": { @@ -8540,7 +8885,7 @@ "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", "dev": true, "requires": { - "for-in": "1.0.2" + "for-in": "^1.0.1" } } } @@ -8551,7 +8896,17 @@ "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", "dev": true, "requires": { - "isobject": "3.0.1" + "isobject": "^3.0.1" + } + }, + "object.reduce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", + "integrity": "sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=", + "dev": true, + "requires": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" } }, "on-finished": { @@ -8568,7 +8923,7 @@ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "requires": { - "wrappy": "1.0.2" + "wrappy": "1" } }, "open": { @@ -8582,8 +8937,8 @@ "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", "dev": true, "requires": { - "minimist": "0.0.10", - "wordwrap": "0.0.3" + "minimist": "~0.0.1", + "wordwrap": "~0.0.2" }, "dependencies": { "minimist": { @@ -8606,31 +8961,55 @@ "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", "dev": true, "requires": { - "deep-is": "0.1.3", - "fast-levenshtein": "2.0.6", - "levn": "0.3.0", - "prelude-ls": "1.1.2", - "type-check": "0.3.2", - "wordwrap": "1.0.0" + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.4", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "wordwrap": "~1.0.0" } }, - "orchestrator": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.8.tgz", - "integrity": "sha1-FOfp4nZPcxX7rBhOUGx6pt+UrX4=", + "ordered-read-streams": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", + "integrity": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=", "dev": true, "requires": { - "end-of-stream": "0.1.5", - "sequencify": "0.0.7", - "stream-consume": "0.1.1" + "readable-stream": "^2.0.1" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, - "ordered-read-streams": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz", - "integrity": "sha1-/VZamvjrRHO6abbtijQ1LLVS8SY=", - "dev": true - }, "os-homedir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", @@ -8643,9 +9022,9 @@ "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==", "dev": true, "requires": { - "execa": "0.7.0", - "lcid": "1.0.0", - "mem": "1.1.0" + "execa": "^0.7.0", + "lcid": "^1.0.0", + "mem": "^1.1.0" } }, "os-tmpdir": { @@ -8659,8 +9038,8 @@ "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", "dev": true, "requires": { - "os-homedir": "1.0.2", - "os-tmpdir": "1.0.2" + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" } }, "over": { @@ -8681,7 +9060,7 @@ "integrity": "sha512-Y/OtIaXtUPr4/YpMv1pCL5L5ed0rumAaAeBSj12F+bSlMdys7i8oQF/GUJmfpTS/QoaRrS/k6pma29haJpsMng==", "dev": true, "requires": { - "p-try": "1.0.0" + "p-try": "^1.0.0" } }, "p-locate": { @@ -8690,7 +9069,7 @@ "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", "dev": true, "requires": { - "p-limit": "1.2.0" + "p-limit": "^1.1.0" } }, "p-map": { @@ -8711,9 +9090,9 @@ "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=", "dev": true, "requires": { - "is-absolute": "1.0.0", - "map-cache": "0.2.2", - "path-root": "0.1.1" + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" } }, "parse-glob": { @@ -8722,10 +9101,10 @@ "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", "dev": true, "requires": { - "glob-base": "0.3.0", - "is-dotfile": "1.0.3", - "is-extglob": "1.0.0", - "is-glob": "2.0.1" + "glob-base": "^0.3.0", + "is-dotfile": "^1.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.0" }, "dependencies": { "is-extglob": { @@ -8740,7 +9119,7 @@ "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", "dev": true, "requires": { - "is-extglob": "1.0.0" + "is-extglob": "^1.0.0" } } } @@ -8751,7 +9130,7 @@ "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", "dev": true, "requires": { - "error-ex": "1.3.1" + "error-ex": "^1.2.0" } }, "parse-passwd": { @@ -8766,7 +9145,7 @@ "integrity": "sha1-mkr9bfBj3Egm+T+6SpnPIj9mbLg=", "dev": true, "requires": { - "semver": "5.5.0" + "semver": "^5.1.0" } }, "parse5": { @@ -8775,7 +9154,7 @@ "integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==", "dev": true, "requires": { - "@types/node": "9.6.4" + "@types/node": "*" } }, "parseurl": { @@ -8831,7 +9210,7 @@ "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", "dev": true, "requires": { - "path-root-regex": "0.1.2" + "path-root-regex": "^0.1.0" } }, "path-root-regex": { @@ -8846,9 +9225,9 @@ "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", "dev": true, "requires": { - "graceful-fs": "4.1.11", - "pify": "2.3.0", - "pinkie-promise": "2.0.1" + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" }, "dependencies": { "pify": { @@ -8871,7 +9250,7 @@ "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", "dev": true, "requires": { - "through": "2.3.8" + "through": "~2.3" } }, "pend": { @@ -8880,9 +9259,9 @@ "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=" }, "performance-now": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz", - "integrity": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", "dev": true }, "pify": { @@ -8903,7 +9282,7 @@ "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", "dev": true, "requires": { - "pinkie": "2.0.4" + "pinkie": "^2.0.0" } }, "plist": { @@ -8912,9 +9291,9 @@ "integrity": "sha512-GpgvHHocGRyQm74b6FWEZZVRroHKE1I0/BTjAmySaohK+cUn+hZpbqXkc3KWgW3gQYkqcQej35FohcT0FRlkRQ==", "dev": true, "requires": { - "base64-js": "1.2.3", - "xmlbuilder": "9.0.7", - "xmldom": "0.1.27" + "base64-js": "^1.2.3", + "xmlbuilder": "^9.0.7", + "xmldom": "0.1.x" } }, "plugin-error": { @@ -8923,11 +9302,11 @@ "integrity": "sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4=", "dev": true, "requires": { - "ansi-cyan": "0.1.1", - "ansi-red": "0.1.1", - "arr-diff": "1.1.0", - "arr-union": "2.1.0", - "extend-shallow": "1.1.4" + "ansi-cyan": "^0.1.1", + "ansi-red": "^0.1.1", + "arr-diff": "^1.0.1", + "arr-union": "^2.0.1", + "extend-shallow": "^1.1.2" }, "dependencies": { "arr-diff": { @@ -8936,8 +9315,8 @@ "integrity": "sha1-aHwydYFjWI/vfeezb6vklesaOZo=", "dev": true, "requires": { - "arr-flatten": "1.1.0", - "array-slice": "0.2.3" + "arr-flatten": "^1.0.1", + "array-slice": "^0.2.3" } }, "arr-union": { @@ -8958,7 +9337,7 @@ "integrity": "sha1-Gda/lN/AnXa6cR85uHLSH/TdkHE=", "dev": true, "requires": { - "kind-of": "1.1.0" + "kind-of": "^1.1.0" } }, "kind-of": { @@ -9005,7 +9384,7 @@ "integrity": "sha1-tCGyQUDWID8e08dplrRCewjowBQ=", "dev": true, "requires": { - "event-stream": "3.3.4" + "event-stream": "~3.3.0" } }, "pseudomap": { @@ -9020,10 +9399,31 @@ "integrity": "sha1-1vs79a7Wl+gxFQ6xACwlo/iuExQ=", "dev": true, "requires": { - "over": "0.0.5", - "readable-stream": "1.0.34", - "setimmediate": "1.0.5", - "slice-stream": "1.0.0" + "over": ">= 0.0.5 < 1", + "readable-stream": "~1.0.31", + "setimmediate": ">= 1.0.2 < 2", + "slice-stream": ">= 1.0.0 < 2" + } + }, + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" } }, "punycode": { @@ -9039,15 +9439,15 @@ "dev": true }, "qs": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz", - "integrity": "sha1-E+JtKK1rD/qpExLNO/cI7TUecjM=", + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", "dev": true }, "querystringify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-1.0.0.tgz", - "integrity": "sha1-YoYkIRLFtxL6ZU5SZlK/ahP/Bcs=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.0.0.tgz", + "integrity": "sha512-eTPo5t/4bgaMNZxyjWx6N2a6AuE0mq51KWvpc7nU/MAqixcI6v6KrGUKES0HaomdnolQBBXU/++X6/QQ9KL4tw==", "dev": true }, "queue": { @@ -9056,27 +9456,25 @@ "integrity": "sha1-bEnQHwCeIlZ4h4nyv/rGuLmZBYU=", "dev": true, "requires": { - "inherits": "2.0.3" + "inherits": "~2.0.0" } }, "randomatic": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz", - "integrity": "sha512-D5JUjPyJbaJDkuAazpVnSfVkLlpeO3wDlPROTMLGKG1zMFNFRgrciKo1ltz/AzNTkqE0HzDx655QOL51N06how==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.0.0.tgz", + "integrity": "sha512-VdxFOIEY3mNO5PtSRkkle/hPJDHvQhK21oa73K4yAc9qmp6N429gAyF1gZMOTMeS0/AYzaV/2Trcef+NaIonSA==", "dev": true, "requires": { - "is-number": "3.0.0", - "kind-of": "4.0.0" + "is-number": "^4.0.0", + "kind-of": "^6.0.0", + "math-random": "^1.0.1" }, "dependencies": { - "kind-of": { + "is-number": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "dev": true, - "requires": { - "is-buffer": "1.1.6" - } + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true } } }, @@ -9107,7 +9505,7 @@ "depd": "1.1.1", "inherits": "2.0.3", "setprototypeof": "1.0.3", - "statuses": "1.5.0" + "statuses": ">= 1.3.1 < 2" } }, "setprototypeof": { @@ -9124,7 +9522,7 @@ "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", "dev": true, "requires": { - "mute-stream": "0.0.7" + "mute-stream": "~0.0.4" } }, "read-pkg": { @@ -9133,9 +9531,9 @@ "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", "dev": true, "requires": { - "load-json-file": "1.1.0", - "normalize-package-data": "2.4.0", - "path-type": "1.1.0" + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" } }, "read-pkg-up": { @@ -9144,8 +9542,8 @@ "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", "dev": true, "requires": { - "find-up": "1.1.2", - "read-pkg": "1.1.0" + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" }, "dependencies": { "find-up": { @@ -9154,8 +9552,8 @@ "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", "dev": true, "requires": { - "path-exists": "2.1.0", - "pinkie-promise": "2.0.1" + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" } }, "path-exists": { @@ -9164,7 +9562,7 @@ "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", "dev": true, "requires": { - "pinkie-promise": "2.0.1" + "pinkie-promise": "^2.0.0" } } } @@ -9175,10 +9573,10 @@ "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", "isarray": "0.0.1", - "string_decoder": "0.10.31" + "string_decoder": "~0.10.x" } }, "readdir-enhanced": { @@ -9187,9 +9585,53 @@ "integrity": "sha1-YUYwSGkKxqRVt1ti+nioj43IXlM=", "dev": true, "requires": { - "call-me-maybe": "1.0.1", - "es6-promise": "4.2.4", - "glob-to-regexp": "0.3.0" + "call-me-maybe": "^1.0.1", + "es6-promise": "^4.1.0", + "glob-to-regexp": "^0.3.0" + } + }, + "readdirp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", + "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "minimatch": "^3.0.2", + "readable-stream": "^2.0.2", + "set-immediate-shim": "^1.0.1" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, "rechoir": { @@ -9198,7 +9640,7 @@ "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", "dev": true, "requires": { - "resolve": "1.7.0" + "resolve": "^1.1.6" } }, "regenerator-runtime": { @@ -9213,7 +9655,7 @@ "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", "dev": true, "requires": { - "is-equal-shallow": "0.1.3" + "is-equal-shallow": "^0.1.3" } }, "regex-not": { @@ -9222,8 +9664,8 @@ "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", "dev": true, "requires": { - "extend-shallow": "3.0.2", - "safe-regex": "1.1.0" + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" } }, "remap-istanbul": { @@ -9232,11 +9674,11 @@ "integrity": "sha512-gQqJ+mW+jF7Hv8hXYO/pIRMz6WgZyrlp3rSxejGXzwqtK9+sNTB/tUSnLWAFTgQx4x5dx0sPDsLvbpZXuZ0omQ==", "dev": true, "requires": { - "amdefine": "1.0.1", + "amdefine": "^1.0.0", "istanbul": "0.4.5", - "minimatch": "3.0.4", - "plugin-error": "0.1.2", - "source-map": "0.6.1", + "minimatch": "^3.0.3", + "plugin-error": "^0.1.2", + "source-map": "^0.6.1", "through2": "2.0.1" }, "dependencies": { @@ -9258,12 +9700,12 @@ "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "string_decoder": "0.10.31", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" } }, "source-map": { @@ -9278,12 +9720,33 @@ "integrity": "sha1-OE51MU1J8y3hLuu4E2uOtrXVnak=", "dev": true, "requires": { - "readable-stream": "2.0.6", - "xtend": "4.0.1" + "readable-stream": "~2.0.0", + "xtend": "~4.0.0" } } } }, + "remove-bom-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", + "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5", + "is-utf8": "^0.2.1" + } + }, + "remove-bom-stream": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", + "integrity": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=", + "dev": true, + "requires": { + "remove-bom-buffer": "^3.0.0", + "safe-buffer": "^5.1.0", + "through2": "^2.0.3" + } + }, "remove-trailing-separator": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", @@ -9303,39 +9766,141 @@ "dev": true }, "replace-ext": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", - "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", + "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", "dev": true }, + "replace-homedir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", + "integrity": "sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw=", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1", + "is-absolute": "^1.0.0", + "remove-trailing-separator": "^1.1.0" + } + }, "request": { - "version": "2.81.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.81.0.tgz", - "integrity": "sha1-xpKJRqDgbF+Nb4qTM0af/aRimKA=", - "dev": true, - "requires": { - "aws-sign2": "0.6.0", - "aws4": "1.7.0", - "caseless": "0.12.0", - "combined-stream": "1.0.6", - "extend": "3.0.1", - "forever-agent": "0.6.1", - "form-data": "2.1.4", - "har-validator": "4.2.1", - "hawk": "3.1.3", - "http-signature": "1.1.1", - "is-typedarray": "1.0.0", - "isstream": "0.1.2", - "json-stringify-safe": "5.0.1", - "mime-types": "2.1.18", - "oauth-sign": "0.8.2", - "performance-now": "0.2.0", - "qs": "6.4.0", - "safe-buffer": "5.1.1", - "stringstream": "0.0.5", - "tough-cookie": "2.3.4", - "tunnel-agent": "0.6.0", - "uuid": "3.2.1" + "version": "2.86.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.86.0.tgz", + "integrity": "sha512-BQZih67o9r+Ys94tcIW4S7Uu8pthjrQVxhsZ/weOwHbDfACxvIyvnAbzFQxjy1jMtvFSzv5zf4my6cZsJBbVzw==", + "dev": true, + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.6.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.5", + "extend": "~3.0.1", + "forever-agent": "~0.6.1", + "form-data": "~2.3.1", + "har-validator": "~5.0.3", + "hawk": "~6.0.2", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.17", + "oauth-sign": "~0.8.2", + "performance-now": "^2.1.0", + "qs": "~6.5.1", + "safe-buffer": "^5.1.1", + "tough-cookie": "~2.3.3", + "tunnel-agent": "^0.6.0", + "uuid": "^3.1.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "dev": true + }, + "boom": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz", + "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=", + "dev": true, + "requires": { + "hoek": "4.x.x" + } + }, + "cryptiles": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz", + "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=", + "dev": true, + "requires": { + "boom": "5.x.x" + }, + "dependencies": { + "boom": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz", + "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==", + "dev": true, + "requires": { + "hoek": "4.x.x" + } + } + } + }, + "form-data": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz", + "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "1.0.6", + "mime-types": "^2.1.12" + } + }, + "hawk": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz", + "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==", + "dev": true, + "requires": { + "boom": "4.x.x", + "cryptiles": "3.x.x", + "hoek": "4.x.x", + "sntp": "2.x.x" + } + }, + "hoek": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz", + "integrity": "sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==", + "dev": true + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "sntp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz", + "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==", + "dev": true, + "requires": { + "hoek": "4.x.x" + } + } } }, "request-light": { @@ -9345,7 +9910,7 @@ "requires": { "http-proxy-agent": "2.0.0", "https-proxy-agent": "2.1.1", - "vscode-nls": "2.0.2" + "vscode-nls": "^2.0.2" }, "dependencies": { "debug": { @@ -9361,8 +9926,8 @@ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-2.0.0.tgz", "integrity": "sha1-RkgqLwUjpNYIJVFwn0acs+SoX/Q=", "requires": { - "agent-base": "4.2.0", - "debug": "2.6.9" + "agent-base": "4", + "debug": "2" } }, "https-proxy-agent": { @@ -9370,8 +9935,8 @@ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.1.1.tgz", "integrity": "sha512-LK6tQUR/VOkTI6ygAfWUKKP95I+e6M1h7N3PncGu1CATHCnex+CAv9ttR0lbHu1Uk2PXm/WoAHFo6JCGwMjVMw==", "requires": { - "agent-base": "4.2.0", - "debug": "3.1.0" + "agent-base": "^4.1.0", + "debug": "^3.1.0" }, "dependencies": { "debug": { @@ -9410,7 +9975,7 @@ "integrity": "sha512-QdgZ5bjR1WAlpLaO5yHepFvC+o3rCr6wpfE2tpJNMkXdulf2jKomQBdNRQITF3ZKHNlT71syG98yQP03gasgnA==", "dev": true, "requires": { - "path-parse": "1.0.5" + "path-parse": "^1.0.5" } }, "resolve-dir": { @@ -9419,8 +9984,17 @@ "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", "dev": true, "requires": { - "expand-tilde": "2.0.2", - "global-modules": "1.0.0" + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + } + }, + "resolve-options": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", + "integrity": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=", + "dev": true, + "requires": { + "value-or-function": "^3.0.0" } }, "resolve-url": { @@ -9442,7 +10016,7 @@ "dev": true, "optional": true, "requires": { - "align-text": "0.1.4" + "align-text": "^0.1.1" } }, "rimraf": { @@ -9450,13 +10024,13 @@ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", "requires": { - "glob": "7.1.2" + "glob": "^7.0.5" } }, "rxjs": { - "version": "5.5.9", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-5.5.9.tgz", - "integrity": "sha512-DHG9AHmCmgaFWgjBcXp6NxFDmh3MvIA62GqTWmLnTzr/3oZ6h5hLD8NA+9j+GF0jEwklNIpI4KuuyLG8UWMEvQ==", + "version": "5.5.6", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-5.5.6.tgz", + "integrity": "sha512-v4Q5HDC0FHAQ7zcBX7T2IL6O5ltl1a2GX4ENjPXg6SjDY69Cmx9v4113C99a4wGF16ClPv5Z8mghuYorVkg/kg==", "requires": { "symbol-observable": "1.0.1" } @@ -9473,7 +10047,7 @@ "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", "dev": true, "requires": { - "ret": "0.1.15" + "ret": "~0.1.10" } }, "semver": { @@ -9481,11 +10055,14 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==" }, - "sequencify": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz", - "integrity": "sha1-kM/xnQLgcCf9dn9erT57ldHnOAw=", - "dev": true + "semver-greatest-satisfied-range": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", + "integrity": "sha1-E+jCZYq5aRywzXEJMkAoDTb3els=", + "dev": true, + "requires": { + "sver-compat": "^1.5.0" + } }, "set-blocking": { "version": "2.0.0", @@ -9493,16 +10070,22 @@ "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", "dev": true }, + "set-immediate-shim": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", + "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=", + "dev": true + }, "set-value": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==", "dev": true, "requires": { - "extend-shallow": "2.0.1", - "is-extendable": "0.1.1", - "is-plain-object": "2.0.4", - "split-string": "3.1.0" + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" }, "dependencies": { "extend-shallow": { @@ -9511,7 +10094,7 @@ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" } } } @@ -9534,7 +10117,7 @@ "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", "dev": true, "requires": { - "shebang-regex": "1.0.0" + "shebang-regex": "^1.0.0" } }, "shebang-regex": { @@ -9549,10 +10132,10 @@ "integrity": "sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c=", "dev": true, "requires": { - "array-filter": "0.0.1", - "array-map": "0.0.0", - "array-reduce": "0.0.0", - "jsonify": "0.0.0" + "array-filter": "~0.0.0", + "array-map": "~0.0.0", + "array-reduce": "~0.0.0", + "jsonify": "~0.0.0" } }, "shelljs": { @@ -9561,9 +10144,9 @@ "integrity": "sha512-YA/iYtZpzFe5HyWVGrb02FjPxc4EMCfpoU/Phg9fQoyMC72u9598OUBrsU8IrtwAKG0tO8IYaqbaLIw+k3IRGA==", "dev": true, "requires": { - "glob": "7.1.2", - "interpret": "1.1.0", - "rechoir": "0.6.2" + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" } }, "sift": { @@ -9572,12 +10155,6 @@ "integrity": "sha1-G78t+w63HlbEzH+1Z/vRNRtlAV4=", "dev": true }, - "sigmund": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", - "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", - "dev": true - }, "signal-exit": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", @@ -9590,7 +10167,7 @@ "integrity": "sha1-WzO9ZvATsaf4ZGCwPUY97DmtPqA=", "dev": true, "requires": { - "readable-stream": "1.0.34" + "readable-stream": "~1.0.31" } }, "snapdragon": { @@ -9599,14 +10176,14 @@ "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", "dev": true, "requires": { - "base": "0.11.2", - "debug": "2.6.9", - "define-property": "0.2.5", - "extend-shallow": "2.0.1", - "map-cache": "0.2.2", - "source-map": "0.5.7", - "source-map-resolve": "0.5.1", - "use": "3.1.0" + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" }, "dependencies": { "debug": { @@ -9624,7 +10201,7 @@ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, "requires": { - "is-descriptor": "0.1.6" + "is-descriptor": "^0.1.0" } }, "extend-shallow": { @@ -9633,7 +10210,7 @@ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" } } } @@ -9644,9 +10221,9 @@ "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", "dev": true, "requires": { - "define-property": "1.0.0", - "isobject": "3.0.1", - "snapdragon-util": "3.0.1" + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" }, "dependencies": { "define-property": { @@ -9655,7 +10232,7 @@ "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", "dev": true, "requires": { - "is-descriptor": "1.0.2" + "is-descriptor": "^1.0.0" } }, "is-accessor-descriptor": { @@ -9664,7 +10241,7 @@ "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, "requires": { - "kind-of": "6.0.2" + "kind-of": "^6.0.0" } }, "is-data-descriptor": { @@ -9673,7 +10250,7 @@ "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, "requires": { - "kind-of": "6.0.2" + "kind-of": "^6.0.0" } }, "is-descriptor": { @@ -9682,9 +10259,9 @@ "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, "requires": { - "is-accessor-descriptor": "1.0.0", - "is-data-descriptor": "1.0.0", - "kind-of": "6.0.2" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } } } @@ -9695,7 +10272,7 @@ "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", "dev": true, "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.2.0" }, "dependencies": { "kind-of": { @@ -9704,20 +10281,11 @@ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } }, - "sntp": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", - "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", - "dev": true, - "requires": { - "hoek": "2.16.3" - } - }, "source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", @@ -9725,16 +10293,16 @@ "dev": true }, "source-map-resolve": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.1.tgz", - "integrity": "sha512-0KW2wvzfxm8NCTb30z0LMNyPqWCdDGE2viwzUaucqJdkTRXtZiSY3I+2A6nVAjmdOy0I4gU8DwnVVGsk9jvP2A==", + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", + "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", "dev": true, "requires": { - "atob": "2.1.0", - "decode-uri-component": "0.2.0", - "resolve-url": "0.2.1", - "source-map-url": "0.4.0", - "urix": "0.1.0" + "atob": "^2.1.1", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" } }, "source-map-support": { @@ -9743,7 +10311,7 @@ "integrity": "sha512-PETSPG6BjY1AHs2t64vS2aqAgu6dMIMXJULWFBGbh2Gr8nVLbCFDo6i/RMMvviIQ2h1Z8+5gQhVKSn2je9nmdg==", "dev": true, "requires": { - "source-map": "0.6.1" + "source-map": "^0.6.0" }, "dependencies": { "source-map": { @@ -9772,8 +10340,8 @@ "integrity": "sha512-N19o9z5cEyc8yQQPukRCZ9EUmb4HUpnrmaL/fxS2pBo2jbfcFRVuFZ/oFC+vZz0MNNk0h80iMn5/S6qGZOL5+g==", "dev": true, "requires": { - "spdx-expression-parse": "3.0.0", - "spdx-license-ids": "3.0.0" + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" } }, "spdx-exceptions": { @@ -9788,8 +10356,8 @@ "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", "dev": true, "requires": { - "spdx-exceptions": "2.1.0", - "spdx-license-ids": "3.0.0" + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" } }, "spdx-license-ids": { @@ -9804,7 +10372,7 @@ "integrity": "sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=", "dev": true, "requires": { - "through": "2.3.8" + "through": "2" } }, "split-string": { @@ -9813,7 +10381,7 @@ "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", "dev": true, "requires": { - "extend-shallow": "3.0.2" + "extend-shallow": "^3.0.0" } }, "sprintf-js": { @@ -9828,14 +10396,14 @@ "integrity": "sha1-Ew9Zde3a2WPx1W+SuaxsUfqfg+s=", "dev": true, "requires": { - "asn1": "0.2.3", - "assert-plus": "1.0.0", - "bcrypt-pbkdf": "1.0.1", - "dashdash": "1.14.1", - "ecc-jsbn": "0.1.1", - "getpass": "0.1.7", - "jsbn": "0.1.1", - "tweetnacl": "0.14.5" + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "tweetnacl": "~0.14.0" }, "dependencies": { "assert-plus": { @@ -9846,6 +10414,12 @@ } } }, + "stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=", + "dev": true + }, "stat-mode": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/stat-mode/-/stat-mode-0.2.2.tgz", @@ -9858,8 +10432,8 @@ "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", "dev": true, "requires": { - "define-property": "0.2.5", - "object-copy": "0.1.0" + "define-property": "^0.2.5", + "object-copy": "^0.1.0" }, "dependencies": { "define-property": { @@ -9868,7 +10442,7 @@ "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, "requires": { - "is-descriptor": "0.1.6" + "is-descriptor": "^0.1.0" } } } @@ -9885,13 +10459,13 @@ "integrity": "sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=", "dev": true, "requires": { - "duplexer": "0.1.1" + "duplexer": "~0.1.1" } }, - "stream-consume": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.1.tgz", - "integrity": "sha512-tNa3hzgkjEP7XbCkbRXe1jpg+ievoa0O4SCFlMOYEscGSS4JJsckGL8swUyAa/ApGU3Ae4t6Honor4HhL+tRyg==", + "stream-exhaust": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", + "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", "dev": true }, "stream-shift": { @@ -9906,7 +10480,7 @@ "integrity": "sha512-Gk6KZM+yNA1JpW0KzlZIhjo3EaBJDkYfXtYSbOwNIQ7Zd6006E6+sCFlW1NDvFG/vnXhKmw6TJJgiEQg/8lXfQ==", "dev": true, "requires": { - "readable-stream": "2.3.6" + "readable-stream": "^2.0.2" }, "dependencies": { "isarray": { @@ -9921,13 +10495,13 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -9936,7 +10510,7 @@ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "~5.1.0" } } } @@ -9953,8 +10527,8 @@ "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", "dev": true, "requires": { - "is-fullwidth-code-point": "2.0.0", - "strip-ansi": "4.0.0" + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" } }, "string.prototype.padend": { @@ -9963,9 +10537,9 @@ "integrity": "sha1-86rvfBcZ8XDF6rHDK/eA2W4h8vA=", "dev": true, "requires": { - "define-properties": "1.1.2", - "es-abstract": "1.11.0", - "function-bind": "1.1.1" + "define-properties": "^1.1.2", + "es-abstract": "^1.4.3", + "function-bind": "^1.0.2" } }, "string_decoder": { @@ -9974,29 +10548,22 @@ "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", "dev": true }, - "stringstream": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", - "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=", - "dev": true - }, "strip-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", "dev": true, "requires": { - "ansi-regex": "3.0.0" + "ansi-regex": "^3.0.0" } }, "strip-bom": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz", - "integrity": "sha1-hbiGLzhEtabV7IRnqTWYFzo295Q=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", "dev": true, "requires": { - "first-chunk-stream": "1.0.0", - "is-utf8": "0.2.1" + "is-utf8": "^0.2.0" } }, "strip-bom-stream": { @@ -10005,19 +10572,8 @@ "integrity": "sha1-5xRDmFd9Uaa+0PoZlPoF9D/ZiO4=", "dev": true, "requires": { - "first-chunk-stream": "1.0.0", - "strip-bom": "2.0.0" - }, - "dependencies": { - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true, - "requires": { - "is-utf8": "0.2.1" - } - } + "first-chunk-stream": "^1.0.0", + "strip-bom": "^2.0.0" } }, "strip-eof": { @@ -10032,6 +10588,16 @@ "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", "dev": true }, + "sver-compat": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", + "integrity": "sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg=", + "dev": true, + "requires": { + "es6-iterator": "^2.0.1", + "es6-symbol": "^3.1.1" + } + }, "symbol-observable": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz", @@ -10043,9 +10609,9 @@ "integrity": "sha1-jk0qJWwOIYXGsYrWlK7JaLg8sdE=", "dev": true, "requires": { - "block-stream": "0.0.9", - "fstream": "1.0.11", - "inherits": "2.0.3" + "block-stream": "*", + "fstream": "^1.0.2", + "inherits": "2" }, "dependencies": { "fstream": { @@ -10054,10 +10620,10 @@ "integrity": "sha1-XB+x8RdHcRTwYyoOtLcbPLD9MXE=", "dev": true, "requires": { - "graceful-fs": "4.1.11", - "inherits": "2.0.3", - "mkdirp": "0.5.1", - "rimraf": "2.6.2" + "graceful-fs": "^4.1.2", + "inherits": "~2.0.0", + "mkdirp": ">=0.5 0", + "rimraf": "2" } } } @@ -10068,10 +10634,10 @@ "integrity": "sha512-mQdgLPc/Vjfr3VWqWbfxW8yQNiJCbAZ+Gf6GDu1Cy0bdb33ofyiNGBtAY96jHFhDuivCwgW1H9DgTON+INiXgg==", "dev": true, "requires": { - "bl": "1.2.2", - "end-of-stream": "1.4.1", - "readable-stream": "2.3.6", - "xtend": "4.0.1" + "bl": "^1.0.0", + "end-of-stream": "^1.0.0", + "readable-stream": "^2.0.0", + "xtend": "^4.0.0" }, "dependencies": { "end-of-stream": { @@ -10080,7 +10646,7 @@ "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", "dev": true, "requires": { - "once": "1.4.0" + "once": "^1.4.0" } }, "isarray": { @@ -10095,13 +10661,13 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -10110,7 +10676,7 @@ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "~5.1.0" } } } @@ -10127,8 +10693,8 @@ "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", "dev": true, "requires": { - "readable-stream": "2.3.6", - "xtend": "4.0.1" + "readable-stream": "^2.1.5", + "xtend": "~4.0.1" }, "dependencies": { "isarray": { @@ -10143,13 +10709,13 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -10158,7 +10724,7 @@ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "~5.1.0" } } } @@ -10166,26 +10732,11 @@ "through2-filter": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-2.0.0.tgz", - "integrity": "sha1-YLxVoNrLdghdsfna6Zq0P4PWIuw=", - "dev": true, - "requires": { - "through2": "2.0.3", - "xtend": "4.0.1" - } - }, - "thunks": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/thunks/-/thunks-4.9.2.tgz", - "integrity": "sha1-qsLTU4ElEhYKRhHjAI16luN1b44=", - "dev": true - }, - "tildify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/tildify/-/tildify-1.2.0.tgz", - "integrity": "sha1-3OwD9V3Km3qj5bBPIYF+tW5jWIo=", + "integrity": "sha1-YLxVoNrLdghdsfna6Zq0P4PWIuw=", "dev": true, "requires": { - "os-homedir": "1.0.2" + "through2": "~2.0.0", + "xtend": "~4.0.0" } }, "time-stamp": { @@ -10199,7 +10750,7 @@ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "requires": { - "os-tmpdir": "1.0.2" + "os-tmpdir": "~1.0.2" } }, "to-absolute-glob": { @@ -10208,7 +10759,7 @@ "integrity": "sha1-HN+kcqnvUMI57maZm2YsoOs5k38=", "dev": true, "requires": { - "extend-shallow": "2.0.1" + "extend-shallow": "^2.0.1" }, "dependencies": { "extend-shallow": { @@ -10217,7 +10768,7 @@ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" } } } @@ -10228,7 +10779,7 @@ "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", "dev": true, "requires": { - "kind-of": "3.2.2" + "kind-of": "^3.0.2" }, "dependencies": { "kind-of": { @@ -10237,7 +10788,7 @@ "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "requires": { - "is-buffer": "1.1.6" + "is-buffer": "^1.1.5" } } } @@ -10248,10 +10799,10 @@ "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", "dev": true, "requires": { - "define-property": "2.0.2", - "extend-shallow": "3.0.2", - "regex-not": "1.0.2", - "safe-regex": "1.1.0" + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" } }, "to-regex-range": { @@ -10260,8 +10811,17 @@ "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", "dev": true, "requires": { - "is-number": "3.0.0", - "repeat-string": "1.6.1" + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "to-through": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", + "integrity": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=", + "dev": true, + "requires": { + "through2": "^2.0.3" } }, "tough-cookie": { @@ -10270,7 +10830,7 @@ "integrity": "sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==", "dev": true, "requires": { - "punycode": "1.4.1" + "punycode": "^1.4.1" } }, "traverse": { @@ -10280,19 +10840,19 @@ "dev": true }, "ts-node": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-5.0.1.tgz", - "integrity": "sha512-XK7QmDcNHVmZkVtkiwNDWiERRHPyU8nBqZB1+iv2UhOG0q3RQ9HsZ2CMqISlFbxjrYFGfG2mX7bW4dAyxBVzUw==", - "dev": true, - "requires": { - "arrify": "1.0.1", - "chalk": "2.3.2", - "diff": "3.3.1", - "make-error": "1.3.4", - "minimist": "1.2.0", - "mkdirp": "0.5.1", - "source-map-support": "0.5.4", - "yn": "2.0.0" + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-6.0.3.tgz", + "integrity": "sha512-ARaOMNFEPKg2ZuC1qJddFvHxHNFVckR0g9xLxMIoMqSSIkDc8iS4/LoV53EdDWWNq2FGwqcEf0bVVGJIWpsznw==", + "dev": true, + "requires": { + "arrify": "^1.0.0", + "chalk": "^2.3.0", + "diff": "^3.1.0", + "make-error": "^1.1.1", + "minimist": "^1.2.0", + "mkdirp": "^0.5.1", + "source-map-support": "^0.5.3", + "yn": "^2.0.0" }, "dependencies": { "ansi-styles": { @@ -10301,18 +10861,18 @@ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "color-convert": "1.9.1" + "color-convert": "^1.9.0" } }, "chalk": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.2.tgz", - "integrity": "sha512-ZM4j2/ld/YZDc3Ma8PgN7gyAk+kHMMMyzLNryCPGhWrsfAuDVeuid5bpRFTDgMH9JBK2lA4dyyAkkZYF/WcqDQ==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", + "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", "dev": true, "requires": { - "ansi-styles": "3.2.1", - "escape-string-regexp": "1.0.5", - "supports-color": "5.3.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" } }, "has-flag": { @@ -10322,12 +10882,12 @@ "dev": true }, "supports-color": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.3.0.tgz", - "integrity": "sha512-0aP01LLIskjKs3lq52EC0aGBAJhLq7B2Rd8HC/DR/PtNNpcLilNmHC12O+hu0usQpo7wtHNRqtrhBwtDb0+dNg==", + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", + "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", "dev": true, "requires": { - "has-flag": "3.0.0" + "has-flag": "^3.0.0" } } } @@ -10339,23 +10899,23 @@ "dev": true }, "tslint": { - "version": "5.9.1", - "resolved": "https://registry.npmjs.org/tslint/-/tslint-5.9.1.tgz", - "integrity": "sha1-ElX4ej/1frCw4fDmEKi0dIBGya4=", - "dev": true, - "requires": { - "babel-code-frame": "6.26.0", - "builtin-modules": "1.1.1", - "chalk": "2.3.2", - "commander": "2.15.1", - "diff": "3.3.1", - "glob": "7.1.2", - "js-yaml": "3.11.0", - "minimatch": "3.0.4", - "resolve": "1.7.0", - "semver": "5.5.0", - "tslib": "1.9.0", - "tsutils": "2.26.1" + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/tslint/-/tslint-5.10.0.tgz", + "integrity": "sha1-EeJrzLiK+gLdDZlWyuPUVAtfVMM=", + "dev": true, + "requires": { + "babel-code-frame": "^6.22.0", + "builtin-modules": "^1.1.1", + "chalk": "^2.3.0", + "commander": "^2.12.1", + "diff": "^3.2.0", + "glob": "^7.1.1", + "js-yaml": "^3.7.0", + "minimatch": "^3.0.4", + "resolve": "^1.3.2", + "semver": "^5.3.0", + "tslib": "^1.8.0", + "tsutils": "^2.12.1" }, "dependencies": { "ansi-styles": { @@ -10364,18 +10924,18 @@ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "color-convert": "1.9.1" + "color-convert": "^1.9.0" } }, "chalk": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.2.tgz", - "integrity": "sha512-ZM4j2/ld/YZDc3Ma8PgN7gyAk+kHMMMyzLNryCPGhWrsfAuDVeuid5bpRFTDgMH9JBK2lA4dyyAkkZYF/WcqDQ==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", + "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", "dev": true, "requires": { - "ansi-styles": "3.2.1", - "escape-string-regexp": "1.0.5", - "supports-color": "5.3.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" } }, "commander": { @@ -10391,12 +10951,12 @@ "dev": true }, "supports-color": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.3.0.tgz", - "integrity": "sha512-0aP01LLIskjKs3lq52EC0aGBAJhLq7B2Rd8HC/DR/PtNNpcLilNmHC12O+hu0usQpo7wtHNRqtrhBwtDb0+dNg==", + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", + "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", "dev": true, "requires": { - "has-flag": "3.0.0" + "has-flag": "^3.0.0" } } } @@ -10407,7 +10967,7 @@ "integrity": "sha512-5AnfTGlfpUzpRHLmoojPBKFTTmbjnwgdaTHMdllausa4GBPya5u36i9ddrTX4PhetGZvd4JUYIpAmgHqVnsctg==", "dev": true, "requires": { - "tsutils": "2.26.1" + "tsutils": "^2.12.1" } }, "tslint-no-unused-expression-chai": { @@ -10416,7 +10976,7 @@ "integrity": "sha512-dNnAc2f4M0KvyPNtEgiW2lS1LIss9Rg+cYI6x9J2NQeNt7FUI/5UfOJvsOERyog+D5+YeEzhkQSfSc4H7KMZLA==", "dev": true, "requires": { - "tsutils": "2.26.1" + "tsutils": "^2.3.0" } }, "tsutils": { @@ -10425,7 +10985,7 @@ "integrity": "sha512-bnm9bcjOqOr1UljleL94wVCDlpa6KjfGaTkefeLch4GRafgDkROxPizbB/FxTEdI++5JqhxczRy/Qub0syNqZA==", "dev": true, "requires": { - "tslib": "1.9.0" + "tslib": "^1.8.1" } }, "tunnel": { @@ -10440,7 +11000,7 @@ "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "^5.0.1" } }, "tweetnacl": { @@ -10456,7 +11016,7 @@ "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", "dev": true, "requires": { - "prelude-ls": "1.1.2" + "prelude-ls": "~1.1.2" } }, "type-detect": { @@ -10472,7 +11032,7 @@ "dev": true, "requires": { "media-typer": "0.3.0", - "mime-types": "2.1.18" + "mime-types": "~2.1.18" }, "dependencies": { "mime-db": { @@ -10487,7 +11047,7 @@ "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", "dev": true, "requires": { - "mime-db": "1.33.0" + "mime-db": "~1.33.0" } } } @@ -10502,10 +11062,16 @@ "underscore": "1.8.3" } }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, "typescript": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-2.8.1.tgz", - "integrity": "sha512-Ao/f6d/4EPLq0YwzsQz8iXflezpTkQzqAyenTiw4kCUGr1uPiFLC3+fZ+gMZz6eeI/qdRUqvC+HxIJzUAzEFdg==", + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-2.8.3.tgz", + "integrity": "sha512-K7g15Bb6Ra4lKf7Iq2l/I5/En+hLIHmxWZGq3D4DIRNFxMNV6j2SHSvDOqs2tGd4UvD/fJvrwopzQXjLrT7Itw==", "dev": true }, "uc.micro": { @@ -10521,9 +11087,9 @@ "dev": true, "optional": true, "requires": { - "source-map": "0.5.7", - "uglify-to-browserify": "1.0.2", - "yargs": "3.10.0" + "source-map": "~0.5.1", + "uglify-to-browserify": "~1.0.0", + "yargs": "~3.10.0" }, "dependencies": { "camelcase": { @@ -10540,8 +11106,8 @@ "dev": true, "optional": true, "requires": { - "center-align": "0.1.3", - "right-align": "0.1.3", + "center-align": "^0.1.1", + "right-align": "^0.1.1", "wordwrap": "0.0.2" } }, @@ -10559,9 +11125,9 @@ "dev": true, "optional": true, "requires": { - "camelcase": "1.2.1", - "cliui": "2.1.0", - "decamelize": "1.2.0", + "camelcase": "^1.0.2", + "cliui": "^2.1.0", + "decamelize": "^1.0.0", "window-size": "0.1.0" } } @@ -10586,16 +11152,39 @@ "integrity": "sha1-Tz+1OxBuYJf8+ctBCfKl6b36UCI=", "dev": true }, + "undertaker": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.2.0.tgz", + "integrity": "sha1-M52kZGJS0ILcN45wgGcpl1DhG0k=", + "dev": true, + "requires": { + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "bach": "^1.0.0", + "collection-map": "^1.0.0", + "es6-weak-map": "^2.0.1", + "last-run": "^1.1.0", + "object.defaults": "^1.0.0", + "object.reduce": "^1.0.0", + "undertaker-registry": "^1.0.0" + } + }, + "undertaker-registry": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", + "integrity": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=", + "dev": true + }, "union-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=", "dev": true, "requires": { - "arr-union": "3.1.0", - "get-value": "2.0.6", - "is-extendable": "0.1.1", - "set-value": "0.4.3" + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^0.4.3" }, "dependencies": { "extend-shallow": { @@ -10604,7 +11193,7 @@ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "^0.1.0" } }, "set-value": { @@ -10613,19 +11202,23 @@ "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=", "dev": true, "requires": { - "extend-shallow": "2.0.1", - "is-extendable": "0.1.1", - "is-plain-object": "2.0.4", - "to-object-path": "0.3.0" + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.1", + "to-object-path": "^0.3.0" } } } }, "unique-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-1.0.0.tgz", - "integrity": "sha1-1ZpKdUJ0R9mqbJHnAmP40mpLEEs=", - "dev": true + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.2.1.tgz", + "integrity": "sha1-WqADz76Uxf+GbE59ZouxxNuts2k=", + "dev": true, + "requires": { + "json-stable-stringify": "^1.0.0", + "through2-filter": "^2.0.0" + } }, "universalify": { "version": "0.1.1", @@ -10644,8 +11237,8 @@ "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", "dev": true, "requires": { - "has-value": "0.3.1", - "isobject": "3.0.1" + "has-value": "^0.3.1", + "isobject": "^3.0.0" }, "dependencies": { "has-value": { @@ -10654,9 +11247,9 @@ "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", "dev": true, "requires": { - "get-value": "2.0.6", - "has-values": "0.1.4", - "isobject": "2.1.0" + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" }, "dependencies": { "isobject": { @@ -10690,14 +11283,20 @@ "integrity": "sha1-TveleaeMFcUfVQ9qBT2xlBSciZI=", "dev": true, "requires": { - "binary": "0.3.0", - "fstream": "0.1.31", - "match-stream": "0.0.2", - "pullstream": "0.4.1", - "readable-stream": "1.0.34", - "setimmediate": "1.0.5" + "binary": "~0.3.0", + "fstream": "~0.1.21", + "match-stream": "~0.0.2", + "pullstream": "~0.4.0", + "readable-stream": "~1.0.0", + "setimmediate": "~1.0.1" } }, + "upath": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz", + "integrity": "sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==", + "dev": true + }, "urix": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", @@ -10711,13 +11310,13 @@ "dev": true }, "url-parse": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.3.0.tgz", - "integrity": "sha512-zPvPA3T7P6M+0iNsgX+iAcAz4GshKrowtQBHHc/28tVsBc8jK7VRCNX+2GEcoE6zDB6XqXhcyiUWPVZY6C70Cg==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.0.tgz", + "integrity": "sha512-ERuGxDiQ6Xw/agN4tuoCRbmwRuZP0cJ1lJxJubXr5Q/5cDa78+Dc4wfvtxzhzhkm5VvmW6Mf8EVj9SPGN4l8Lg==", "dev": true, "requires": { - "querystringify": "1.0.0", - "requires-port": "1.0.0" + "querystringify": "^2.0.0", + "requires-port": "^1.0.0" } }, "urlgrey": { @@ -10732,15 +11331,9 @@ "integrity": "sha512-6UJEQM/L+mzC3ZJNM56Q4DFGLX/evKGRg15UJHGB9X5j5Z3AFbgZvjUh2yq/UJUY4U5dh7Fal++XbNg1uzpRAw==", "dev": true, "requires": { - "kind-of": "6.0.2" + "kind-of": "^6.0.2" } }, - "user-home": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz", - "integrity": "sha1-K1viOjK2Onyd640PKNSFcko98ZA=", - "dev": true - }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -10760,12 +11353,12 @@ "dev": true }, "v8flags": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz", - "integrity": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.1.0.tgz", + "integrity": "sha512-0m69VIK2dudEf2Ub0xwLQhZkDZu85OmiOpTw+UGDt56ibviYICHziM/3aE+oVg7IjGPp0c83w3eSVqa+lYZ9UQ==", "dev": true, "requires": { - "user-home": "1.1.1" + "homedir-polyfill": "^1.0.1" } }, "vali-date": { @@ -10780,19 +11373,25 @@ "integrity": "sha512-63ZOUnL4SIXj4L0NixR3L1lcjO38crAbgrTpl28t8jjrfuiOBL5Iygm+60qPs/KsZGzPNg6Smnc/oY16QTjF0g==", "dev": true, "requires": { - "spdx-correct": "3.0.0", - "spdx-expression-parse": "3.0.0" + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" } }, + "value-or-function": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", + "integrity": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=", + "dev": true + }, "verror": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", "dev": true, "requires": { - "assert-plus": "1.0.0", + "assert-plus": "^1.0.0", "core-util-is": "1.0.2", - "extsprintf": "1.3.0" + "extsprintf": "^1.2.0" }, "dependencies": { "assert-plus": { @@ -10804,65 +11403,106 @@ } }, "vinyl": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz", - "integrity": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=", + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", + "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=", "dev": true, "requires": { - "clone": "1.0.4", - "clone-stats": "0.0.1", - "replace-ext": "0.0.1" + "clone": "^0.2.0", + "clone-stats": "^0.0.1" } }, "vinyl-fs": { - "version": "0.3.14", - "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.14.tgz", - "integrity": "sha1-mmhRzhysHBzqX+hsCTHWIMLPqeY=", - "dev": true, - "requires": { - "defaults": "1.0.3", - "glob-stream": "3.1.18", - "glob-watcher": "0.0.6", - "graceful-fs": "3.0.11", - "mkdirp": "0.5.1", - "strip-bom": "1.0.0", - "through2": "0.6.5", - "vinyl": "0.4.6" + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", + "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", + "dev": true, + "requires": { + "fs-mkdirp-stream": "^1.0.0", + "glob-stream": "^6.1.0", + "graceful-fs": "^4.0.0", + "is-valid-glob": "^1.0.0", + "lazystream": "^1.0.0", + "lead": "^1.0.0", + "object.assign": "^4.0.4", + "pumpify": "^1.3.5", + "readable-stream": "^2.3.3", + "remove-bom-buffer": "^3.0.0", + "remove-bom-stream": "^1.2.0", + "resolve-options": "^1.1.0", + "through2": "^2.0.0", + "to-through": "^2.0.0", + "value-or-function": "^3.0.0", + "vinyl": "^2.0.0", + "vinyl-sourcemap": "^1.1.0" }, "dependencies": { "clone": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz", - "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8=", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz", + "integrity": "sha1-0hfR6WERjjrJpLi7oyhVU79kfNs=", "dev": true }, - "graceful-fs": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz", - "integrity": "sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg=", + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", + "dev": true + }, + "is-valid-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", + "integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "natives": "1.1.3" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "through2": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", - "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", + "replace-ext": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", + "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "readable-stream": "1.0.34", - "xtend": "4.0.1" + "safe-buffer": "~5.1.0" } }, "vinyl": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", - "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.1.0.tgz", + "integrity": "sha1-Ah+cLPlR1rk5lDyJ617lrdT9kkw=", "dev": true, "requires": { - "clone": "0.2.0", - "clone-stats": "0.0.1" + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" } } } @@ -10873,201 +11513,117 @@ "integrity": "sha1-YrU6E1YQqJbpjKlr7jqH8Aio54A=", "dev": true, "requires": { - "through2": "2.0.3", - "vinyl": "0.4.6" + "through2": "^2.0.3", + "vinyl": "^0.4.3" + } + }, + "vinyl-sourcemap": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", + "integrity": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=", + "dev": true, + "requires": { + "append-buffer": "^1.0.2", + "convert-source-map": "^1.5.0", + "graceful-fs": "^4.1.6", + "normalize-path": "^2.1.1", + "now-and-later": "^2.0.0", + "remove-bom-buffer": "^3.0.0", + "vinyl": "^2.0.0" }, "dependencies": { "clone": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz", - "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8=", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz", + "integrity": "sha1-0hfR6WERjjrJpLi7oyhVU79kfNs=", + "dev": true + }, + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", + "dev": true + }, + "replace-ext": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", + "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", "dev": true }, "vinyl": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", - "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.1.0.tgz", + "integrity": "sha1-Ah+cLPlR1rk5lDyJ617lrdT9kkw=", "dev": true, "requires": { - "clone": "0.2.0", - "clone-stats": "0.0.1" + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" } } } }, "vsce": { - "version": "1.39.0", - "resolved": "https://registry.npmjs.org/vsce/-/vsce-1.39.0.tgz", - "integrity": "sha512-PkvA4u/o4qhQEUQrQGzNQXHZXBLae1EDmB+w1Z/HLhpX4pqbCSP3GCremiKRV5i9n7UnAC/8YrO2RhZl/x97Hw==", - "dev": true, - "requires": { - "cheerio": "1.0.0-rc.2", - "commander": "2.11.0", - "denodeify": "1.2.1", - "glob": "7.1.2", - "lodash": "4.17.5", - "markdown-it": "8.4.1", - "mime": "1.6.0", - "minimatch": "3.0.4", - "osenv": "0.1.5", - "parse-semver": "1.1.1", - "read": "1.0.7", - "semver": "5.5.0", + "version": "1.40.0", + "resolved": "https://registry.npmjs.org/vsce/-/vsce-1.40.0.tgz", + "integrity": "sha512-TQ22iv2ondoegCA/r/Nlg0TW9PF+2OJHpeVkw4hb+BM7997/qeoe6gSRPVurtw+p2VeHGCzVSmjRy7sSO3Ld9w==", + "dev": true, + "requires": { + "cheerio": "^1.0.0-rc.1", + "commander": "^2.8.1", + "denodeify": "^1.2.1", + "glob": "^7.0.6", + "lodash": "^4.15.0", + "markdown-it": "^8.3.1", + "mime": "^1.3.4", + "minimatch": "^3.0.3", + "osenv": "^0.1.3", + "parse-semver": "^1.1.1", + "read": "^1.0.7", + "semver": "^5.1.0", "tmp": "0.0.29", - "url-join": "1.1.0", + "url-join": "^1.1.0", "vso-node-api": "6.1.2-preview", - "yauzl": "2.9.1", - "yazl": "2.4.3" + "yauzl": "^2.3.1", + "yazl": "^2.2.2" }, "dependencies": { - "lodash": { - "version": "4.17.5", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.5.tgz", - "integrity": "sha512-svL3uiZf1RwhH+cWrfZn3A4+U58wbP0tGVTLQPbjplZxZ8ROD9VLuNgsRniTlLe7OlSqR79RUehXgpBW/s0IQw==", - "dev": true - }, "tmp": { "version": "0.0.29", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.29.tgz", "integrity": "sha1-8lEl/w3Z2jzLDC3Tce4SiLuRKMA=", "dev": true, "requires": { - "os-tmpdir": "1.0.2" + "os-tmpdir": "~1.0.1" } } } }, "vscode": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/vscode/-/vscode-1.1.14.tgz", - "integrity": "sha512-acfn3fzGtTm7UjChAN7/YjsC0qIyJeuSrJwvm6qb7tLN6Geq1FmCz1JnBOc3kaY+HCLjQBAfwG/CsgnasOdXMw==", + "version": "1.1.18", + "resolved": "https://registry.npmjs.org/vscode/-/vscode-1.1.18.tgz", + "integrity": "sha512-SyDw4qFwZ+WthZX7RWp71PNiWLF7VhpM65j2oryY/6jtSORd8qH6J8vclwWZJ6Jvu0EH7JamO2RWNfBfsMR9Zw==", "dev": true, "requires": { - "glob": "7.1.2", - "gulp-chmod": "2.0.0", - "gulp-filter": "5.1.0", + "glob": "^7.1.2", + "gulp-chmod": "^2.0.0", + "gulp-filter": "^5.0.1", "gulp-gunzip": "1.0.0", - "gulp-remote-src": "0.4.3", - "gulp-symdest": "1.1.0", - "gulp-untar": "0.0.6", - "gulp-vinyl-zip": "2.1.0", - "mocha": "4.1.0", - "request": "2.85.0", - "semver": "5.5.0", - "source-map-support": "0.5.4", - "url-parse": "1.3.0", - "vinyl-source-stream": "1.1.2" + "gulp-remote-src-vscode": "^0.5.0", + "gulp-symdest": "^1.1.0", + "gulp-untar": "^0.0.7", + "gulp-vinyl-zip": "^2.1.0", + "mocha": "^4.0.1", + "request": "^2.83.0", + "semver": "^5.4.1", + "source-map-support": "^0.5.0", + "url-parse": "^1.1.9", + "vinyl-source-stream": "^1.1.0" }, "dependencies": { - "ajv": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", - "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", - "dev": true, - "requires": { - "co": "4.6.0", - "fast-deep-equal": "1.1.0", - "fast-json-stable-stringify": "2.0.0", - "json-schema-traverse": "0.3.1" - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", - "dev": true - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", - "dev": true - }, - "boom": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz", - "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=", - "dev": true, - "requires": { - "hoek": "4.2.1" - } - }, - "cryptiles": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz", - "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=", - "dev": true, - "requires": { - "boom": "5.2.0" - }, - "dependencies": { - "boom": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz", - "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==", - "dev": true, - "requires": { - "hoek": "4.2.1" - } - } - } - }, - "form-data": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz", - "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=", - "dev": true, - "requires": { - "asynckit": "0.4.0", - "combined-stream": "1.0.6", - "mime-types": "2.1.18" - } - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", - "dev": true - }, - "har-validator": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", - "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", - "dev": true, - "requires": { - "ajv": "5.5.2", - "har-schema": "2.0.0" - } - }, - "hawk": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz", - "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==", - "dev": true, - "requires": { - "boom": "4.3.1", - "cryptiles": "3.1.2", - "hoek": "4.2.1", - "sntp": "2.1.0" - } - }, - "hoek": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz", - "integrity": "sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==", - "dev": true - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "dev": true, - "requires": { - "assert-plus": "1.0.0", - "jsprim": "1.4.1", - "sshpk": "1.14.1" - } - }, "mocha": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/mocha/-/mocha-4.1.0.tgz", @@ -11086,72 +11642,21 @@ "supports-color": "4.4.0" } }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", - "dev": true - }, - "qs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==", - "dev": true - }, - "request": { - "version": "2.85.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.85.0.tgz", - "integrity": "sha512-8H7Ehijd4js+s6wuVPLjwORxD4zeuyjYugprdOXlPSqaApmL/QOy+EB/beICHVCHkGMKNh5rvihb5ov+IDw4mg==", - "dev": true, - "requires": { - "aws-sign2": "0.7.0", - "aws4": "1.7.0", - "caseless": "0.12.0", - "combined-stream": "1.0.6", - "extend": "3.0.1", - "forever-agent": "0.6.1", - "form-data": "2.3.2", - "har-validator": "5.0.3", - "hawk": "6.0.2", - "http-signature": "1.2.0", - "is-typedarray": "1.0.0", - "isstream": "0.1.2", - "json-stringify-safe": "5.0.1", - "mime-types": "2.1.18", - "oauth-sign": "0.8.2", - "performance-now": "2.1.0", - "qs": "6.5.1", - "safe-buffer": "5.1.1", - "stringstream": "0.0.5", - "tough-cookie": "2.3.4", - "tunnel-agent": "0.6.0", - "uuid": "3.2.1" - } - }, - "sntp": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz", - "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==", - "dev": true, - "requires": { - "hoek": "4.2.1" - } - }, "supports-color": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz", "integrity": "sha512-rKC3+DyXWgK0ZLKwmRsrkyHVZAjNkfzeehuFWdGGcqGDTZFH73+RH6S/RDAAxl9GusSjZSUWYLmT9N5pzXFOXQ==", "dev": true, "requires": { - "has-flag": "2.0.0" + "has-flag": "^2.0.0" } } } }, "vscode-debugprotocol": { - "version": "1.28.0", - "resolved": "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.28.0.tgz", - "integrity": "sha512-QM4J8A13jBY9I7OPWXN0ZO1cqydnD4co2j/O81jIj6em8VkmJT4VyJQkq4HmwJe3af+u9+7IYCIEDrowgvKxTA==" + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.6.1.tgz", + "integrity": "sha1-YVsJN+S5zYX2U40W3zMBLC7rzZA=" }, "vscode-extension-telemetry": { "version": "0.0.15", @@ -11172,10 +11677,10 @@ "integrity": "sha1-qrNUbfJFHs2JTgcbuZtd8Zxfp48=", "dev": true, "requires": { - "q": "1.5.1", + "q": "^1.0.1", "tunnel": "0.0.4", - "typed-rest-client": "0.9.0", - "underscore": "1.8.3" + "typed-rest-client": "^0.9.0", + "underscore": "^1.8.3" } }, "which": { @@ -11184,7 +11689,7 @@ "integrity": "sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg==", "dev": true, "requires": { - "isexe": "2.0.0" + "isexe": "^2.0.0" } }, "which-module": { @@ -11218,8 +11723,8 @@ "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", "dev": true, "requires": { - "string-width": "1.0.2", - "strip-ansi": "3.0.1" + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" }, "dependencies": { "ansi-regex": { @@ -11234,7 +11739,7 @@ "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", "dev": true, "requires": { - "number-is-nan": "1.0.1" + "number-is-nan": "^1.0.0" } }, "string-width": { @@ -11243,9 +11748,9 @@ "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", "dev": true, "requires": { - "code-point-at": "1.1.0", - "is-fullwidth-code-point": "1.0.0", - "strip-ansi": "3.0.1" + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" } }, "strip-ansi": { @@ -11254,7 +11759,7 @@ "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, "requires": { - "ansi-regex": "2.1.1" + "ansi-regex": "^2.0.0" } } } @@ -11300,18 +11805,18 @@ "integrity": "sha512-Rjp+lMYQOWtgqojx1dEWorjCofi1YN7AoFvYV7b1gx/7dAAeuI4kN5SZiEvr0ZmsZTOpDRcCqrpI10L31tFkBw==", "dev": true, "requires": { - "cliui": "4.0.0", - "decamelize": "1.2.0", - "find-up": "2.1.0", - "get-caller-file": "1.0.2", - "os-locale": "2.1.0", - "require-directory": "2.1.1", - "require-main-filename": "1.0.1", - "set-blocking": "2.0.0", - "string-width": "2.1.1", - "which-module": "2.0.0", - "y18n": "3.2.1", - "yargs-parser": "9.0.2" + "cliui": "^4.0.0", + "decamelize": "^1.1.1", + "find-up": "^2.1.0", + "get-caller-file": "^1.0.1", + "os-locale": "^2.0.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^9.0.2" } }, "yargs-parser": { @@ -11320,7 +11825,7 @@ "integrity": "sha1-nM9qQ0YP5O1Aqbto9I1DuKaMwHc=", "dev": true, "requires": { - "camelcase": "4.1.0" + "camelcase": "^4.1.0" } }, "yauzl": { @@ -11328,8 +11833,8 @@ "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.9.1.tgz", "integrity": "sha1-qBmB6nCleUYTOIPwKcWCGok1mn8=", "requires": { - "buffer-crc32": "0.2.13", - "fd-slicer": "1.0.1" + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.0.1" } }, "yazl": { @@ -11338,7 +11843,7 @@ "integrity": "sha1-7CblzIfVYBud+EMtvdPNLlFzoHE=", "dev": true, "requires": { - "buffer-crc32": "0.2.13" + "buffer-crc32": "~0.2.3" } }, "yn": { @@ -11353,10 +11858,10 @@ "integrity": "sha1-qLxF9MG0lpnGuQGYuqyqzbzUugQ=", "dev": true, "requires": { - "archiver-utils": "1.3.0", - "compress-commons": "1.2.2", - "lodash": "4.17.5", - "readable-stream": "2.3.6" + "archiver-utils": "^1.3.0", + "compress-commons": "^1.2.0", + "lodash": "^4.8.0", + "readable-stream": "^2.0.0" }, "dependencies": { "isarray": { @@ -11377,13 +11882,13 @@ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "dev": true, "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.1.1", - "util-deprecate": "1.0.2" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "string_decoder": { @@ -11392,7 +11897,7 @@ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "~5.1.0" } } } diff --git a/package.json b/package.json index c2749486ec..0b2d3f338d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "csharp", "publisher": "ms-vscode", - "version": "1.15.2", + "version": "1.16.1", "description": "C# for Visual Studio Code (powered by OmniSharp).", "displayName": "C#", "author": "Microsoft Corporation", @@ -25,7 +25,7 @@ "multi-root ready" ], "defaults": { - "omniSharp": "1.30.1" + "omniSharp": "1.32.5" }, "main": "./out/src/main", "scripts": { @@ -68,113 +68,111 @@ "instrument": true }, "dependencies": { - "async-file": "^2.0.2", - "fs-extra": "^5.0.0", - "http-proxy-agent": "^2.0.0", - "https-proxy-agent": "^2.1.1", - "jsonc-parser": "^1.0.0", - "mkdirp": "^0.5.1", + "async-file": "2.0.2", + "fs-extra": "5.0.0", + "http-proxy-agent": "2.1.0", + "https-proxy-agent": "2.2.1", + "jsonc-parser": "1.0.0", + "mkdirp": "0.5.1", "node-filter-async": "0.0.4", "open": "*", - "request-light": "^0.2.0", - "rxjs": "^5.5.6", + "request-light": "0.2.2", + "rxjs": "5.5.6", "semver": "*", "tmp": "0.0.33", - "vscode-debugprotocol": "^1.6.1", + "vscode-debugprotocol": "1.6.1", "vscode-extension-telemetry": "0.0.15", - "yauzl": "^2.9.1" + "yauzl": "2.9.1" }, "devDependencies": { - "@types/archiver": "^2.1.1", - "@types/chai": "^4.1.2", + "@types/archiver": "2.1.1", + "@types/chai": "4.1.2", "@types/chai-arrays": "1.0.2", - "@types/chai-as-promised": "^7.1.0", - "@types/chai-string": "^1.4.0", - "@types/del": "^3.0.1", - "@types/fs-extra": "^5.0.1", - "@types/gulp": "^3.8.36", + "@types/chai-as-promised": "7.1.0", + "@types/chai-string": "1.4.0", + "@types/del": "3.0.1", + "@types/fs-extra": "5.0.1", + "@types/gulp": "4.0.5", "@types/gulp-mocha": "0.0.32", - "@types/istanbul": "^0.4.30", - "@types/minimist": "^1.2.0", - "@types/mkdirp": "^0.5.2", - "@types/mocha": "^2.2.48", - "@types/node": "^9.4.7", - "@types/semver": "^5.5.0", + "@types/istanbul": "0.4.30", + "@types/minimist": "1.2.0", + "@types/mkdirp": "0.5.2", + "@types/mocha": "2.2.48", + "@types/node": "9.4.7", + "@types/semver": "5.5.0", "@types/tmp": "0.0.33", - "@types/yauzl": "^2.9.0", - "archiver": "^2.1.1", - "async-child-process": "^1.1.1", - "async-shelljs": "^0.1.2", + "@types/yauzl": "2.9.0", + "archiver": "2.1.1", + "async-child-process": "1.1.1", + "async-shelljs": "0.1.2", "chai": "4.1.2", "chai-arrays": "2.0.0", "chai-as-promised": "7.1.1", "chai-fs": "2.0.0", - "chai-string": "^1.4.0", - "codecov": "^3.0.0", - "copyfiles": "^2.0.0", - "cross-env": "^5.1.4", + "chai-string": "1.4.0", + "codecov": "3.0.2", + "copyfiles": "2.0.0", + "cross-env": "5.1.4", "del": "3.0.0", - "get-port": "^3.2.0", - "glob-promise": "^3.4.0", - "gulp": "3.9.1", - "gulp-mocha": "^5.0.0", - "gulp-sequence": "^1.0.0", - "gulp-tslint": "^8.1.3", - "istanbul": "^0.4.5", - "istanbul-combine": "^0.3.0", - "ltcdr": "^2.2.1", - "minimist": "^1.2.0", - "mocha": "^5.0.4", - "mocha-typescript": "^1.1.12", - "mock-http-server": "^0.2.0", - "npm-run-all": "^4.1.2", - "nyc": "^11.6.0", - "plist": "^3.0.1", - "remap-istanbul": "^0.11.0", - "source-map-support": "^0.5.4", - "ts-node": "^5.0.1", - "tslint": "^5.9.1", - "tslint-microsoft-contrib": "^5.0.3", - "tslint-no-unused-expression-chai": "^0.1.3", - "typescript": "^2.7.2", - "unzip2": "^0.2.5", - "vsce": "^1.39.0", - "vscode": "^1.1.14" + "get-port": "3.2.0", + "glob-promise": "3.4.0", + "gulp": "4.0.0", + "gulp-mocha": "5.0.0", + "gulp-tslint": "8.1.3", + "istanbul": "0.4.5", + "ltcdr": "2.2.1", + "minimist": "1.2.0", + "mocha": "5.0.4", + "mocha-typescript": "1.1.12", + "mock-http-server": "0.2.0", + "npm-run-all": "4.1.2", + "nyc": "11.8.0", + "plist": "3.0.1", + "remap-istanbul": "0.11.0", + "source-map-support": "0.5.4", + "ts-node": "6.0.3", + "tslint": "5.10.0", + "tslint-microsoft-contrib": "5.0.3", + "tslint-no-unused-expression-chai": "0.1.3", + "typescript": "2.8.3", + "unzip2": "0.2.5", + "vsce": "1.40.0", + "vscode": "1.1.18" }, "runtimeDependencies": [ { "description": "OmniSharp for Windows (.NET 4.6 / x86)", - "url": "https://download.visualstudio.microsoft.com/download/pr/12245767/0c5c04bed389ea023a731f6da6d31ab8/omnisharp-win-x86-1.30.1.zip", - "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x86-1.30.1.zip", - "installPath": ".omnisharp/1.30.1", + "url": "https://download.visualstudio.microsoft.com/download/pr/2d0621db-a58d-420b-8bb3-64f0d4ce2d0f/16ed60ed76dc96d41215120448bd7ffd/omnisharp-win-x86-1.32.5.zip", + "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x86-1.32.5.zip", + "installPath": ".omnisharp/1.32.5", "platforms": [ "win32" ], "architectures": [ "x86" ], - "installTestPath": "./.omnisharp/OmniSharp.exe", + "installTestPath": "./.omnisharp/1.32.5/OmniSharp.exe", "platformId": "win-x86" }, { "description": "OmniSharp for Windows (.NET 4.6 / x64)", - "url": "https://download.visualstudio.microsoft.com/download/pr/12245763/b72bb97e2890bc67301aa8aca3cd382e/omnisharp-win-x64-1.30.1.zip", - "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x64-1.30.1.zip", - "installPath": ".omnisharp/1.30.1", + "url": "https://download.visualstudio.microsoft.com/download/pr/2d0621db-a58d-420b-8bb3-64f0d4ce2d0f/85523e235f069fb66a74248277c20d6f/omnisharp-win-x64-1.32.5.zip", + "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x64-1.32.5.zip", + "installPath": ".omnisharp/1.32.5", "platforms": [ "win32" ], "architectures": [ "x86_64" ], - "installTestPath": "./.omnisharp/OmniSharp.exe", + "installTestPath": "./.omnisharp/1.32.5/OmniSharp.exe", "platformId": "win-x64" }, { "description": "OmniSharp for OSX", - "url": "https://download.visualstudio.microsoft.com/download/pr/12245766/987fff9362fc85ba8f00d9a31889623c/omnisharp-osx-1.30.1.zip", - "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-osx-1.30.1.zip", - "installPath": ".omnisharp/1.30.1", + "url": "https://download.visualstudio.microsoft.com/download/pr/2d0621db-a58d-420b-8bb3-64f0d4ce2d0f/fe463938be2ba0db657ec61e6ac85594/omnisharp-osx-1.32.5.zip", + "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-osx-1.32.5.zip", + "installPath": ".omnisharp/1.32.5", "platforms": [ "darwin" ], @@ -182,14 +180,14 @@ "./mono.osx", "./run" ], - "installTestPath": "./.omnisharp/run", + "installTestPath": "./.omnisharp/1.32.5/run", "platformId": "osx" }, { "description": "OmniSharp for Linux (x86)", - "url": "https://download.visualstudio.microsoft.com/download/pr/12245764/3026884a5425856a0de04f1e468d25a8/omnisharp-linux-x86-1.30.1.zip", - "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x86-1.30.1.zip", - "installPath": ".omnisharp/1.30.1", + "url": "https://download.visualstudio.microsoft.com/download/pr/2d0621db-a58d-420b-8bb3-64f0d4ce2d0f/2623da5b8261bcc4987fb033cbe75431/omnisharp-linux-x86-1.32.5.zip", + "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x86-1.32.5.zip", + "installPath": ".omnisharp/1.32.5", "platforms": [ "linux" ], @@ -201,14 +199,14 @@ "./mono.linux-x86", "./run" ], - "installTestPath": "./.omnisharp/run", + "installTestPath": "./.omnisharp/1.32.5/run", "platformId": "linux-x86" }, { "description": "OmniSharp for Linux (x64)", - "url": "https://download.visualstudio.microsoft.com/download/pr/12245765/02c6e1855587e0f6b0be479d5ce88d62/omnisharp-linux-x64-1.30.1.zip", - "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x64-1.30.1.zip", - "installPath": ".omnisharp/1.30.1", + "url": "https://download.visualstudio.microsoft.com/download/pr/2d0621db-a58d-420b-8bb3-64f0d4ce2d0f/e08e78a5a7427b87a3a5de8a361736e0/omnisharp-linux-x64-1.32.5.zip", + "fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-linux-x64-1.32.5.zip", + "installPath": ".omnisharp/1.32.5", "platforms": [ "linux" ], @@ -219,13 +217,13 @@ "./mono.linux-x86_64", "./run" ], - "installTestPath": "./.omnisharp/run", + "installTestPath": "./.omnisharp/1.32.5/run", "platformId": "linux-x64" }, { "description": ".NET Core Debugger (Windows / x64)", - "url": "https://download.visualstudio.microsoft.com/download/pr/12267706/d27a74d91a12c0e78222081afdf8e0bb/coreclr-debug-win7-x64.zip", - "fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-15-2/coreclr-debug-win7-x64.zip", + "url": "https://download.visualstudio.microsoft.com/download/pr/b04322ea-547b-42b1-86d9-8489befa85cb/78cc7fe92df55ec751fa04231fe4a76f/coreclr-debug-win7-x64.zip", + "fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-16-0/coreclr-debug-win7-x64.zip", "installPath": ".debugger", "platforms": [ "win32" @@ -237,8 +235,8 @@ }, { "description": ".NET Core Debugger (macOS / x64)", - "url": "https://download.visualstudio.microsoft.com/download/pr/12149320/af1529a62f43fb8a922eccf750bdf9f7/coreclr-debug-osx-x64.zip", - "fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-15-1/coreclr-debug-osx-x64.zip", + "url": "https://download.visualstudio.microsoft.com/download/pr/b04322ea-547b-42b1-86d9-8489befa85cb/2aa44d6a3b45199178833506704024c8/coreclr-debug-osx-x64.zip", + "fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-16-0/coreclr-debug-osx-x64.zip", "installPath": ".debugger", "platforms": [ "darwin" @@ -254,8 +252,8 @@ }, { "description": ".NET Core Debugger (linux / x64)", - "url": "https://download.visualstudio.microsoft.com/download/pr/12149320/af1529a62f43fb8a922eccf750bdf9f7/coreclr-debug-linux-x64.zip", - "fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-15-1/coreclr-debug-linux-x64.zip", + "url": "https://download.visualstudio.microsoft.com/download/pr/b04322ea-547b-42b1-86d9-8489befa85cb/8a007d22a9733f620f86c87d5b2d66d4/coreclr-debug-linux-x64.zip", + "fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-16-0/coreclr-debug-linux-x64.zip", "installPath": ".debugger", "platforms": [ "linux" @@ -271,7 +269,7 @@ } ], "engines": { - "vscode": "^1.18.0" + "vscode": "^1.26.0" }, "activationEvents": [ "onDebug", @@ -279,7 +277,8 @@ "onCommand:o.restart", "onCommand:o.pickProjectAndStart", "onCommand:o.showOutput", - "onCommand:dotnet.restore", + "onCommand:dotnet.restore.project", + "onCommand:dotnet.restore.all", "onCommand:dotnet.generateAssets", "onCommand:csharp.downloadDebugger", "onCommand:csharp.listProcess", @@ -389,12 +388,12 @@ "items": { "type": "string" }, - "description": "Array of symbol server URLs (example: http\u200b://MyExampleSymbolServer) or directories (example: /build/symbols) to search for .pdb files. These directories will be searched in addition to the default locations -- next to the module and the path where the pdb was originally dropped to.", + "description": "Array of symbol server URLs (example: http​://MyExampleSymbolServer) or directories (example: /build/symbols) to search for .pdb files. These directories will be searched in addition to the default locations -- next to the module and the path where the pdb was originally dropped to.", "default": [] }, "searchMicrosoftSymbolServer": { "type": "boolean", - "description": "If 'true' the Microsoft Symbol server (https\u200b://msdl.microsoft.com\u200b/download/symbols) is added to the symbols search path. If unspecified, this option defaults to 'false'.", + "description": "If 'true' the Microsoft Symbol server (https​://msdl.microsoft.com​/download/symbols) is added to the symbols search path. If unspecified, this option defaults to 'false'.", "default": false }, "cachePath": { @@ -536,6 +535,14 @@ ], "description": "Launch OmniSharp with the globally-installed Mono. If set to \"always\", \"mono\" version 5.8.1 or greater must be available on the PATH. If set to \"auto\", OmniSharp will be launched with \"mono\" if version 5.8.1 or greater is available on the PATH." }, + "omnisharp.monoPath": { + "type": [ + "string", + "null" + ], + "default": null, + "description": "Specifies the path to a mono installation to use when \"useGlobalMono\" is set to \"always\" or \"auto\", instead of the default system one." + }, "omnisharp.waitForDebugger": { "type": "boolean", "default": false, @@ -569,6 +576,11 @@ "default": 250, "description": "The maximum number of projects to be shown in the 'Select Project' dropdown (maximum 250)." }, + "omnisharp.defaultLaunchSolution": { + "type": "string", + "default": null, + "description": "The name of the default solution used at start up if the repo has multiple solutions. e.g.'MyAwesomeSolution.sln'. Default value is `null` which will cause the first in alphabetical order to be chosen." + }, "omnisharp.useEditorFormattingSettings": { "type": "boolean", "default": true, @@ -608,8 +620,13 @@ "category": ".NET" }, { - "command": "dotnet.restore", - "title": "Restore Packages", + "command": "dotnet.restore.project", + "title": "Restore Project", + "category": ".NET" + }, + { + "command": "dotnet.restore.all", + "title": "Restore All Projects", "category": ".NET" }, { @@ -805,6 +822,11 @@ "description": "Environment variables passed to the program.", "default": {} }, + "envFile": { + "type": "string", + "description": "Environment variables passed to the program by a file.", + "default": "${workspaceFolder}/.env" + }, "console": { "type": "string", "enum": [ @@ -1118,12 +1140,12 @@ "items": { "type": "string" }, - "description": "Array of symbol server URLs (example: http\u200b://MyExampleSymbolServer) or directories (example: /build/symbols) to search for .pdb files. These directories will be searched in addition to the default locations -- next to the module and the path where the pdb was originally dropped to.", + "description": "Array of symbol server URLs (example: http​://MyExampleSymbolServer) or directories (example: /build/symbols) to search for .pdb files. These directories will be searched in addition to the default locations -- next to the module and the path where the pdb was originally dropped to.", "default": [] }, "searchMicrosoftSymbolServer": { "type": "boolean", - "description": "If 'true' the Microsoft Symbol server (https\u200b://msdl.microsoft.com\u200b/download/symbols) is added to the symbols search path. If unspecified, this option defaults to 'false'.", + "description": "If 'true' the Microsoft Symbol server (https​://msdl.microsoft.com​/download/symbols) is added to the symbols search path. If unspecified, this option defaults to 'false'.", "default": false }, "cachePath": { @@ -1519,12 +1541,12 @@ "items": { "type": "string" }, - "description": "Array of symbol server URLs (example: http\u200b://MyExampleSymbolServer) or directories (example: /build/symbols) to search for .pdb files. These directories will be searched in addition to the default locations -- next to the module and the path where the pdb was originally dropped to.", + "description": "Array of symbol server URLs (example: http​://MyExampleSymbolServer) or directories (example: /build/symbols) to search for .pdb files. These directories will be searched in addition to the default locations -- next to the module and the path where the pdb was originally dropped to.", "default": [] }, "searchMicrosoftSymbolServer": { "type": "boolean", - "description": "If 'true' the Microsoft Symbol server (https\u200b://msdl.microsoft.com\u200b/download/symbols) is added to the symbols search path. If unspecified, this option defaults to 'false'.", + "description": "If 'true' the Microsoft Symbol server (https​://msdl.microsoft.com​/download/symbols) is added to the symbols search path. If unspecified, this option defaults to 'false'.", "default": false }, "cachePath": { @@ -1614,9 +1636,9 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build", - "program": "^\"\\${workspaceRoot}/bin/Debug/${1:}/${2:}\"", + "program": "^\"\\${workspaceFolder}/bin/Debug/${1:}/${2:}\"", "args": [], - "cwd": "^\"\\${workspaceRoot}\"", + "cwd": "^\"\\${workspaceFolder}\"", "stopAtEntry": false, "console": "internalConsole" } @@ -1639,9 +1661,9 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build", - "program": "^\"\\${workspaceRoot}/bin/Debug/${1:}/${2:}\"", + "program": "^\"\\${workspaceFolder}/bin/Debug/${1:}/${2:}\"", "args": [], - "cwd": "^\"\\${workspaceRoot}\"", + "cwd": "^\"\\${workspaceFolder}\"", "stopAtEntry": false, "launchBrowser": { "enabled": true, @@ -1661,7 +1683,7 @@ "ASPNETCORE_ENVIRONMENT": "Development" }, "sourceFileMap": { - "/Views": "^\"\\${workspaceRoot}/Views\"" + "/Views": "^\"\\${workspaceFolder}/Views\"" } } }, @@ -1673,13 +1695,13 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build", - "program": "^\"\\${workspaceRoot}/bin/Debug/${1:}/${2:}\"", + "program": "^\"\\${workspaceFolder}/bin/Debug/${1:}/${2:}\"", "args": [], - "cwd": "^\"\\${workspaceRoot}\"", + "cwd": "^\"\\${workspaceFolder}\"", "stopAtEntry": false, "console": "internalConsole", "pipeTransport": { - "pipeCwd": "^\"\\${workspaceRoot}\"", + "pipeCwd": "^\"\\${workspaceFolder}\"", "pipeProgram": "^\"${3:enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'}\"", "pipeArgs": [], "debuggerPath": "^\"${4:enter the path for the debugger on the target machine, for example ~/vsdbg/vsdbg}\"" @@ -1695,7 +1717,7 @@ "request": "attach", "processId": "^\"\\${command:pickRemoteProcess}\"", "pipeTransport": { - "pipeCwd": "^\"\\${workspaceRoot}\"", + "pipeCwd": "^\"\\${workspaceFolder}\"", "pipeProgram": "^\"${1:enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'}\"", "pipeArgs": [], "debuggerPath": "^\"${2:enter the path for the debugger on the target machine, for example ~/vsdbg/vsdbg}\"" @@ -1867,6 +1889,11 @@ "description": "Environment variables passed to the program.", "default": {} }, + "envFile": { + "type": "string", + "description": "Environment variables passed to the program by a file.", + "default": "${workspaceFolder}/.env" + }, "console": { "type": "string", "enum": [ @@ -2180,12 +2207,12 @@ "items": { "type": "string" }, - "description": "Array of symbol server URLs (example: http\u200b://MyExampleSymbolServer) or directories (example: /build/symbols) to search for .pdb files. These directories will be searched in addition to the default locations -- next to the module and the path where the pdb was originally dropped to.", + "description": "Array of symbol server URLs (example: http​://MyExampleSymbolServer) or directories (example: /build/symbols) to search for .pdb files. These directories will be searched in addition to the default locations -- next to the module and the path where the pdb was originally dropped to.", "default": [] }, "searchMicrosoftSymbolServer": { "type": "boolean", - "description": "If 'true' the Microsoft Symbol server (https\u200b://msdl.microsoft.com\u200b/download/symbols) is added to the symbols search path. If unspecified, this option defaults to 'false'.", + "description": "If 'true' the Microsoft Symbol server (https​://msdl.microsoft.com​/download/symbols) is added to the symbols search path. If unspecified, this option defaults to 'false'.", "default": false }, "cachePath": { @@ -2581,12 +2608,12 @@ "items": { "type": "string" }, - "description": "Array of symbol server URLs (example: http\u200b://MyExampleSymbolServer) or directories (example: /build/symbols) to search for .pdb files. These directories will be searched in addition to the default locations -- next to the module and the path where the pdb was originally dropped to.", + "description": "Array of symbol server URLs (example: http​://MyExampleSymbolServer) or directories (example: /build/symbols) to search for .pdb files. These directories will be searched in addition to the default locations -- next to the module and the path where the pdb was originally dropped to.", "default": [] }, "searchMicrosoftSymbolServer": { "type": "boolean", - "description": "If 'true' the Microsoft Symbol server (https\u200b://msdl.microsoft.com\u200b/download/symbols) is added to the symbols search path. If unspecified, this option defaults to 'false'.", + "description": "If 'true' the Microsoft Symbol server (https​://msdl.microsoft.com​/download/symbols) is added to the symbols search path. If unspecified, this option defaults to 'false'.", "default": false }, "cachePath": { @@ -2670,4 +2697,4 @@ } ] } -} \ No newline at end of file +} diff --git a/src/CSharpExtDownloader.ts b/src/CSharpExtDownloader.ts index 03c7388783..7ee0e2af88 100644 --- a/src/CSharpExtDownloader.ts +++ b/src/CSharpExtDownloader.ts @@ -10,7 +10,6 @@ import { EventStream } from './EventStream'; import { DownloadAndInstallPackages } from './packageManager/PackageManager'; import { Package } from './packageManager/Package'; import { NetworkSettingsProvider } from './NetworkSettings'; -import { ResolveFilePaths } from './packageManager/PackageFilePathResolver'; /* * Class used to download the runtime dependencies of the C# Extension @@ -21,7 +20,8 @@ export class CSharpExtDownloader { private networkSettingsProvider: NetworkSettingsProvider, private eventStream: EventStream, private packageJSON: any, - private platformInfo: PlatformInformation) { + private platformInfo: PlatformInformation, + private extensionPath: string) { } public async installRuntimeDependencies(): Promise { @@ -33,9 +33,8 @@ export class CSharpExtDownloader { // Display platform information and RID this.eventStream.post(new LogPlatformInfo(this.platformInfo)); let runTimeDependencies = GetRunTimeDependenciesPackages(this.packageJSON); - runTimeDependencies.forEach(pkg => ResolveFilePaths(pkg)); installationStage = 'downloadAndInstallPackages'; - await DownloadAndInstallPackages(runTimeDependencies, this.networkSettingsProvider, this.platformInfo, this.eventStream); + await DownloadAndInstallPackages(runTimeDependencies, this.networkSettingsProvider, this.platformInfo, this.eventStream, this.extensionPath); installationStage = 'touchLockFile'; await util.touchInstallFile(util.InstallFileType.Lock); this.eventStream.post(new InstallationSuccess()); diff --git a/src/EventStream.ts b/src/EventStream.ts index 1fb988ccf1..9ca1f81e73 100644 --- a/src/EventStream.ts +++ b/src/EventStream.ts @@ -4,6 +4,7 @@ *--------------------------------------------------------------------------------------------*/ import { Subject } from "rxjs/Subject"; import { BaseEvent } from "./omnisharp/loggingEvents"; +import { Subscription } from "rxjs/Subscription"; export class EventStream { private sink: Subject; @@ -16,7 +17,7 @@ export class EventStream { this.sink.next(event); } - public subscribe(eventHandler: (event: BaseEvent) => void) { - this.sink.subscribe(eventHandler); + public subscribe(eventHandler: (event: BaseEvent) => void): Subscription { + return this.sink.subscribe(eventHandler); } } \ No newline at end of file diff --git a/src/configurationProvider.ts b/src/configurationProvider.ts index bf48d04008..e81b262a86 100644 --- a/src/configurationProvider.ts +++ b/src/configurationProvider.ts @@ -7,6 +7,7 @@ import * as fs from 'fs-extra'; import * as path from 'path'; import * as serverUtils from './omnisharp/utils'; import * as vscode from 'vscode'; +import { ParsedEnvironmentFile } from './coreclr-debug/ParsedEnvironmentFile'; import { AssetGenerator, addTasksJsonIfNecessary, createAttachConfiguration, createLaunchConfiguration, createWebLaunchConfiguration } from './assets'; @@ -14,6 +15,7 @@ import { OmniSharpServer } from './omnisharp/server'; import { containsDotNetCoreProjects } from './omnisharp/protocol'; import { isSubfolderOf } from './common'; import { parse } from 'jsonc-parser'; +import { MessageItem } from './vscodeAdapter'; export class CSharpConfigurationProvider implements vscode.DebugConfigurationProvider { private server: OmniSharpServer; @@ -100,11 +102,56 @@ export class CSharpConfigurationProvider implements vscode.DebugConfigurationPro }); } + /** + * Parse envFile and add to config.env + */ + private parseEnvFile(envFile: string, config: vscode.DebugConfiguration): vscode.DebugConfiguration { + if (envFile) { + try { + const parsedFile: ParsedEnvironmentFile = ParsedEnvironmentFile.CreateFromFile(envFile, config["env"]); + + // show error message if single lines cannot get parsed + if (parsedFile.Warning) { + CSharpConfigurationProvider.showFileWarningAsync(parsedFile.Warning, envFile); + } + + config.env = parsedFile.Env; + } + catch (e) { + throw new Error(`Can't parse envFile ${envFile} because of ${e}`); + } + } + + // remove envFile from config after parsing + if (config.envFile) { + delete config.envFile; + } + + return config; + } + /** * Try to add all missing attributes to the debug configuration being launched. */ resolveDebugConfiguration(folder: vscode.WorkspaceFolder | undefined, config: vscode.DebugConfiguration, token?: vscode.CancellationToken): vscode.ProviderResult { - // vsdbg does the error checking + + // read from envFile and set config.env + if (config.envFile) { + config = this.parseEnvFile(config.envFile.replace(/\${workspaceFolder}/g, folder.uri.path), config); + } + + // vsdbg will error check the debug configuration fields return config; } -} \ No newline at end of file + + private static async showFileWarningAsync(message: string, fileName: string) { + const openItem: MessageItem = { title: 'Open envFile' }; + let result: MessageItem = await vscode.window.showWarningMessage(message, openItem); + if (result && result.title === openItem.title) { + let doc: vscode.TextDocument = await vscode.workspace.openTextDocument(fileName); + if (doc) { + vscode.window.showTextDocument(doc); + } + } + } +} diff --git a/src/coreclr-debug/ParsedEnvironmentFile.ts b/src/coreclr-debug/ParsedEnvironmentFile.ts new file mode 100644 index 0000000000..bc6bf736e7 --- /dev/null +++ b/src/coreclr-debug/ParsedEnvironmentFile.ts @@ -0,0 +1,72 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import * as fs from 'fs-extra'; + +export class ParsedEnvironmentFile +{ + public Env: { [key: string]: any }; + public Warning: string | null; + + private constructor(env: { [key: string]: any }, warning: string | null) + { + this.Env = env; + this.Warning = warning; + } + + public static CreateFromFile(envFile: string, initialEnv: { [key: string]: any } | undefined): ParsedEnvironmentFile { + let content: string = fs.readFileSync(envFile, "utf8"); + return this.CreateFromContent(content, envFile, initialEnv); + } + + public static CreateFromContent(content: string, envFile: string, initialEnv: { [key: string]: any } | undefined): ParsedEnvironmentFile { + + // Remove UTF-8 BOM if present + if(content.charAt(0) === '\uFEFF') { + content = content.substr(1); + } + + let parseErrors: string[] = []; + let env: { [key: string]: any } = initialEnv; + if (!env) { + env = {}; + } + + content.split("\n").forEach(line => { + // Split the line between key and value + const r: RegExpMatchArray = line.match(/^\s*([\w\.\-]+)\s*=\s*(.*)?\s*$/); + + if (r !== null) { + const key: string = r[1]; + let value: string = r[2] || ""; + if ((value.length > 0) && (value.charAt(0) === '"') && (value.charAt(value.length - 1) === '"')) { + value = value.replace(/\\n/gm, "\n"); + } + + value = value.replace(/(^['"]|['"]$)/g, ""); + + env[key] = value; + } + else { + // Blank lines and lines starting with # are no parse errors + const comments: RegExp = new RegExp(/^\s*(#|$)/); + if (!comments.test(line)) { + parseErrors.push(line); + } + } + }); + + // show error message if single lines cannot get parsed + let warning: string = null; + if(parseErrors.length !== 0) { + warning = "Ignoring non-parseable lines in envFile " + envFile + ": "; + parseErrors.forEach(function (value, idx, array) { + warning += "\"" + value + "\"" + ((idx !== array.length - 1) ? ", " : "."); + }); + } + + return new ParsedEnvironmentFile(env, warning); + } +} \ No newline at end of file diff --git a/src/features/codeLensProvider.ts b/src/features/codeLensProvider.ts index a2abdf453a..aa6e4ebe2c 100644 --- a/src/features/codeLensProvider.ts +++ b/src/features/codeLensProvider.ts @@ -6,20 +6,73 @@ import * as protocol from '../omnisharp/protocol'; import * as serverUtils from '../omnisharp/utils'; import * as vscode from 'vscode'; -import { toLocation, toRange } from '../omnisharp/typeConvertion'; +import { toLocation } from '../omnisharp/typeConvertion'; import AbstractProvider from './abstractProvider'; import { OmniSharpServer } from '../omnisharp/server'; import { Options } from '../omnisharp/options'; import TestManager from './dotnetTest'; import OptionProvider from '../observers/OptionProvider'; -class OmniSharpCodeLens extends vscode.CodeLens { +import Structure = protocol.V2.Structure; +import SymbolKinds = protocol.V2.SymbolKinds; +import SymbolPropertyNames = protocol.V2.SymbolPropertyNames; +import SymbolRangeNames = protocol.V2.SymbolRangeNames; - fileName: string; +abstract class OmniSharpCodeLens extends vscode.CodeLens { + constructor( + range: protocol.V2.Range, + public fileName: string) { - constructor(fileName: string, range: vscode.Range) { - super(range); - this.fileName = fileName; + super(new vscode.Range( + range.Start.Line - 1, range.Start.Column - 1, range.End.Line - 1, range.End.Column - 1 + )); + } +} + +class ReferencesCodeLens extends OmniSharpCodeLens { + constructor( + range: protocol.V2.Range, + fileName: string) { + super(range, fileName); + } +} + +abstract class TestCodeLens extends OmniSharpCodeLens { + constructor( + range: protocol.V2.Range, + fileName: string, + public displayName: string, + public isTestContainer: boolean, + public testFramework: string, + public testMethodNames: string[]) { + + super(range, fileName); + } +} + +class RunTestsCodeLens extends TestCodeLens { + constructor( + range: protocol.V2.Range, + fileName: string, + displayName: string, + isTestContainer: boolean, + testFramework: string, + testMethodNames: string[]) { + + super(range, fileName, displayName, isTestContainer, testFramework, testMethodNames); + } +} + +class DebugTestsCodeLens extends TestCodeLens { + constructor( + range: protocol.V2.Range, + fileName: string, + displayName: string, + isTestContainer: boolean, + testFramework: string, + testMethodNames: string[]) { + + super(range, fileName, displayName, isTestContainer, testFramework, testMethodNames); } } @@ -27,150 +80,200 @@ export default class OmniSharpCodeLensProvider extends AbstractProvider implemen constructor(server: OmniSharpServer, testManager: TestManager, private optionProvider: OptionProvider) { super(server); - } - private static filteredSymbolNames: { [name: string]: boolean } = { - 'Equals': true, - 'Finalize': true, - 'GetHashCode': true, - 'ToString': true - }; - - async provideCodeLenses(document: vscode.TextDocument, token: vscode.CancellationToken) { - let options = this.optionProvider.GetLatestOptions(); + async provideCodeLenses(document: vscode.TextDocument, token: vscode.CancellationToken): Promise { + const options = this.optionProvider.GetLatestOptions(); if (!options.showReferencesCodeLens && !options.showTestsCodeLens) { return []; } - let tree = await serverUtils.currentFileMembersAsTree(this._server, { FileName: document.fileName }, token); - let ret: vscode.CodeLens[] = []; + const response = await serverUtils.codeStructure(this._server, { FileName: document.fileName }, token); - for (let node of tree.TopLevelTypeDefinitions) { - await this._convertQuickFix(ret, document.fileName, node, options); + if (response && response.Elements) { + return createCodeLenses(response.Elements, document.fileName, options); } - return ret; + return []; } + async resolveCodeLens(codeLens: vscode.CodeLens, token: vscode.CancellationToken): Promise { + if (codeLens instanceof ReferencesCodeLens) { + return this.resolveReferencesCodeLens(codeLens, token); + } + else if (codeLens instanceof RunTestsCodeLens) { + return this.resolveTestCodeLens(codeLens, 'Run Test', 'dotnet.test.run', 'Run All Tests', 'dotnet.classTests.run'); + } + else if (codeLens instanceof DebugTestsCodeLens) { + return this.resolveTestCodeLens(codeLens, 'Debug Test', 'dotnet.test.debug', 'Debug All Tests', 'dotnet.classTests.debug'); + } + } + + private async resolveReferencesCodeLens(codeLens: ReferencesCodeLens, token: vscode.CancellationToken): Promise { + const request: protocol.FindUsagesRequest = { + FileName: codeLens.fileName, + Line: codeLens.range.start.line + 1, // OmniSharp is 1-based + Column: codeLens.range.start.character + 1, // OmniSharp is 1-based + OnlyThisFile: false, + ExcludeDefinition: true + }; - private async _convertQuickFix(bucket: vscode.CodeLens[], fileName: string, node: protocol.Node, options: Options): Promise { + const result = await serverUtils.findUsages(this._server, request, token); - if (node.Kind === 'MethodDeclaration' && OmniSharpCodeLensProvider.filteredSymbolNames[node.Location.Text]) { + if (!result || !result.QuickFixes) { return; } - let lens = new OmniSharpCodeLens(fileName, toRange(node.Location)); - if (options.showReferencesCodeLens) { - bucket.push(lens); - } + const quickFixes = result.QuickFixes; + const count = quickFixes.length; - for (let child of node.ChildNodes) { - this._convertQuickFix(bucket, fileName, child, options); - } + codeLens.command = { + title: count === 1 ? '1 reference' : `${count} references`, + command: 'editor.action.showReferences', + arguments: [vscode.Uri.file(request.FileName), codeLens.range.start, quickFixes.map(toLocation)] + }; - if (options.showTestsCodeLens) { - await this._updateCodeLensForTest(bucket, fileName, node); - } + return codeLens; } - resolveCodeLens(codeLens: vscode.CodeLens, token: vscode.CancellationToken): Thenable { - if (codeLens instanceof OmniSharpCodeLens) { + private async resolveTestCodeLens(codeLens: TestCodeLens, singularTitle: string, singularCommandName: string, pluralTitle: string, pluralCommandName: string): Promise { + if (!codeLens.isTestContainer) { + // This is just a single test method, not a container. + codeLens.command = { + title: singularTitle, + command: singularCommandName, + arguments: [codeLens.testMethodNames[0], codeLens.fileName, codeLens.testFramework] + }; - let req = { - FileName: codeLens.fileName, - Line: codeLens.range.start.line + 1, - Column: codeLens.range.start.character + 1, - OnlyThisFile: false, - ExcludeDefinition: true + return codeLens; + } + + const projectInfo = await serverUtils.requestProjectInformation(this._server, { FileName: codeLens.fileName }); + + // We do not support running all tests on legacy projects. + if (projectInfo.MsBuildProject && !projectInfo.DotNetProject) { + codeLens.command = { + title: pluralTitle, + command: pluralCommandName, + arguments: [codeLens.displayName, codeLens.testMethodNames, codeLens.fileName, codeLens.testFramework] }; + } - return serverUtils.findUsages(this._server, req, token).then(res => { - if (!res || !Array.isArray(res.QuickFixes)) { - return; - } + return codeLens; + } +} + +function createCodeLenses(elements: Structure.CodeElement[], fileName: string, options: Options): vscode.CodeLens[] { + let results: vscode.CodeLens[] = []; + + Structure.walkCodeElements(elements, element => { + let codeLenses = createCodeLensesForElement(element, fileName, options); + + results.push(...codeLenses); + }); - let len = res.QuickFixes.length; - codeLens.command = { - title: len === 1 ? '1 reference' : `${len} references`, - command: 'editor.action.showReferences', - arguments: [vscode.Uri.file(req.FileName), codeLens.range.start, res.QuickFixes.map(toLocation)] - }; + return results; +} + +function createCodeLensesForElement(element: Structure.CodeElement, fileName: string, options: Options): vscode.CodeLens[] { + let results: vscode.CodeLens[] = []; - return codeLens; - }); + if (options.showReferencesCodeLens && isValidElementForReferencesCodeLens(element)) { + let range = element.Ranges[SymbolRangeNames.Name]; + if (range) { + results.push(new ReferencesCodeLens(range, fileName)); } } - private async _updateCodeLensForTest(bucket: vscode.CodeLens[], fileName: string, node: protocol.Node): Promise { - // backward compatible check: Features property doesn't present on older version OmniSharp - if (node.Features === undefined) { - return; - } + if (options.showTestsCodeLens) { + if (isValidMethodForTestCodeLens(element)) { + let [testFramework, testMethodName] = getTestFrameworkAndMethodName(element); + let range = element.Ranges[SymbolRangeNames.Name]; - if (node.Kind === "ClassDeclaration" && node.ChildNodes.length > 0) { - let projectInfo = await serverUtils.requestProjectInformation(this._server, { FileName: fileName }); - if (!projectInfo.DotNetProject && projectInfo.MsBuildProject) { - this._updateCodeLensForTestClass(bucket, fileName, node); + if (range && testFramework && testMethodName) { + results.push(new RunTestsCodeLens(range, fileName, element.DisplayName,/*isTestContainer*/ false, testFramework, [testMethodName])); + results.push(new DebugTestsCodeLens(range, fileName, element.DisplayName,/*isTestContainer*/ false, testFramework, [testMethodName])); } } + else if (isValidClassForTestCodeLens(element)) { + // Note: We don't handle multiple test frameworks in the same class. The first test framework wins. + let testFramework: string = null; + let testMethodNames: string[] = []; + let range = element.Ranges[SymbolRangeNames.Name]; + + for (let childElement of element.Children) { + let [childTestFramework, childTestMethodName] = getTestFrameworkAndMethodName(childElement); + + if (!testFramework && childTestFramework) { + testFramework = childTestFramework; + testMethodNames.push(childTestMethodName); + } + else if (testFramework && childTestFramework === testFramework) { + testMethodNames.push(childTestMethodName); + } + } - let [testFeature, testFrameworkName] = this._getTestFeatureAndFramework(node); - if (testFeature) { - bucket.push(new vscode.CodeLens( - toRange(node.Location), - { title: "Run Test", command: 'dotnet.test.run', arguments: [testFeature.Data, fileName, testFrameworkName] })); - - bucket.push(new vscode.CodeLens( - toRange(node.Location), - { title: "Debug Test", command: 'dotnet.test.debug', arguments: [testFeature.Data, fileName, testFrameworkName] })); + results.push(new RunTestsCodeLens(range, fileName, element.DisplayName,/*isTestContainer*/ true, testFramework, testMethodNames)); + results.push(new DebugTestsCodeLens(range, fileName, element.DisplayName,/*isTestContainer*/ true, testFramework, testMethodNames)); } } - private _updateCodeLensForTestClass(bucket: vscode.CodeLens[], fileName: string, node: protocol.Node) { - // if the class doesnot contain any method then return - if (!node.ChildNodes.find(value => (value.Kind === "MethodDeclaration"))) { - return; - } + return results; +} - let testMethods = new Array(); - let testFrameworkName: string = null; - for (let child of node.ChildNodes) { - let [testFeature, frameworkName] = this._getTestFeatureAndFramework(child); - if (testFeature) { - // this test method has a test feature - if (!testFrameworkName) { - testFrameworkName = frameworkName; - } +const filteredSymbolNames: { [name: string]: boolean } = { + 'Equals': true, + 'Finalize': true, + 'GetHashCode': true, + 'ToString': true +}; - testMethods.push(testFeature.Data); - } - } +function isValidElementForReferencesCodeLens(element: Structure.CodeElement): boolean { + if (element.Kind === SymbolKinds.Namespace) { + return false; + } - if (testMethods.length > 0) { - bucket.push(new vscode.CodeLens( - toRange(node.Location), - { title: "Run All Tests", command: 'dotnet.classTests.run', arguments: [testMethods, fileName, testFrameworkName] })); - bucket.push(new vscode.CodeLens( - toRange(node.Location), - { title: "Debug All Tests", command: 'dotnet.classTests.debug', arguments: [testMethods, fileName, testFrameworkName] })); - } + if (element.Kind === SymbolKinds.Method && filteredSymbolNames[element.Name]) { + return false; } - private _getTestFeatureAndFramework(node: protocol.Node): [protocol.SyntaxFeature, string] { - let testFeature = node.Features.find(value => (value.Name == 'XunitTestMethod' || value.Name == 'NUnitTestMethod' || value.Name == 'MSTestMethod')); - if (testFeature) { - let testFrameworkName = 'xunit'; - if (testFeature.Name == 'NUnitTestMethod') { - testFrameworkName = 'nunit'; - } - else if (testFeature.Name == 'MSTestMethod') { - testFrameworkName = 'mstest'; - } + return true; +} - return [testFeature, testFrameworkName]; - } +function isValidClassForTestCodeLens(element: Structure.CodeElement): boolean { + if (element.Kind != SymbolKinds.Class) { + return false; + } + + if (!element.Children) { + return false; + } + + return element.Children.find(isValidMethodForTestCodeLens) !== undefined; +} + +function isValidMethodForTestCodeLens(element: Structure.CodeElement): boolean { + if (element.Kind != SymbolKinds.Method) { + return false; + } + + if (!element.Properties || + !element.Properties[SymbolPropertyNames.TestFramework] || + !element.Properties[SymbolPropertyNames.TestMethodName]) { + return false; + } + + return true; +} + +function getTestFrameworkAndMethodName(element: Structure.CodeElement): [string, string] { + if (!element.Properties) { return [null, null]; } + + const testFramework = element.Properties[SymbolPropertyNames.TestFramework]; + const testMethodName = element.Properties[SymbolPropertyNames.TestMethodName]; + + return [testFramework, testMethodName]; } diff --git a/src/features/commands.ts b/src/features/commands.ts index f5ae2c4465..75e203eb3b 100644 --- a/src/features/commands.ts +++ b/src/features/commands.ts @@ -14,45 +14,40 @@ import * as vscode from 'vscode'; import { DotNetAttachItemsProviderFactory, AttachPicker, RemoteAttachPicker } from './processPicker'; import { generateAssets } from '../assets'; import { getAdapterExecutionCommand } from '../coreclr-debug/activate'; -import { CommandShowOutput, CommandDotNetRestoreStart, CommandDotNetRestoreProgress, CommandDotNetRestoreSucceeded, CommandDotNetRestoreFailed } from '../omnisharp/loggingEvents'; +import { ShowOmniSharpChannel, CommandDotNetRestoreStart, CommandDotNetRestoreProgress, CommandDotNetRestoreSucceeded, CommandDotNetRestoreFailed } from '../omnisharp/loggingEvents'; import { EventStream } from '../EventStream'; import { PlatformInformation } from '../platform'; import CompositeDisposable from '../CompositeDisposable'; import OptionProvider from '../observers/OptionProvider'; export default function registerCommands(server: OmniSharpServer, platformInfo: PlatformInformation, eventStream: EventStream, optionProvider: OptionProvider): CompositeDisposable { - let d1 = vscode.commands.registerCommand('o.restart', () => restartOmniSharp(server)); - let d2 = vscode.commands.registerCommand('o.pickProjectAndStart', async () => pickProjectAndStart(server, optionProvider)); - let d3 = vscode.commands.registerCommand('o.showOutput', () => eventStream.post(new CommandShowOutput())); - let d4 = vscode.commands.registerCommand('dotnet.restore', fileName => { - if (fileName) { - dotnetRestoreForProject(server, fileName, eventStream); - } - else { - dotnetRestoreAllProjects(server, eventStream); - } - }); + let disposable = new CompositeDisposable(); + disposable.add(vscode.commands.registerCommand('o.restart', () => restartOmniSharp(server))); + disposable.add(vscode.commands.registerCommand('o.pickProjectAndStart', async () => pickProjectAndStart(server, optionProvider))); + disposable.add(vscode.commands.registerCommand('o.showOutput', () => eventStream.post(new ShowOmniSharpChannel()))); + disposable.add(vscode.commands.registerCommand('dotnet.restore.project', async () => pickProjectAndDotnetRestore(server, eventStream))); + disposable.add(vscode.commands.registerCommand('dotnet.restore.all', async () => dotnetRestoreAllProjects(server, eventStream))); // register empty handler for csharp.installDebugger // running the command activates the extension, which is all we need for installation to kickoff - let d5 = vscode.commands.registerCommand('csharp.downloadDebugger', () => { }); + disposable.add(vscode.commands.registerCommand('csharp.downloadDebugger', () => { })); // register process picker for attach let attachItemsProvider = DotNetAttachItemsProviderFactory.Get(); let attacher = new AttachPicker(attachItemsProvider); - let d6 = vscode.commands.registerCommand('csharp.listProcess', async () => attacher.ShowAttachEntries()); + disposable.add(vscode.commands.registerCommand('csharp.listProcess', async () => attacher.ShowAttachEntries())); // Register command for generating tasks.json and launch.json assets. - let d7 = vscode.commands.registerCommand('dotnet.generateAssets', async () => generateAssets(server)); + disposable.add(vscode.commands.registerCommand('dotnet.generateAssets', async () => generateAssets(server))); // Register command for remote process picker for attach - let d8 = vscode.commands.registerCommand('csharp.listRemoteProcess', async (args) => RemoteAttachPicker.ShowAttachEntries(args, platformInfo)); + disposable.add(vscode.commands.registerCommand('csharp.listRemoteProcess', async (args) => RemoteAttachPicker.ShowAttachEntries(args, platformInfo))); // Register command for adapter executable command. - let d9 = vscode.commands.registerCommand('csharp.coreclrAdapterExecutableCommand', async (args) => getAdapterExecutionCommand(platformInfo, eventStream)); - let d10 = vscode.commands.registerCommand('csharp.clrAdapterExecutableCommand', async (args) => getAdapterExecutionCommand(platformInfo, eventStream)); + disposable.add(vscode.commands.registerCommand('csharp.coreclrAdapterExecutableCommand', async (args) => getAdapterExecutionCommand(platformInfo, eventStream))); + disposable.add(vscode.commands.registerCommand('csharp.clrAdapterExecutableCommand', async (args) => getAdapterExecutionCommand(platformInfo, eventStream))); - return new CompositeDisposable(d1, d2, d3, d4, d5, d6, d7, d8, d9, d10); + return new CompositeDisposable(disposable); } function restartOmniSharp(server: OmniSharpServer) { @@ -64,7 +59,7 @@ function restartOmniSharp(server: OmniSharpServer) { } } -async function pickProjectAndStart(server: OmniSharpServer, optionProvider: OptionProvider) { +async function pickProjectAndStart(server: OmniSharpServer, optionProvider: OptionProvider): Promise { let options = optionProvider.GetLatestOptions(); return findLaunchTargets(options).then(targets => { @@ -120,58 +115,40 @@ function projectsToCommands(projects: protocol.ProjectDescriptor[], eventStream: }); } -export async function dotnetRestoreAllProjects(server: OmniSharpServer, eventStream: EventStream): Promise { - - if (!server.isRunning()) { - return Promise.reject('OmniSharp server is not running.'); +async function pickProjectAndDotnetRestore(server: OmniSharpServer, eventStream: EventStream): Promise { + let descriptors = await getProjectDescriptors(server); + eventStream.post(new CommandDotNetRestoreStart()); + let commands = await Promise.all(projectsToCommands(descriptors, eventStream)); + let command = await vscode.window.showQuickPick(commands); + if (command) { + return command.execute(); } - - return serverUtils.requestWorkspaceInformation(server).then(async info => { - - let descriptors = protocol.getDotNetCoreProjectDescriptors(info); - - if (descriptors.length === 0) { - return Promise.reject("No .NET Core projects found"); - } - - let commandPromises = projectsToCommands(descriptors, eventStream); - - return Promise.all(commandPromises).then(commands => { - return vscode.window.showQuickPick(commands); - }).then(command => { - if (command) { - return command.execute(); - } - }); - }); } -export async function dotnetRestoreForProject(server: OmniSharpServer, filePath: string, eventStream: EventStream) { +async function dotnetRestoreAllProjects(server: OmniSharpServer, eventStream: EventStream): Promise { + let descriptors = await getProjectDescriptors(server); + eventStream.post(new CommandDotNetRestoreStart()); + for (let descriptor of descriptors) { + await dotnetRestore(descriptor.Directory, eventStream); + } +} +async function getProjectDescriptors(server: OmniSharpServer): Promise { if (!server.isRunning()) { return Promise.reject('OmniSharp server is not running.'); } - return serverUtils.requestWorkspaceInformation(server).then(async info => { - - let descriptors = protocol.getDotNetCoreProjectDescriptors(info); - - if (descriptors.length === 0) { - return Promise.reject("No .NET Core projects found"); - } + let info = await serverUtils.requestWorkspaceInformation(server); + let descriptors = protocol.getDotNetCoreProjectDescriptors(info); + if (descriptors.length === 0) { + return Promise.reject("No .NET Core projects found"); + } - for (let descriptor of descriptors) { - if (descriptor.FilePath === filePath) { - return dotnetRestore(descriptor.Directory, eventStream, filePath); - } - } - }); + return descriptors; } -async function dotnetRestore(cwd: string, eventStream: EventStream, filePath?: string) { +export async function dotnetRestore(cwd: string, eventStream: EventStream, filePath?: string): Promise { return new Promise((resolve, reject) => { - eventStream.post(new CommandDotNetRestoreStart()); - let cmd = 'dotnet'; let args = ['restore']; diff --git a/src/features/completionItemProvider.ts b/src/features/completionItemProvider.ts index a7181dbf3a..a4ce2cd91b 100644 --- a/src/features/completionItemProvider.ts +++ b/src/features/completionItemProvider.ts @@ -3,12 +3,12 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -import {extractSummaryText} from './documentation'; +import { extractSummaryText } from './documentation'; import AbstractSupport from './abstractProvider'; import * as protocol from '../omnisharp/protocol'; import * as serverUtils from '../omnisharp/utils'; -import {createRequest} from '../omnisharp/typeConvertion'; -import {CompletionItemProvider, CompletionItem, CompletionItemKind, CompletionContext, CompletionTriggerKind, CancellationToken, TextDocument, Range, Position, CompletionList} from 'vscode'; +import { createRequest } from '../omnisharp/typeConvertion'; +import { CompletionItemProvider, CompletionItem, CompletionItemKind, CompletionContext, CompletionTriggerKind, CancellationToken, TextDocument, Range, Position, CompletionList } from 'vscode'; export default class OmniSharpCompletionItemProvider extends AbstractSupport implements CompletionItemProvider { @@ -17,7 +17,7 @@ export default class OmniSharpCompletionItemProvider extends AbstractSupport imp ' ', '{', '}', '[', ']', '(', ')', '.', ',', ':', ';', '+', '-', '*', '/', '%', '&', '|', '^', '!', '~', '=', '<', '>', '?', '@', '#', '\'', '\"', '\\']; - + private static CommitCharactersWithoutSpace = [ '{', '}', '[', ']', '(', ')', '.', ',', ':', ';', '+', '-', '*', '/', '%', '&', '|', '^', '!', @@ -36,8 +36,7 @@ export default class OmniSharpCompletionItemProvider extends AbstractSupport imp req.WantDocumentationForEveryCompletionResult = true; req.WantKind = true; req.WantReturnType = true; - if (context.triggerKind == CompletionTriggerKind.TriggerCharacter) - { + if (context.triggerKind == CompletionTriggerKind.TriggerCharacter) { req.TriggerCharacter = context.triggerCharacter; } @@ -48,7 +47,7 @@ export default class OmniSharpCompletionItemProvider extends AbstractSupport imp } let result: CompletionItem[] = []; - let completions: { [c: string]: CompletionItem[] } = Object.create(null); + let completions: { [c: string]: { items: CompletionItem[], preselect : boolean } } = Object.create(null); // transform AutoCompleteResponse to CompletionItem and // group by code snippet @@ -67,20 +66,23 @@ export default class OmniSharpCompletionItemProvider extends AbstractSupport imp ? OmniSharpCompletionItemProvider.CommitCharactersWithoutSpace : OmniSharpCompletionItemProvider.AllCommitCharacters; - let array = completions[completion.label]; - if (!array) { - completions[completion.label] = [completion]; + completion.preselect = response.Preselect; + + let completionSet = completions[completion.label]; + if (!completionSet) { + completions[completion.label] = { items: [completion], preselect: completion.preselect }; } else { - array.push(completion); + completionSet.preselect = completionSet.preselect || completion.preselect; + completionSet.items.push(completion); } } // per suggestion group, select on and indicate overloads for (let key in completions) { - let suggestion = completions[key][0], - overloadCount = completions[key].length - 1; + let suggestion = completions[key].items[0], + overloadCount = completions[key].items.length - 1; if (overloadCount === 0) { // remove non overloaded items @@ -90,8 +92,9 @@ export default class OmniSharpCompletionItemProvider extends AbstractSupport imp else { // indicate that there is more suggestion.detail = `${suggestion.detail} (+ ${overloadCount} overload(s))`; + suggestion.preselect = completions[key].preselect; } - + result.push(suggestion); } diff --git a/src/features/diagnosticsProvider.ts b/src/features/diagnosticsProvider.ts index 6ea57e51d6..8e910173ba 100644 --- a/src/features/diagnosticsProvider.ts +++ b/src/features/diagnosticsProvider.ts @@ -133,12 +133,14 @@ class DiagnosticsProvider extends AbstractSupport { let d4 = vscode.workspace.onDidOpenTextDocument(event => this._onDocumentAddOrChange(event), this); let d3 = vscode.workspace.onDidChangeTextDocument(event => this._onDocumentAddOrChange(event.document), this); let d5 = vscode.workspace.onDidCloseTextDocument(this._onDocumentRemove, this); - this._disposable = new CompositeDisposable(this._diagnostics, d1, d2, d3, d4, d5); + let d6 = vscode.window.onDidChangeActiveTextEditor(event => this._onDidChangeActiveTextEditor(event), this); + let d7 = vscode.window.onDidChangeWindowState(event => this._OnDidChangeWindowState(event), this); + this._disposable = new CompositeDisposable(this._diagnostics, d1, d2, d3, d4, d5, d6, d7); // Go ahead and check for diagnostics in the currently visible editors. for (let editor of vscode.window.visibleTextEditors) { let document = editor.document; - if (document.languageId === 'csharp' && document.uri.scheme === 'file') { + if (document.languageId === 'csharp') { this._validateDocument(document); } } @@ -156,14 +158,27 @@ class DiagnosticsProvider extends AbstractSupport { this._disposable.dispose(); } + private _OnDidChangeWindowState(windowState: vscode.WindowState): void { + if (windowState.focused === true) { + this._onDidChangeActiveTextEditor(vscode.window.activeTextEditor); + } + } + + private _onDidChangeActiveTextEditor(textEditor: vscode.TextEditor): void { + // active text editor can be undefined. + if (textEditor != undefined && textEditor.document != null) { + this._onDocumentAddOrChange(textEditor.document); + } + } + private _onDocumentAddOrChange(document: vscode.TextDocument): void { - if (document.languageId === 'csharp' && document.uri.scheme === 'file') { + if (document.languageId === 'csharp') { this._validateDocument(document); this._validateProject(); } } - private _onDocumentRemove(document: vscode.TextDocument) { + private _onDocumentRemove(document: vscode.TextDocument): void { let key = document.uri; let didChange = false; if (this._diagnostics.get(key)) { diff --git a/src/features/documentSymbolProvider.ts b/src/features/documentSymbolProvider.ts index 753e85af66..27655b8de7 100644 --- a/src/features/documentSymbolProvider.ts +++ b/src/features/documentSymbolProvider.ts @@ -4,20 +4,82 @@ *--------------------------------------------------------------------------------------------*/ import AbstractSupport from './abstractProvider'; +import * as protocol from '../omnisharp/protocol'; import * as serverUtils from '../omnisharp/utils'; -import {toDocumentSymbol} from '../omnisharp/typeConvertion'; -import {DocumentSymbolProvider, SymbolInformation, TextDocument, CancellationToken} from 'vscode'; +import * as vscode from 'vscode'; -export default class OmnisharpDocumentSymbolProvider extends AbstractSupport implements DocumentSymbolProvider { +import Structure = protocol.V2.Structure; +import SymbolKinds = protocol.V2.SymbolKinds; +import SymbolRangeNames = protocol.V2.SymbolRangeNames; - public async provideDocumentSymbols(document: TextDocument, token: CancellationToken): Promise { +export default class OmnisharpDocumentSymbolProvider extends AbstractSupport implements vscode.DocumentSymbolProvider { - return serverUtils.currentFileMembersAsTree(this._server, { FileName: document.fileName }, token).then(tree => { - let ret: SymbolInformation[] = []; - for (let node of tree.TopLevelTypeDefinitions) { - toDocumentSymbol(ret, node); - } - return ret; - }); + async provideDocumentSymbols(document: vscode.TextDocument, token: vscode.CancellationToken): Promise { + const response = await serverUtils.codeStructure(this._server, { FileName: document.fileName }, token); + + if (response && response.Elements) { + return createSymbols(response.Elements, document.fileName); + } + + return []; + } +} + +function createSymbols(elements: Structure.CodeElement[], fileName: string): vscode.SymbolInformation[] { + let results: vscode.SymbolInformation[] = []; + + Structure.walkCodeElements(elements, (element, parentElement) => { + const parentElementName = parentElement ? parentElement.DisplayName : undefined; + const symbol = createSymbolForElement(element, parentElementName, fileName); + + results.push(symbol); + }); + + return results; +} + +function createSymbolForElement(element: Structure.CodeElement, parentElementName: string, fileName: string): vscode.SymbolInformation { + const range = element.Ranges[SymbolRangeNames.Full]; + + const vscodeRange = new vscode.Range( + range.Start.Line - 1, range.Start.Column - 1, range.End.Line - 1, range.End.Column - 1 + ); + + return new vscode.SymbolInformation( + element.DisplayName, + toSymbolKind(element.Kind), + parentElementName, + new vscode.Location(vscode.Uri.file(fileName), vscodeRange) + ); +} + +const kinds: { [kind: string]: vscode.SymbolKind; } = { }; + +kinds[SymbolKinds.Class] = vscode.SymbolKind.Class; +kinds[SymbolKinds.Delegate] = vscode.SymbolKind.Class; +kinds[SymbolKinds.Enum] = vscode.SymbolKind.Enum; +kinds[SymbolKinds.Interface] = vscode.SymbolKind.Interface; +kinds[SymbolKinds.Struct] = vscode.SymbolKind.Struct; + +kinds[SymbolKinds.Constant] = vscode.SymbolKind.Constant; +kinds[SymbolKinds.Destructor] = vscode.SymbolKind.Method; +kinds[SymbolKinds.EnumMember] = vscode.SymbolKind.EnumMember; +kinds[SymbolKinds.Event] = vscode.SymbolKind.Event; +kinds[SymbolKinds.Field] = vscode.SymbolKind.Field; +kinds[SymbolKinds.Indexer] = vscode.SymbolKind.Property; +kinds[SymbolKinds.Method] = vscode.SymbolKind.Method; +kinds[SymbolKinds.Operator] = vscode.SymbolKind.Operator; +kinds[SymbolKinds.Property] = vscode.SymbolKind.Property; + +kinds[SymbolKinds.Namespace] = vscode.SymbolKind.Namespace; +kinds[SymbolKinds.Unknown] = vscode.SymbolKind.Class; + +function toSymbolKind(kind: string): vscode.SymbolKind { + // Note: 'constructor' is a special property name for JavaScript objects. + // So, we need to handle it specifically. + if (kind === 'constructor') { + return vscode.SymbolKind.Constructor; } + + return kinds[kind]; } diff --git a/src/features/dotnetTest.ts b/src/features/dotnetTest.ts index 6b9610cf78..c336fc6833 100644 --- a/src/features/dotnetTest.ts +++ b/src/features/dotnetTest.ts @@ -13,7 +13,7 @@ import * as vscode from 'vscode'; import AbstractProvider from './abstractProvider'; import { DebuggerEventsProtocol } from '../coreclr-debug/debuggerEventsProtocol'; import { OmniSharpServer } from '../omnisharp/server'; -import { TestExecutionCountReport } from '../omnisharp/loggingEvents'; +import { TestExecutionCountReport, ReportDotNetTestResults, DotNetTestRunStart, DotNetTestMessage, DotNetTestRunFailure, DotNetTestsInClassRunStart, DotNetTestDebugWarning, DotNetTestDebugProcessStart, DotNetTestDebugComplete, DotNetTestDebugStart, DotNetTestsInClassDebugStart, DotNetTestDebugStartFailure } from '../omnisharp/loggingEvents'; import { EventStream } from '../EventStream'; import LaunchConfiguration from './launchConfiguration'; import Disposable from '../Disposable'; @@ -22,7 +22,6 @@ import CompositeDisposable from '../CompositeDisposable'; const TelemetryReportingDelay = 2 * 60 * 1000; // two minutes export default class TestManager extends AbstractProvider { - private _channel: vscode.OutputChannel; private _runCounts: { [testFrameworkName: string]: number }; private _debugCounts: { [testFrameworkName: string]: number }; @@ -44,11 +43,11 @@ export default class TestManager extends AbstractProvider { let d4 = vscode.commands.registerCommand( 'dotnet.classTests.run', - async (methodsInClass, fileName, testFrameworkName) => this._runDotnetTestsInClass(methodsInClass, fileName, testFrameworkName)); + async (className, methodsInClass, fileName, testFrameworkName) => this._runDotnetTestsInClass(className, methodsInClass, fileName, testFrameworkName)); let d5 = vscode.commands.registerCommand( 'dotnet.classTests.debug', - async (methodsInClass, fileName, testFrameworkName) => this._debugDotnetTestsInClass(methodsInClass, fileName, testFrameworkName)); + async (className, methodsInClass, fileName, testFrameworkName) => this._debugDotnetTestsInClass(className, methodsInClass, fileName, testFrameworkName)); this._telemetryIntervalId = setInterval(() => this._reportTelemetry(), TelemetryReportingDelay); @@ -65,15 +64,6 @@ export default class TestManager extends AbstractProvider { this.addDisposables(new CompositeDisposable(d1, d2, d3, d4, d5)); } - private _getOutputChannel(): vscode.OutputChannel { - if (this._channel === undefined) { - this._channel = vscode.window.createOutputChannel(".NET Test Log"); - this.addDisposables(new CompositeDisposable(this._channel)); - } - - return this._channel; - } - private _recordRunRequest(testFrameworkName: string): void { if (this._runCounts === undefined) { this._runCounts = {}; @@ -127,35 +117,8 @@ export default class TestManager extends AbstractProvider { TargetFrameworkVersion: targetFrameworkVersion }; - return serverUtils.runTest(this._server, request) - .then(response => response.Results); - } - - private async _reportResults(results: protocol.V2.DotNetTestResult[]): Promise { - const totalTests = results.length; - const output = this._getOutputChannel(); - - let totalPassed = 0, totalFailed = 0, totalSkipped = 0; - for (let result of results) { - output.appendLine(`${result.MethodName}: ${result.Outcome}`); - switch (result.Outcome) { - case protocol.V2.TestOutcomes.Failed: - totalFailed += 1; - break; - case protocol.V2.TestOutcomes.Passed: - totalPassed += 1; - break; - case protocol.V2.TestOutcomes.Skipped: - totalSkipped += 1; - break; - } - } - - output.appendLine(''); - output.appendLine(`Total tests: ${totalTests}. Passed: ${totalPassed}. Failed: ${totalFailed}. Skipped: ${totalSkipped}`); - output.appendLine(''); - - return Promise.resolve(); + let response = await serverUtils.runTest(this._server, request); + return response.Results; } private async _recordRunAndGetFrameworkVersion(fileName: string, testFrameworkName: string) { @@ -180,44 +143,48 @@ export default class TestManager extends AbstractProvider { } private async _runDotnetTest(testMethod: string, fileName: string, testFrameworkName: string) { - const output = this._getOutputChannel(); - output.show(); - output.appendLine(`Running test ${testMethod}...`); - output.appendLine(''); + this._eventStream.post(new DotNetTestRunStart(testMethod)); const listener = this._server.onTestMessage(e => { - output.appendLine(e.Message); + this._eventStream.post(new DotNetTestMessage(e.Message)); }); let targetFrameworkVersion = await this._recordRunAndGetFrameworkVersion(fileName, testFrameworkName); - return this._runTest(fileName, testMethod, testFrameworkName, targetFrameworkVersion) - .then(async results => this._reportResults(results)) - .then(() => listener.dispose()) - .catch(reason => { - listener.dispose(); - vscode.window.showErrorMessage(`Failed to run test because ${reason}.`); - }); + try { + let results = await this._runTest(fileName, testMethod, testFrameworkName, targetFrameworkVersion); + this._eventStream.post(new ReportDotNetTestResults(results)); + } + catch (reason) { + this._eventStream.post(new DotNetTestRunFailure(reason)); + } + finally { + listener.dispose(); + } } - private async _runDotnetTestsInClass(methodsInClass: string[], fileName: string, testFrameworkName: string) { - const output = this._getOutputChannel(); + private async _runDotnetTestsInClass(className: string, methodsInClass: string[], fileName: string, testFrameworkName: string) { + + //to do: try to get the class name here + this._eventStream.post(new DotNetTestsInClassRunStart(className)); - output.show(); const listener = this._server.onTestMessage(e => { - output.appendLine(e.Message); + this._eventStream.post(new DotNetTestMessage(e.Message)); }); let targetFrameworkVersion = await this._recordRunAndGetFrameworkVersion(fileName, testFrameworkName); - return this._runTestsInClass(fileName, testFrameworkName, targetFrameworkVersion, methodsInClass) - .then(async results => this._reportResults(results)) - .then(() => listener.dispose()) - .catch(reason => { - listener.dispose(); - vscode.window.showErrorMessage(`Failed to run tests because ${reason}.`); - }); + try { + let results = await this._runTestsInClass(fileName, testFrameworkName, targetFrameworkVersion, methodsInClass); + this._eventStream.post(new ReportDotNetTestResults(results)); + } + catch (reason) { + this._eventStream.post(new DotNetTestRunFailure(reason)); + } + finally { + listener.dispose(); + } } private async _runTestsInClass(fileName: string, testFrameworkName: string, targetFrameworkVersion: string, methodsToRun: string[]): Promise { @@ -228,8 +195,8 @@ export default class TestManager extends AbstractProvider { MethodNames: methodsToRun }; - return serverUtils.runTestsInClass(this._server, request) - .then(response => response.Results); + let response = await serverUtils.runTestsInClass(this._server, request); + return response.Results; } private _createLaunchConfiguration(program: string, args: string, cwd: string, debuggerEventsPipeName: string) { @@ -255,9 +222,7 @@ export default class TestManager extends AbstractProvider { cwd: cwd }; - // Now fill in the rest of the options - return launchConfiguration; } @@ -267,11 +232,10 @@ export default class TestManager extends AbstractProvider { testFrameworkName: string, targetFrameworkVersion: string, debugEventListener: DebugEventListener): Promise { - const output = this._getOutputChannel(); // Listen for test messages while getting start info. const listener = this._server.onTestMessage(e => { - output.appendLine(e.Message); + this._eventStream.post(new DotNetTestMessage(e.Message)); }); const request: protocol.V2.DebugTestGetStartInfoRequest = { @@ -281,23 +245,24 @@ export default class TestManager extends AbstractProvider { TargetFrameworkVersion: targetFrameworkVersion }; - return serverUtils.debugTestGetStartInfo(this._server, request) - .then(response => { - listener.dispose(); - return this._createLaunchConfiguration( - response.FileName, - response.Arguments, - response.WorkingDirectory, - debugEventListener.pipePath()); - }); + try { + let response = await serverUtils.debugTestGetStartInfo(this._server, request); + return this._createLaunchConfiguration( + response.FileName, + response.Arguments, + response.WorkingDirectory, + debugEventListener.pipePath()); + } + finally { + listener.dispose(); + } } private async _getLaunchConfigurationForLegacy(fileName: string, testMethod: string, testFrameworkName: string, targetFrameworkVersion: string): Promise { - const output = this._getOutputChannel(); // Listen for test messages while getting start info. const listener = this._server.onTestMessage(e => { - output.appendLine(e.Message); + this._eventStream.post(new DotNetTestMessage(e.Message)); }); const request: protocol.V2.GetTestStartInfoRequest = { @@ -307,11 +272,13 @@ export default class TestManager extends AbstractProvider { TargetFrameworkVersion: targetFrameworkVersion }; - return serverUtils.getTestStartInfo(this._server, request) - .then(response => { - listener.dispose(); - return this._createLaunchConfiguration(response.Executable, response.Argument, response.WorkingDirectory, null); - }); + try { + let response = await serverUtils.getTestStartInfo(this._server, request); + return this._createLaunchConfiguration(response.Executable, response.Argument, response.WorkingDirectory, null); + } + finally { + listener.dispose(); + } } private async _getLaunchConfiguration( @@ -332,7 +299,7 @@ export default class TestManager extends AbstractProvider { } } - private async _recordDebugAndGetDebugValues(fileName: string, testFrameworkName: string, output: vscode.OutputChannel) { + private async _recordDebugAndGetDebugValues(fileName: string, testFrameworkName: string) { await this._saveDirtyFiles(); this._recordDebugRequest(testFrameworkName); let projectInfo = await serverUtils.requestProjectInformation(this._server, { FileName: fileName }); @@ -348,7 +315,7 @@ export default class TestManager extends AbstractProvider { else if (projectInfo.MsBuildProject) { debugType = 'vstest'; targetFrameworkVersion = projectInfo.MsBuildProject.TargetFramework; - debugEventListener = new DebugEventListener(fileName, this._server, output); + debugEventListener = new DebugEventListener(fileName, this._server, this._eventStream); debugEventListener.start(); } else { @@ -362,44 +329,40 @@ export default class TestManager extends AbstractProvider { // We support to styles of 'dotnet test' for debugging: The legacy 'project.json' testing, and the newer csproj support // using VS Test. These require a different level of communication. - const output = this._getOutputChannel(); + this._eventStream.post(new DotNetTestDebugStart(testMethod)); - output.show(); - output.appendLine(`Debugging method '${testMethod}'...`); - output.appendLine(''); + let { debugType, debugEventListener, targetFrameworkVersion } = await this._recordDebugAndGetDebugValues(fileName, testFrameworkName); - let { debugType, debugEventListener, targetFrameworkVersion } = await this._recordDebugAndGetDebugValues(fileName, testFrameworkName, output); - - return this._getLaunchConfiguration(debugType, fileName, testMethod, testFrameworkName, targetFrameworkVersion, debugEventListener) - .then(config => { - const workspaceFolder = vscode.workspace.getWorkspaceFolder(vscode.Uri.file(fileName)); - return vscode.debug.startDebugging(workspaceFolder, config); - }) - .catch(reason => { - vscode.window.showErrorMessage(`Failed to start debugger: ${reason}`); - if (debugEventListener != null) { - debugEventListener.close(); - } - }); + try { + let config = await this._getLaunchConfiguration(debugType, fileName, testMethod, testFrameworkName, targetFrameworkVersion, debugEventListener); + const workspaceFolder = vscode.workspace.getWorkspaceFolder(vscode.Uri.file(fileName)); + return vscode.debug.startDebugging(workspaceFolder, config); + } + catch (reason) { + this._eventStream.post(new DotNetTestDebugStartFailure(reason)); + if (debugEventListener != null) { + debugEventListener.close(); + } + } } - private async _debugDotnetTestsInClass(methodsToRun: string[], fileName: string, testFrameworkName: string) { + private async _debugDotnetTestsInClass(className: string, methodsToRun: string[], fileName: string, testFrameworkName: string) { - const output = this._getOutputChannel(); + this._eventStream.post(new DotNetTestsInClassDebugStart(className)); - let { debugType, debugEventListener, targetFrameworkVersion } = await this._recordDebugAndGetDebugValues(fileName, testFrameworkName, output); + let { debugType, debugEventListener, targetFrameworkVersion } = await this._recordDebugAndGetDebugValues(fileName, testFrameworkName); - return await this._getLaunchConfigurationForClass(debugType, fileName, methodsToRun, testFrameworkName, targetFrameworkVersion, debugEventListener) - .then(config => { - const workspaceFolder = vscode.workspace.getWorkspaceFolder(vscode.Uri.file(fileName)); - return vscode.debug.startDebugging(workspaceFolder, config); - }) - .catch(reason => { - vscode.window.showErrorMessage(`Failed to start debugger: ${reason}`); - if (debugEventListener != null) { - debugEventListener.close(); - } - }); + try { + let config = await this._getLaunchConfigurationForClass(debugType, fileName, methodsToRun, testFrameworkName, targetFrameworkVersion, debugEventListener); + const workspaceFolder = vscode.workspace.getWorkspaceFolder(vscode.Uri.file(fileName)); + return vscode.debug.startDebugging(workspaceFolder, config); + } + catch (reason) { + this._eventStream.post(new DotNetTestDebugStartFailure(reason)); + if (debugEventListener != null) { + debugEventListener.close(); + } + } } private async _getLaunchConfigurationForClass( @@ -421,10 +384,9 @@ export default class TestManager extends AbstractProvider { testFrameworkName: string, targetFrameworkVersion: string, debugEventListener: DebugEventListener): Promise { - const output = this._getOutputChannel(); const listener = this._server.onTestMessage(e => { - output.appendLine(e.Message); + this._eventStream.post(new DotNetTestMessage(e.Message)); }); const request: protocol.V2.DebugTestClassGetStartInfoRequest = { @@ -434,11 +396,13 @@ export default class TestManager extends AbstractProvider { TargetFrameworkVersion: targetFrameworkVersion }; - return serverUtils.debugTestClassGetStartInfo(this._server, request) - .then(response => { - listener.dispose(); - return this._createLaunchConfiguration(response.FileName, response.Arguments, response.WorkingDirectory, debugEventListener.pipePath()); - }); + try { + let response = await serverUtils.debugTestClassGetStartInfo(this._server, request); + return this._createLaunchConfiguration(response.FileName, response.Arguments, response.WorkingDirectory, debugEventListener.pipePath()); + } + finally { + listener.dispose(); + } } } @@ -446,16 +410,16 @@ class DebugEventListener { static s_activeInstance: DebugEventListener = null; _fileName: string; _server: OmniSharpServer; - _outputChannel: vscode.OutputChannel; _pipePath: string; + _eventStream: EventStream; _serverSocket: net.Server; _isClosed: boolean = false; - constructor(fileName: string, server: OmniSharpServer, outputChannel: vscode.OutputChannel) { + constructor(fileName: string, server: OmniSharpServer, eventStream: EventStream) { this._fileName = fileName; this._server = server; - this._outputChannel = outputChannel; + this._eventStream = eventStream; // NOTE: The max pipe name on OSX is fairly small, so this name shouldn't bee too long. const pipeSuffix = "TestDebugEvents-" + process.pid; if (os.platform() === 'win32') { @@ -481,19 +445,19 @@ class DebugEventListener { event = DebuggerEventsProtocol.decodePacket(buffer); } catch (e) { - this._outputChannel.appendLine("Warning: Invalid event received from debugger"); + this._eventStream.post(new DotNetTestDebugWarning("Invalid event received from debugger")); return; } switch (event.eventType) { case DebuggerEventsProtocol.EventType.ProcessLaunched: let processLaunchedEvent = (event); - this._outputChannel.appendLine(`Started debugging process #${processLaunchedEvent.targetProcessId}.`); + this._eventStream.post(new DotNetTestDebugProcessStart(processLaunchedEvent.targetProcessId)); this.onProcessLaunched(processLaunchedEvent.targetProcessId); break; case DebuggerEventsProtocol.EventType.DebuggingStopped: - this._outputChannel.appendLine("Debugging complete.\n"); + this._eventStream.post(new DotNetTestDebugComplete()); this.onDebuggingStopped(); break; } @@ -504,21 +468,20 @@ class DebugEventListener { }); }); - return this.removeSocketFileIfExists().then(async () => { - return new Promise((resolve, reject) => { - let isStarted: boolean = false; - this._serverSocket.on('error', (err: Error) => { - if (!isStarted) { - reject(err.message); - } else { - this._outputChannel.appendLine("Warning: Communications error on debugger event channel. " + err.message); - } - }); - - this._serverSocket.listen(this._pipePath, () => { - isStarted = true; - resolve(); - }); + await this.removeSocketFileIfExists(); + return new Promise((resolve, reject) => { + let isStarted: boolean = false; + this._serverSocket.on('error', (err: Error) => { + if (!isStarted) { + reject(err.message); + } else { + this._eventStream.post(new DotNetTestDebugWarning(`Communications error on debugger event channel. ${err.message}`)); + } + }); + + this._serverSocket.listen(this._pipePath, () => { + isStarted = true; + resolve(); }); }); } @@ -543,20 +506,22 @@ class DebugEventListener { } } - private onProcessLaunched(targetProcessId: number): void { + private async onProcessLaunched(targetProcessId: number): Promise { let request: protocol.V2.DebugTestLaunchRequest = { FileName: this._fileName, TargetProcessId: targetProcessId }; const disposable = this._server.onTestMessage(e => { - this._outputChannel.appendLine(e.Message); + this._eventStream.post(new DotNetTestMessage(e.Message)); }); - serverUtils.debugTestLaunch(this._server, request) - .then(_ => { - disposable.dispose(); - }); + try { + await serverUtils.debugTestLaunch(this._server, request); + } + finally { + disposable.dispose(); + } } private onDebuggingStopped(): void { diff --git a/src/features/processPicker.ts b/src/features/processPicker.ts index 169733c013..8af95202b7 100644 --- a/src/features/processPicker.ts +++ b/src/features/processPicker.ts @@ -27,6 +27,7 @@ export class AttachPicker { return this.attachItemsProvider.getAttachItems() .then(processEntries => { let attachPickOptions: vscode.QuickPickOptions = { + ignoreFocusOut: true, matchOnDescription: true, matchOnDetail: true, placeHolder: "Select the process to attach to" @@ -43,6 +44,7 @@ export class AttachPicker { interface IPipeTransportOptions { pipeProgram: string; pipeArgs: string | string[]; + pipeCwd: string; quoteArgs: boolean; } @@ -89,18 +91,21 @@ export class RemoteAttachPicker { public static getPipeTransportOptions(pipeTransport: any, osPlatform: string): IPipeTransportOptions { let pipeProgram: string = pipeTransport.pipeProgram; let pipeArgs: string[] | string = pipeTransport.pipeArgs; + let pipeCwd: string = pipeTransport.pipeCwd; let quoteArgs: boolean = pipeTransport.quoteArgs != null ? pipeTransport.quoteArgs : true; // default value is true let platformSpecificPipeTransportOptions: IPipeTransportOptions = this.getPlatformSpecificPipeTransportOptions(pipeTransport, osPlatform); if (platformSpecificPipeTransportOptions) { pipeProgram = platformSpecificPipeTransportOptions.pipeProgram || pipeProgram; pipeArgs = platformSpecificPipeTransportOptions.pipeArgs || pipeArgs; + pipeCwd = platformSpecificPipeTransportOptions.pipeCwd || pipeCwd; quoteArgs = platformSpecificPipeTransportOptions.quoteArgs != null ? platformSpecificPipeTransportOptions.quoteArgs : quoteArgs; } return { pipeProgram: pipeProgram, pipeArgs: pipeArgs, + pipeCwd: pipeCwd, quoteArgs: quoteArgs }; } @@ -216,9 +221,10 @@ export class RemoteAttachPicker { let pipeTransport = this.getPipeTransportOptions(args.pipeTransport, os.platform()); return RemoteAttachPicker.createPipeCmd(pipeTransport.pipeProgram, pipeTransport.pipeArgs, pipeTransport.quoteArgs) - .then(async pipeCmd => RemoteAttachPicker.getRemoteOSAndProcesses(pipeCmd, platformInfo)) + .then(async pipeCmd => RemoteAttachPicker.getRemoteOSAndProcesses(pipeCmd, pipeTransport.pipeCwd, platformInfo)) .then(processes => { let attachPickOptions: vscode.QuickPickOptions = { + ignoreFocusOut: true, matchOnDescription: true, matchOnDetail: true, placeHolder: "Select the process to attach to" @@ -229,10 +235,10 @@ export class RemoteAttachPicker { } } - public static async getRemoteOSAndProcesses(pipeCmd: string, platformInfo: PlatformInformation): Promise { + public static async getRemoteOSAndProcesses(pipeCmd: string, pipeCwd: string, platformInfo: PlatformInformation): Promise { const scriptPath = path.join(getExtensionPath(), 'scripts', 'remoteProcessPickerScript'); - return execChildProcessAndOutputErrorToChannel(`${pipeCmd} < ${scriptPath}`, null, RemoteAttachPicker._channel, platformInfo).then(output => { + return execChildProcessAndOutputErrorToChannel(`${pipeCmd} < ${scriptPath}`, pipeCwd, RemoteAttachPicker._channel, platformInfo).then(output => { // OS will be on first line // Processess will follow if listed let lines = output.split(/\r?\n/); @@ -501,7 +507,7 @@ async function execChildProcess(process: string, workingDirectory: string): Prom }); } -// VSCode cannot find the path "c:\windows\system32\bash.exe" as bash.exe is only available on 64bit OS. +// VSCode cannot find the path "c:\windows\system32\bash.exe" as bash.exe is only available on 64bit OS. // It can be invoked from "c:\windows\sysnative\bash.exe", so adding "c:\windows\sysnative" to path if we identify // VSCode is running in windows and doesn't have it in the path. async function GetSysNativePathIfNeeded(platformInfo: PlatformInformation): Promise { diff --git a/src/features/structureProvider.ts b/src/features/structureProvider.ts new file mode 100644 index 0000000000..0b20889f4e --- /dev/null +++ b/src/features/structureProvider.ts @@ -0,0 +1,39 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { FoldingRangeProvider, TextDocument, FoldingContext, CancellationToken, FoldingRange, FoldingRangeKind } from "vscode"; +import AbstractSupport from './abstractProvider'; +import { blockStructure } from "../omnisharp/utils"; +import { Request } from "../omnisharp/protocol"; + +export class StructureProvider extends AbstractSupport implements FoldingRangeProvider { + async provideFoldingRanges(document: TextDocument, context: FoldingContext, token: CancellationToken): Promise { + let request: Request = { + FileName: document.fileName, + }; + + let response = await blockStructure(this._server, request, token); + let ranges: FoldingRange[] = []; + for (let member of response.Spans) { + ranges.push(new FoldingRange(member.Range.Start.Line - 1, member.Range.End.Line - 1, this.GetType(member.Kind))); + } + + return ranges; + } + + GetType(type: string): FoldingRangeKind { + switch (type) { + case "Comment": + return FoldingRangeKind.Comment; + case "Imports": + return FoldingRangeKind.Imports; + case "Region": + return FoldingRangeKind.Region; + default: + return null; + } + } + +} \ No newline at end of file diff --git a/src/features/virtualDocumentTracker.ts b/src/features/virtualDocumentTracker.ts new file mode 100644 index 0000000000..d3734add4f --- /dev/null +++ b/src/features/virtualDocumentTracker.ts @@ -0,0 +1,109 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import {workspace, TextDocument, Uri} from 'vscode'; +import {OmniSharpServer} from '../omnisharp/server'; +import * as serverUtils from '../omnisharp/utils'; +import { FileChangeType } from '../omnisharp/protocol'; +import { IDisposable } from '../Disposable'; +import CompositeDisposable from '../CompositeDisposable'; +import { EventStream } from '../EventStream'; +import { DocumentSynchronizationFailure } from '../omnisharp/loggingEvents'; + +function trackCurrentVirtualDocuments(server: OmniSharpServer, eventStream: EventStream) { + let registration = server.onProjectAdded(async () => { + registration.dispose(); + + for (let i = 0; i < workspace.textDocuments.length; i++) { + let document = workspace.textDocuments[i]; + + if (!shouldIgnoreDocument(document, server)) { + await openVirtualDocument(document, server, eventStream); + } + } + }); +} + +function trackFutureVirtualDocuments(server: OmniSharpServer, eventStream: EventStream): IDisposable { + let onTextDocumentOpen = workspace.onDidOpenTextDocument(async document => { + if (shouldIgnoreDocument(document, server)) { + return; + } + + await openVirtualDocument(document, server, eventStream); + }); + + let onTextDocumentClose = workspace.onDidCloseTextDocument(async document => { + if (shouldIgnoreDocument(document, server)) { + return; + } + + await closeVirtualDocument(document, server, eventStream); + }); + + // We already track text document changes for virtual documents in our change forwarder. + return new CompositeDisposable( + onTextDocumentOpen, + onTextDocumentClose); +} + +function shouldIgnoreDocument(document: TextDocument, server: OmniSharpServer): boolean { + if (document.uri.scheme === 'file' || document.languageId !== 'csharp') { + // We're only interested in non-physical CSharp documents. + return true; + } + + if (!server.isRunning()) { + return true; + } + + return false; +} + +async function openVirtualDocument(document: TextDocument, server: OmniSharpServer, eventStream: EventStream) { + let path = document.uri.fsPath; + + if (!path) { + path = document.uri.path; + } + + let req = { FileName: path, changeType: FileChangeType.Create }; + try { + await serverUtils.filesChanged(server, [req]); + await serverUtils.updateBuffer(server, { Buffer: document.getText(), FileName: document.fileName }); + } + catch (error) { + logSynchronizationFailure(document.uri, error, server, eventStream); + } +} + +async function closeVirtualDocument(document: TextDocument, server: OmniSharpServer, eventStream: EventStream) { + let path = document.uri.fsPath; + + if (!path) { + path = document.uri.path; + } + + let req = { FileName: path, changeType: FileChangeType.Delete }; + try { + await serverUtils.filesChanged(server, [req]); + } + catch (error) { + logSynchronizationFailure(document.uri, error, server, eventStream); + } +} + +function logSynchronizationFailure(uri: Uri, error: any, server: OmniSharpServer, eventStream: EventStream) { + if (server.isRunning()) { + eventStream.post(new DocumentSynchronizationFailure(uri.path, error)); + } +} + +export default function trackVirtualDocuments(server: OmniSharpServer, eventStream: EventStream): IDisposable { + trackCurrentVirtualDocuments(server, eventStream); + let disposable = trackFutureVirtualDocuments(server, eventStream); + + return disposable; +} \ No newline at end of file diff --git a/src/main.ts b/src/main.ts index ddcc07b28f..21a1144c32 100644 --- a/src/main.ts +++ b/src/main.ts @@ -30,8 +30,11 @@ import { ProjectStatusBarObserver } from './observers/ProjectStatusBarObserver'; import CSharpExtensionExports from './CSharpExtensionExports'; import { vscodeNetworkSettingsProvider, NetworkSettingsProvider } from './NetworkSettings'; import { ErrorMessageObserver } from './observers/ErrorMessageObserver'; -import OptionStream from './observables/OptionStream'; import OptionProvider from './observers/OptionProvider'; +import DotNetTestChannelObserver from './observers/DotnetTestChannelObserver'; +import DotNetTestLoggerObserver from './observers/DotnetTestLoggerObserver'; +import { ShowOmniSharpConfigChangePrompt } from './observers/OptionChangeObserver'; +import createOptionStream from './observables/CreateOptionStream'; export async function activate(context: vscode.ExtensionContext): Promise { @@ -44,7 +47,7 @@ export async function activate(context: vscode.ExtensionContext): Promise { if (!exists) { - const downloader = new CSharpExtDownloader(networkSettingsProvider, eventStream, extension.packageJSON, platformInfo); + const downloader = new CSharpExtDownloader(networkSettingsProvider, eventStream, extension.packageJSON, platformInfo, extension.extensionPath); return downloader.installRuntimeDependencies(); } else { return true; diff --git a/src/observables/CreateOptionStream.ts b/src/observables/CreateOptionStream.ts new file mode 100644 index 0000000000..daec46bcde --- /dev/null +++ b/src/observables/CreateOptionStream.ts @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { Options } from "../omnisharp/options"; +import { vscode } from "../vscodeAdapter"; +import 'rxjs/add/operator/take'; +import 'rxjs/add/operator/publishBehavior'; +import { Observable } from "rxjs/Observable"; +import { Observer } from "rxjs/Observer"; + +export default function createOptionStream(vscode: vscode): Observable { + return Observable.create((observer: Observer) => { + let disposable = vscode.workspace.onDidChangeConfiguration(e => { + //if the omnisharp or csharp configuration are affected only then read the options + if (e.affectsConfiguration('omnisharp') || e.affectsConfiguration('csharp')) { + observer.next(Options.Read(vscode)); + } + }); + + return () => disposable.dispose(); + }).publishBehavior(Options.Read(vscode)).refCount(); +} \ No newline at end of file diff --git a/src/observables/OptionStream.ts b/src/observables/OptionStream.ts deleted file mode 100644 index 20291ca674..0000000000 --- a/src/observables/OptionStream.ts +++ /dev/null @@ -1,34 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ - -import { Options } from "../omnisharp/options"; -import { vscode } from "../vscodeAdapter"; -import 'rxjs/add/operator/take'; -import { BehaviorSubject } from 'rxjs/BehaviorSubject'; -import Disposable, { IDisposable } from "../Disposable"; -import { Subject } from "rxjs/Subject"; - -export default class OptionStream { - private optionStream: Subject; - private disposable: IDisposable; - - constructor(vscode: vscode) { - this.optionStream = new BehaviorSubject(Options.Read(vscode)); - this.disposable = vscode.workspace.onDidChangeConfiguration(e => { - //if the omnisharp or csharp configuration are affected only then read the options - if (e.affectsConfiguration('omnisharp') || e.affectsConfiguration('csharp')) { - this.optionStream.next(Options.Read(vscode)); - } - }); - } - - public dispose = () => { - this.disposable.dispose(); - } - - public subscribe(observer: (options: Options) => void): Disposable { - return new Disposable(this.optionStream.subscribe(observer)); - } -} \ No newline at end of file diff --git a/src/observers/CsharpLoggerObserver.ts b/src/observers/CsharpLoggerObserver.ts index 35fd4922dd..3cab0023ff 100644 --- a/src/observers/CsharpLoggerObserver.ts +++ b/src/observers/CsharpLoggerObserver.ts @@ -52,6 +52,9 @@ export class CsharpLoggerObserver extends BaseLoggerObserver { case Event.DownloadSizeObtained.name: this.handleDownloadSizeObtained(event); break; + case Event.DocumentSynchronizationFailure.name: + this.handleDocumentSynchronizationFailure(event); + break; case Event.LatestBuildDownloadStart.name: this.logger.appendLine("Getting latest OmniSharp version information"); break; @@ -112,4 +115,8 @@ export class CsharpLoggerObserver extends BaseLoggerObserver { this.logger.appendLine(`Installing package '${event.packageDescription}'`); this.logger.appendLine(); } + + private handleDocumentSynchronizationFailure(event: Event.DocumentSynchronizationFailure) { + this.logger.appendLine(`Failed to synchronize document '${event.documentPath}': ${event.errorMessage}`); + } } \ No newline at end of file diff --git a/src/observers/DotnetTestChannelObserver.ts b/src/observers/DotnetTestChannelObserver.ts new file mode 100644 index 0000000000..503597b99f --- /dev/null +++ b/src/observers/DotnetTestChannelObserver.ts @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { BaseChannelObserver } from "./BaseChannelObserver"; +import { BaseEvent, DotNetTestRunStart, DotNetTestRunFailure, DotNetTestsInClassRunStart, DotNetTestDebugStart, DotNetTestsInClassDebugStart } from "../omnisharp/loggingEvents"; + +export default class DotnetTestChannelObserver extends BaseChannelObserver { + public post = (event: BaseEvent) => { + switch (event.constructor.name) { + case DotNetTestRunStart.name: + case DotNetTestRunFailure.name: + case DotNetTestsInClassRunStart.name: + case DotNetTestDebugStart.name: + case DotNetTestsInClassDebugStart.name: + this.showChannel(); + break; + } + } +} \ No newline at end of file diff --git a/src/observers/DotnetTestLoggerObserver.ts b/src/observers/DotnetTestLoggerObserver.ts new file mode 100644 index 0000000000..fc1d3ae28d --- /dev/null +++ b/src/observers/DotnetTestLoggerObserver.ts @@ -0,0 +1,129 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { BaseEvent, DotNetTestRunStart, DotNetTestMessage, ReportDotNetTestResults, DotNetTestDebugStart, DotNetTestDebugWarning, DotNetTestDebugProcessStart, DotNetTestDebugComplete, DotNetTestsInClassDebugStart, DotNetTestsInClassRunStart } from "../omnisharp/loggingEvents"; +import { BaseLoggerObserver } from "./BaseLoggerObserver"; +import * as protocol from '../omnisharp/protocol'; + +export default class DotNetTestLoggerObserver extends BaseLoggerObserver { + + public post = (event: BaseEvent) => { + switch (event.constructor.name) { + case DotNetTestRunStart.name: + this.handleDotnetTestRunStart(event); + break; + case DotNetTestMessage.name: + this.logger.appendLine((event).message); + break; + case ReportDotNetTestResults.name: + this.handleReportDotnetTestResults(event); + break; + case DotNetTestDebugStart.name: + this.handleDotnetTestDebugStart(event); + break; + case DotNetTestDebugWarning.name: + this.handleDotNetTestDebugWarning(event); + break; + case DotNetTestDebugProcessStart.name: + this.handleDotNetTestDebugProcessStart(event); + break; + case DotNetTestDebugComplete.name: + this.logger.appendLine("Debugging complete.\n"); + break; + case DotNetTestsInClassDebugStart.name: + this.handleDotnetTestsInClassDebugStart(event); + break; + case DotNetTestsInClassRunStart.name: + this.handleDotnetTestsInClassRunStart(event); + break; + } + } + + private handleDotNetTestDebugWarning(event: DotNetTestDebugWarning) { + this.logger.appendLine(`Warning: ${event.message}`); + } + + private handleDotnetTestDebugStart(event: DotNetTestDebugStart) { + this.logger.appendLine(`----- Debugging test method ${event.testMethod} -----`); + this.logger.appendLine(''); + } + + private handleDotnetTestRunStart(event: DotNetTestRunStart): any { + this.logger.appendLine(`----- Running test method "${event.testMethod}" -----`); + this.logger.appendLine(''); + } + + private handleDotnetTestsInClassDebugStart(event: DotNetTestsInClassDebugStart) { + this.logger.appendLine(`----- Debugging tests in class ${event.className} -----`); + this.logger.appendLine(''); + } + + private handleDotnetTestsInClassRunStart(event: DotNetTestsInClassRunStart): any { + this.logger.appendLine(`----- Running tests in class "${event.className}" -----`); + this.logger.appendLine(''); + } + + private handleDotNetTestDebugProcessStart(event: DotNetTestDebugProcessStart) { + this.logger.appendLine(`Started debugging process #${event.targetProcessId}.`); + } + + private handleReportDotnetTestResults(event: ReportDotNetTestResults) { + this.logger.appendLine("----- Test Execution Summary -----"); + this.logger.appendLine(''); + const results = event.results; + const totalTests = results.length; + + let totalPassed = 0, totalFailed = 0, totalSkipped = 0; + for (let result of results) { + this.logTestResult(result); + switch (result.Outcome) { + case protocol.V2.TestOutcomes.Failed: + totalFailed += 1; + break; + case protocol.V2.TestOutcomes.Passed: + totalPassed += 1; + break; + case protocol.V2.TestOutcomes.Skipped: + totalSkipped += 1; + break; + } + } + + this.logger.appendLine(`Total tests: ${totalTests}. Passed: ${totalPassed}. Failed: ${totalFailed}. Skipped: ${totalSkipped}`); + this.logger.appendLine(''); + } + + private logTestResult(result: protocol.V2.DotNetTestResult) { + this.logger.appendLine(`${result.MethodName}:`); + this.logger.increaseIndent(); + this.logger.appendLine(`Outcome: ${processOutcome(result.Outcome)}`); + if (result.ErrorMessage) { + this.logger.appendLine(`Error Message:`); + this.logger.appendLine(result.ErrorMessage); + } + + if (result.ErrorStackTrace) { + this.logger.appendLine(`Stack Trace:`); + this.logger.appendLine(result.ErrorStackTrace); + } + + if (result.StandardOutput && result.StandardOutput.length > 0) { + this.logger.appendLine("Standard Output Messages:"); + result.StandardOutput.forEach(message => this.logger.appendLine(message)); + } + + if (result.StandardError && result.StandardError.length > 0) { + this.logger.appendLine("Standard Error Messages:"); + result.StandardError.forEach(message => this.logger.appendLine(message)); + } + + this.logger.appendLine(); + this.logger.decreaseIndent(); + } +} + +export function processOutcome(input: string) { + return input.charAt(0).toUpperCase() + input.slice(1); +} diff --git a/src/observers/ErrorMessageObserver.ts b/src/observers/ErrorMessageObserver.ts index bc57eabc9e..ac989386c7 100644 --- a/src/observers/ErrorMessageObserver.ts +++ b/src/observers/ErrorMessageObserver.ts @@ -3,10 +3,10 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ - -import { BaseEvent, ZipError } from "../omnisharp/loggingEvents"; +import { BaseEvent, ZipError, DotNetTestRunFailure, DotNetTestDebugStartFailure } from "../omnisharp/loggingEvents"; import { vscode } from "../vscodeAdapter"; - +import showErrorMessage from "./utils/ShowErrorMessage"; + export class ErrorMessageObserver { constructor(private vscode: vscode) { @@ -17,19 +17,24 @@ export class ErrorMessageObserver { case ZipError.name: this.handleZipError(event); break; + case DotNetTestRunFailure.name: + this.handleDotnetTestRunFailure(event); + break; + case DotNetTestDebugStartFailure.name: + this.handleDotNetTestDebugStartFailure(event); + break; } } - private async handleZipError(event: ZipError) { - await showErrorMessage(this.vscode, event.message); + private handleZipError(event: ZipError) { + showErrorMessage(this.vscode, event.message); } -} -async function showErrorMessage(vscode: vscode, message: string, ...items: string[]) { - try { - await vscode.window.showErrorMessage(message, ...items); + private handleDotnetTestRunFailure(event: DotNetTestRunFailure) { + showErrorMessage(this.vscode,`Failed to run test because ${event.message}.`); } - catch (err) { - console.log(err); + + private handleDotNetTestDebugStartFailure(event: DotNetTestDebugStartFailure) { + showErrorMessage(this.vscode, `Failed to start debugger: ${event.message}`); } } diff --git a/src/observers/InformationMessageObserver.ts b/src/observers/InformationMessageObserver.ts index 6fbf4093c7..64afa8823d 100644 --- a/src/observers/InformationMessageObserver.ts +++ b/src/observers/InformationMessageObserver.ts @@ -5,6 +5,7 @@ import * as ObservableEvent from "../omnisharp/loggingEvents"; import { vscode } from '../vscodeAdapter'; +import showInformationMessage from "./utils/ShowInformationMessage"; export class InformationMessageObserver { constructor(private vscode: vscode) { @@ -19,13 +20,11 @@ export class InformationMessageObserver { } private async handleOmnisharpServerUnresolvedDependencies(event: ObservableEvent.OmnisharpServerUnresolvedDependencies) { + //to do: determine if we need the unresolved dependencies message let csharpConfig = this.vscode.workspace.getConfiguration('csharp'); if (!csharpConfig.get('suppressDotnetRestoreNotification')) { - let info = `There are unresolved dependencies from '${this.vscode.workspace.asRelativePath(event.unresolvedDependencies.FileName)}'. Please execute the restore command to continue.`; - let value = await this.vscode.window.showInformationMessage(info, 'Restore'); - if (value) { - this.vscode.commands.executeCommand('dotnet.restore', event.unresolvedDependencies.FileName); - } + let message = `There are unresolved dependencies'. Please execute the restore command to continue.`; + return showInformationMessage(this.vscode, message, { title: "Restore", command: "dotnet.restore.all" }); } } } diff --git a/src/observers/OmnisharpChannelObserver.ts b/src/observers/OmnisharpChannelObserver.ts index 6b41300e77..7a5891e3ed 100644 --- a/src/observers/OmnisharpChannelObserver.ts +++ b/src/observers/OmnisharpChannelObserver.ts @@ -4,18 +4,20 @@ *--------------------------------------------------------------------------------------------*/ import { BaseChannelObserver } from "./BaseChannelObserver"; -import { BaseEvent, CommandShowOutput, OmnisharpFailure } from '../omnisharp/loggingEvents'; +import { BaseEvent, ShowOmniSharpChannel, OmnisharpFailure, OmnisharpRestart, OmnisharpServerOnStdErr } from '../omnisharp/loggingEvents'; export class OmnisharpChannelObserver extends BaseChannelObserver { public post = (event: BaseEvent) => { switch (event.constructor.name) { - case CommandShowOutput.name: - this.showChannel(); - break; + case ShowOmniSharpChannel.name: case OmnisharpFailure.name: + case OmnisharpServerOnStdErr.name: this.showChannel(); break; + case OmnisharpRestart.name: + this.clearChannel(); + break; } } } \ No newline at end of file diff --git a/src/observers/OmnisharpLoggerObserver.ts b/src/observers/OmnisharpLoggerObserver.ts index 5a53f1268b..9d7ebc4030 100644 --- a/src/observers/OmnisharpLoggerObserver.ts +++ b/src/observers/OmnisharpLoggerObserver.ts @@ -54,12 +54,14 @@ export class OmnisharpLoggerObserver extends BaseLoggerObserver { } private handleOmnisharpLaunch(event: OmnisharpLaunch) { + this.logger.append(`OmniSharp server started`); if (event.monoVersion) { - this.logger.appendLine(`OmniSharp server started with Mono ${event.monoVersion}`); - } - else { - this.logger.appendLine(`OmniSharp server started`); + this.logger.append(` with Mono ${event.monoVersion}`); + if (event.monoPath !== undefined) { + this.logger.append(` (${event.monoPath})`); + } } + this.logger.appendLine('.'); this.logger.increaseIndent(); this.logger.appendLine(`Path: ${event.command}`); diff --git a/src/observers/OmnisharpStatusBarObserver.ts b/src/observers/OmnisharpStatusBarObserver.ts index e25fe68129..a64f8d241d 100644 --- a/src/observers/OmnisharpStatusBarObserver.ts +++ b/src/observers/OmnisharpStatusBarObserver.ts @@ -3,26 +3,36 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -import { OmnisharpServerOnServerError, BaseEvent, OmnisharpOnBeforeServerInstall, OmnisharpOnBeforeServerStart, OmnisharpServerOnStop, OmnisharpServerOnStart, DownloadStart, InstallationStart, DownloadProgress } from "../omnisharp/loggingEvents"; +import { OmnisharpServerOnServerError, BaseEvent, OmnisharpOnBeforeServerInstall, OmnisharpOnBeforeServerStart, OmnisharpServerOnStop, OmnisharpServerOnStart, DownloadStart, InstallationStart, DownloadProgress, OmnisharpServerOnStdErr } from "../omnisharp/loggingEvents"; import { BaseStatusBarItemObserver } from './BaseStatusBarItemObserver'; +export enum StatusBarColors{ + Red = 'rgb(218,0,0)', + Green = 'rgb(0,218,0)', + Yellow = 'rgb(218,218,0)' +} + export class OmnisharpStatusBarObserver extends BaseStatusBarItemObserver { public post = (event: BaseEvent) => { switch (event.constructor.name) { case OmnisharpServerOnServerError.name: - this.SetAndShowStatusBar('$(flame)', 'o.showOutput', 'rgb(218,0,0)', 'Error starting OmniSharp'); + this.SetAndShowStatusBar('$(flame)', 'o.showOutput', StatusBarColors.Red, 'Error starting OmniSharp'); + break; + case OmnisharpServerOnStdErr.name: + let msg = (event).message; + this.SetAndShowStatusBar('$(flame)', 'o.showOutput', StatusBarColors.Red, `OmniSharp process errored:${msg}`); break; case OmnisharpOnBeforeServerInstall.name: this.SetAndShowStatusBar('$(flame) Installing OmniSharp...', 'o.showOutput'); break; case OmnisharpOnBeforeServerStart.name: - this.SetAndShowStatusBar('$(flame)', 'o.showOutput', 'rgb(218,218,0)', 'Starting OmniSharp server'); + this.SetAndShowStatusBar('$(flame)', 'o.showOutput', StatusBarColors.Yellow, 'Starting OmniSharp server'); break; case OmnisharpServerOnStop.name: this.ResetAndHideStatusBar(); break; case OmnisharpServerOnStart.name: - this.SetAndShowStatusBar('$(flame)', 'o.showOutput', 'rgb(0, 218, 0)', 'OmniSharp server is running'); + this.SetAndShowStatusBar('$(flame)', 'o.showOutput', StatusBarColors.Green, 'OmniSharp server is running'); break; case DownloadStart.name: this.SetAndShowStatusBar("$(cloud-download) Downloading packages", '', '', `Downloading package '${(event).packageDescription}...' `); diff --git a/src/observers/OptionChangeObserver.ts b/src/observers/OptionChangeObserver.ts new file mode 100644 index 0000000000..717e637c7f --- /dev/null +++ b/src/observers/OptionChangeObserver.ts @@ -0,0 +1,37 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { vscode } from "../vscodeAdapter"; +import { Options } from "../omnisharp/options"; +import ShowInformationMessage from "./utils/ShowInformationMessage"; +import { Observable } from "rxjs/Observable"; +import Disposable from "../Disposable"; +import 'rxjs/add/operator/filter'; +import 'rxjs/add/operator/distinctUntilChanged'; + +function ConfigChangeObservable(optionObservable: Observable): Observable { + let options: Options; + return optionObservable. filter(newOptions => { + let changed = (options && hasChanged(options, newOptions)); + options = newOptions; + return changed; + }); +} + +export function ShowOmniSharpConfigChangePrompt(optionObservable: Observable, vscode: vscode): Disposable { + let subscription = ConfigChangeObservable(optionObservable) + .subscribe(_ => { + let message = "OmniSharp configuration has changed. Would you like to relaunch the OmniSharp server with your changes?"; + ShowInformationMessage(vscode, message, { title: "Restart OmniSharp", command: 'o.restart' }); + }); + + return new Disposable(subscription); +} + +function hasChanged(oldOptions: Options, newOptions: Options): boolean { + return (oldOptions.path != newOptions.path || + oldOptions.useGlobalMono != newOptions.useGlobalMono || + oldOptions.waitForDebugger != newOptions.waitForDebugger); +} \ No newline at end of file diff --git a/src/observers/OptionProvider.ts b/src/observers/OptionProvider.ts index 3a578b6cde..0d242162f0 100644 --- a/src/observers/OptionProvider.ts +++ b/src/observers/OptionProvider.ts @@ -4,19 +4,26 @@ *--------------------------------------------------------------------------------------------*/ import { Options } from "../omnisharp/options"; -import OptionStream from "../observables/OptionStream"; +import { Subscription } from "rxjs/Subscription"; +import { Observable } from "rxjs/Observable"; export default class OptionProvider { private options: Options; + private subscription: Subscription; - constructor(optionStream: OptionStream) { - optionStream.subscribe(options => this.options = options); + constructor(optionObservable: Observable) { + this.subscription = optionObservable.subscribe(options => this.options = options); } public GetLatestOptions(): Options { if (!this.options) { throw new Error("Error reading OmniSharp options"); } + return this.options; } + + public dispose = () => { + this.subscription.unsubscribe(); + } } \ No newline at end of file diff --git a/src/observers/WarningMessageObserver.ts b/src/observers/WarningMessageObserver.ts index ede2a543d6..2e6ba2ac69 100644 --- a/src/observers/WarningMessageObserver.ts +++ b/src/observers/WarningMessageObserver.ts @@ -3,15 +3,12 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -import { MessageItem, vscode } from '../vscodeAdapter'; +import { vscode } from '../vscodeAdapter'; import { BaseEvent, OmnisharpServerOnError, OmnisharpServerMsBuildProjectDiagnostics } from "../omnisharp/loggingEvents"; import { Scheduler } from 'rxjs/Scheduler'; import { Subject } from 'rxjs/Subject'; import 'rxjs/add/operator/debounceTime'; - -export interface MessageItemWithCommand extends MessageItem { - command: string; -} +import showWarningMessage from './utils/ShowWarningMessage'; export class WarningMessageObserver { private warningMessageDebouncer: Subject; @@ -40,16 +37,4 @@ export class WarningMessageObserver { this.warningMessageDebouncer.next(event); } } -} - -async function showWarningMessage(vscode: vscode, message: string, ...items: MessageItemWithCommand[]) { - try { - let value = await vscode.window.showWarningMessage(message, ...items); - if (value && value.command) { - await vscode.commands.executeCommand(value.command); - } - } - catch (err) { - console.log(err); - } } \ No newline at end of file diff --git a/src/observers/utils/MessageItemWithCommand.ts b/src/observers/utils/MessageItemWithCommand.ts new file mode 100644 index 0000000000..81fec5f346 --- /dev/null +++ b/src/observers/utils/MessageItemWithCommand.ts @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { MessageItem } from "../../vscodeAdapter"; + +export default interface MessageItemWithCommand extends MessageItem { + command: string; +} diff --git a/src/observers/utils/ShowErrorMessage.ts b/src/observers/utils/ShowErrorMessage.ts new file mode 100644 index 0000000000..f5960d2b9e --- /dev/null +++ b/src/observers/utils/ShowErrorMessage.ts @@ -0,0 +1,15 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { vscode } from "../../vscodeAdapter"; + +export default async function showErrorMessage(vscode: vscode, message: string, ...items: string[]) { + try { + await vscode.window.showErrorMessage(message, ...items); + } + catch (err) { + console.log(err); + } +} diff --git a/src/observers/utils/ShowInformationMessage.ts b/src/observers/utils/ShowInformationMessage.ts new file mode 100644 index 0000000000..02537f3e70 --- /dev/null +++ b/src/observers/utils/ShowInformationMessage.ts @@ -0,0 +1,19 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { vscode } from "../../vscodeAdapter"; +import MessageItemWithCommand from "./MessageItemWithCommand"; + +export default async function showInformationMessage(vscode: vscode, message: string, ...items: MessageItemWithCommand[]) { + try { + let value = await vscode.window.showInformationMessage(message, ...items); + if (value && value.command) { + vscode.commands.executeCommand(value.command); + } + } + catch (err) { + console.log(err); + } +} \ No newline at end of file diff --git a/src/observers/utils/ShowWarningMessage.ts b/src/observers/utils/ShowWarningMessage.ts new file mode 100644 index 0000000000..563caff49c --- /dev/null +++ b/src/observers/utils/ShowWarningMessage.ts @@ -0,0 +1,19 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { vscode } from "../../vscodeAdapter"; +import MessageItemWithCommand from "./MessageItemWithCommand"; + +export default async function showWarningMessage(vscode: vscode, message: string, ...items: MessageItemWithCommand[]) { + try { + let value = await vscode.window.showWarningMessage(message, ...items); + if (value && value.command) { + await vscode.commands.executeCommand(value.command); + } + } + catch (err) { + console.log(err); + } +} \ No newline at end of file diff --git a/src/omnisharp/OmnisharpDownloader.ts b/src/omnisharp/OmnisharpDownloader.ts index 14dbd5871c..c3b3ddf610 100644 --- a/src/omnisharp/OmnisharpDownloader.ts +++ b/src/omnisharp/OmnisharpDownloader.ts @@ -10,7 +10,6 @@ import { EventStream } from '../EventStream'; import { NetworkSettingsProvider } from '../NetworkSettings'; import { DownloadAndInstallPackages } from '../packageManager/PackageManager'; import { DownloadFile } from '../packageManager/FileDownloader'; -import { ResolveFilePaths } from '../packageManager/PackageFilePathResolver'; export class OmnisharpDownloader { @@ -18,7 +17,8 @@ export class OmnisharpDownloader { private networkSettingsProvider: NetworkSettingsProvider, private eventStream: EventStream, private packageJSON: any, - private platformInfo: PlatformInformation) { + private platformInfo: PlatformInformation, + private extensionPath: string) { } public async DownloadAndInstallOmnisharp(version: string, serverUrl: string, installPath: string) { @@ -29,9 +29,8 @@ export class OmnisharpDownloader { this.eventStream.post(new LogPlatformInfo(this.platformInfo)); installationStage = 'getPackageInfo'; let packages = GetPackagesFromVersion(version, this.packageJSON.runtimeDependencies, serverUrl, installPath); - packages.forEach(pkg => ResolveFilePaths(pkg)); installationStage = 'downloadAndInstallPackages'; - await DownloadAndInstallPackages(packages, this.networkSettingsProvider, this.platformInfo, this.eventStream); + await DownloadAndInstallPackages(packages, this.networkSettingsProvider, this.platformInfo, this.eventStream, this.extensionPath); this.eventStream.post(new InstallationSuccess()); } catch (error) { diff --git a/src/omnisharp/extension.ts b/src/omnisharp/extension.ts index 9d2ef8b01e..38d7a476a1 100644 --- a/src/omnisharp/extension.ts +++ b/src/omnisharp/extension.ts @@ -34,17 +34,18 @@ import { NetworkSettingsProvider } from '../NetworkSettings'; import CompositeDisposable from '../CompositeDisposable'; import Disposable from '../Disposable'; import OptionProvider from '../observers/OptionProvider'; +import trackVirtualDocuments from '../features/virtualDocumentTracker'; +import { StructureProvider } from '../features/structureProvider'; export let omnisharp: OmniSharpServer; -export async function activate(context: vscode.ExtensionContext, packageJSON: any, platformInfo: PlatformInformation, provider: NetworkSettingsProvider, eventStream: EventStream, optionProvider: OptionProvider) { +export async function activate(context: vscode.ExtensionContext, packageJSON: any, platformInfo: PlatformInformation, provider: NetworkSettingsProvider, eventStream: EventStream, optionProvider: OptionProvider, extensionPath: string) { const documentSelector: vscode.DocumentSelector = { language: 'csharp', - scheme: 'file' // only files from disk }; const options = optionProvider.GetLatestOptions(); - const server = new OmniSharpServer(vscode, provider, packageJSON, platformInfo, eventStream, optionProvider); + const server = new OmniSharpServer(vscode, provider, packageJSON, platformInfo, eventStream, optionProvider, extensionPath); omnisharp = server; const advisor = new Advisor(server); // create before server is started const disposables = new CompositeDisposable(); @@ -80,6 +81,8 @@ export async function activate(context: vscode.ExtensionContext, packageJSON: an localDisposables.add(vscode.languages.registerCodeActionsProvider(documentSelector, codeActionProvider)); localDisposables.add(reportDiagnostics(server, advisor)); localDisposables.add(forwardChanges(server)); + localDisposables.add(trackVirtualDocuments(server, eventStream)); + localDisposables.add(vscode.languages.registerFoldingRangeProvider(documentSelector, new StructureProvider(server))); })); disposables.add(server.onServerStop(() => { diff --git a/src/omnisharp/launcher.ts b/src/omnisharp/launcher.ts index 688a763125..21f5f393c8 100644 --- a/src/omnisharp/launcher.ts +++ b/src/omnisharp/launcher.ts @@ -42,7 +42,7 @@ export function findLaunchTargets(options: Options): Thenable { } return vscode.workspace.findFiles( - /*include*/ '{**/*.sln,**/*.csproj,**/project.json,**/*.csx,**/*.cake}', + /*include*/ '{**/*.sln,**/*.csproj,**/project.json,**/*.csx,**/*.cake,**/*.cs}', /*exclude*/ '{**/node_modules/**,**/.git/**,**/bower_components/**}', /*maxResults*/ options.maxProjectResults) .then(resourcesToLaunchTargets); @@ -90,7 +90,8 @@ function resourcesToLaunchTargets(resources: vscode.Uri[]): LaunchTarget[] { hasProjectJson = false, hasProjectJsonAtRoot = false, hasCSX = false, - hasCake = false; + hasCake = false, + hasCs = false; hasCsProjFiles = resources.some(isCSharpProject); @@ -101,7 +102,6 @@ function resourcesToLaunchTargets(resources: vscode.Uri[]): LaunchTarget[] { // Add .sln files if there are .csproj files if (hasCsProjFiles && isSolution(resource)) { hasSlnFile = true; - targets.push({ label: path.basename(resource.fsPath), description: vscode.workspace.asRelativePath(path.dirname(resource.fsPath)), @@ -135,6 +135,11 @@ function resourcesToLaunchTargets(resources: vscode.Uri[]): LaunchTarget[] { if (!hasCake && isCake(resource)) { hasCake = true; } + + //Discover if there is any cs file + if (!hasCs && isCs(resource)) { + hasCs = true; + } }); // Add the root folder under the following circumstances: @@ -171,6 +176,16 @@ function resourcesToLaunchTargets(resources: vscode.Uri[]): LaunchTarget[] { kind: LaunchTargetKind.Cake }); } + + if (hasCs && !hasSlnFile && !hasCsProjFiles && !hasProjectJson && !hasProjectJsonAtRoot) { + targets.push({ + label: path.basename(folderPath), + description: '', + target: folderPath, + directory: folderPath, + kind: LaunchTargetKind.Folder + }); + } }); return targets.sort((a, b) => a.directory.localeCompare(b.directory)); @@ -196,10 +211,15 @@ function isCake(resource: vscode.Uri): boolean { return /\.cake$/i.test(resource.fsPath); } +function isCs(resource: vscode.Uri): boolean { + return /\.cs$/i.test(resource.fsPath); +} + export interface LaunchResult { process: ChildProcess; command: string; monoVersion?: string; + monoPath?: string; } export async function launchOmniSharp(cwd: string, args: string[], launchInfo: LaunchInfo, platformInfo: PlatformInformation, options: Options): Promise { @@ -234,7 +254,13 @@ async function launch(cwd: string, args: string[], launchInfo: LaunchInfo, platf return launchWindows(launchInfo.LaunchPath, cwd, args); } - let monoVersion = await getMonoVersion(); + let childEnv = { ...process.env }; + if (options.useGlobalMono !== "never" && options.monoPath !== undefined) { + childEnv['PATH'] = path.join(options.monoPath, 'bin') + path.delimiter + childEnv['PATH']; + childEnv['MONO_GAC_PREFIX'] = options.monoPath; + } + + let monoVersion = await getMonoVersion(childEnv); let isValidMonoAvailable = await satisfies(monoVersion, '>=5.8.1'); // If the user specifically said that they wanted to launch on Mono, respect their wishes. @@ -245,12 +271,12 @@ async function launch(cwd: string, args: string[], launchInfo: LaunchInfo, platf const launchPath = launchInfo.MonoLaunchPath || launchInfo.LaunchPath; - return launchNixMono(launchPath, monoVersion, cwd, args); + return launchNixMono(launchPath, monoVersion, options.monoPath, cwd, args, childEnv, options.waitForDebugger); } // If we can launch on the global Mono, do so; otherwise, launch directly; if (options.useGlobalMono === "auto" && isValidMonoAvailable && launchInfo.MonoLaunchPath) { - return launchNixMono(launchInfo.MonoLaunchPath, monoVersion, cwd, args); + return launchNixMono(launchInfo.MonoLaunchPath, monoVersion, options.monoPath, cwd, args, childEnv, options.waitForDebugger); } else { return launchNix(launchInfo.LaunchPath, cwd, args); @@ -307,30 +333,39 @@ function launchNix(launchPath: string, cwd: string, args: string[]): LaunchResul }; } -function launchNixMono(launchPath: string, monoVersion: string, cwd: string, args: string[]): LaunchResult { +function launchNixMono(launchPath: string, monoVersion: string, monoPath: string, cwd: string, args: string[], environment: NodeJS.ProcessEnv, useDebugger:boolean): LaunchResult { let argsCopy = args.slice(0); // create copy of details args argsCopy.unshift(launchPath); argsCopy.unshift("--assembly-loader=strict"); + if (useDebugger) + { + argsCopy.unshift("--assembly-loader=strict"); + argsCopy.unshift("--debug"); + argsCopy.unshift("--debugger-agent=transport=dt_socket,server=y,address=127.0.0.1:55555"); + } + let process = spawn('mono', argsCopy, { detached: false, - cwd: cwd + cwd: cwd, + env: environment }); return { process, command: launchPath, monoVersion, + monoPath, }; } -async function getMonoVersion(): Promise { +async function getMonoVersion(environment: NodeJS.ProcessEnv): Promise { const versionRegexp = /(\d+\.\d+\.\d+)/; return new Promise((resolve, reject) => { let childprocess: ChildProcess; try { - childprocess = spawn('mono', ['--version']); + childprocess = spawn('mono', ['--version'], { env: environment }); } catch (e) { return resolve(undefined); diff --git a/src/omnisharp/loggingEvents.ts b/src/omnisharp/loggingEvents.ts index 02ba8091fc..874bf319c0 100644 --- a/src/omnisharp/loggingEvents.ts +++ b/src/omnisharp/loggingEvents.ts @@ -27,7 +27,7 @@ export class OmnisharpInitialisation implements BaseEvent { } export class OmnisharpLaunch implements BaseEvent { - constructor(public monoVersion: string, public command: string, public pid: number) { } + constructor(public monoVersion: string, public monoPath: string, public command: string, public pid: number) { } } export class PackageInstallation implements BaseEvent { @@ -122,6 +122,35 @@ export class ZipError implements BaseEvent { constructor(public message: string) { } } +export class ReportDotNetTestResults implements BaseEvent { + constructor(public results: protocol.V2.DotNetTestResult[]) { } +} + +export class DotNetTestRunStart implements BaseEvent { + constructor(public testMethod: string) { } +} + +export class DotNetTestDebugStart implements BaseEvent { + constructor(public testMethod: string) { } +} + +export class DotNetTestDebugProcessStart implements BaseEvent { + constructor(public targetProcessId: number) { } +} + + +export class DotNetTestsInClassRunStart implements BaseEvent { + constructor(public className: string) { } +} + +export class DotNetTestsInClassDebugStart implements BaseEvent { + constructor(public className: string) { } +} + +export class DocumentSynchronizationFailure implements BaseEvent { + constructor(public documentPath: string, public errorMessage: string) { } +} + export class DebuggerPrerequisiteFailure extends EventWithMessage { } export class DebuggerPrerequisiteWarning extends EventWithMessage { } export class CommandDotNetRestoreProgress extends EventWithMessage { } @@ -132,10 +161,14 @@ export class DownloadFailure extends EventWithMessage { } export class OmnisharpServerOnStdErr extends EventWithMessage { } export class OmnisharpServerMessage extends EventWithMessage { } export class OmnisharpServerVerboseMessage extends EventWithMessage { } +export class DotNetTestMessage extends EventWithMessage { } +export class DotNetTestRunFailure extends EventWithMessage { } +export class DotNetTestDebugWarning extends EventWithMessage { } +export class DotNetTestDebugStartFailure extends EventWithMessage { } export class ProjectModified implements BaseEvent { } export class ActivationFailure implements BaseEvent { } -export class CommandShowOutput implements BaseEvent { } +export class ShowOmniSharpChannel implements BaseEvent { } export class DebuggerNotInstalledFailure implements BaseEvent { } export class CommandDotNetRestoreStart implements BaseEvent { } export class InstallationSuccess implements BaseEvent { } @@ -146,4 +179,6 @@ export class OmnisharpOnBeforeServerInstall implements BaseEvent { } export class ActiveTextEditorChanged implements BaseEvent { } export class OmnisharpServerOnStop implements BaseEvent { } export class OmnisharpServerOnStart implements BaseEvent { } -export class LatestBuildDownloadStart implements BaseEvent { } \ No newline at end of file +export class LatestBuildDownloadStart implements BaseEvent { } +export class OmnisharpRestart implements BaseEvent { } +export class DotNetTestDebugComplete implements BaseEvent { } \ No newline at end of file diff --git a/src/omnisharp/options.ts b/src/omnisharp/options.ts index 845084f4d8..f38816d56a 100644 --- a/src/omnisharp/options.ts +++ b/src/omnisharp/options.ts @@ -19,7 +19,10 @@ export class Options { public showReferencesCodeLens: boolean, public showTestsCodeLens: boolean, public disableCodeActions: boolean, - public disableMSBuildDiagnosticWarning: boolean) { } + public disableMSBuildDiagnosticWarning: boolean, + public defaultLaunchSolution?: string, + public monoPath?: string) { } + public static Read(vscode: vscode): Options { // Extra effort is taken below to ensure that legacy versions of options @@ -34,6 +37,7 @@ export class Options { const path = Options.readPathOption(csharpConfig, omnisharpConfig); const useGlobalMono = Options.readUseGlobalMonoOption(omnisharpConfig, csharpConfig); + const monoPath = omnisharpConfig.get('monoPath', undefined) || undefined; const waitForDebugger = omnisharpConfig.get('waitForDebugger', false); @@ -47,6 +51,7 @@ export class Options { const projectLoadTimeout = omnisharpConfig.get('projectLoadTimeout', 60); const maxProjectResults = omnisharpConfig.get('maxProjectResults', 250); + const defaultLaunchSolution = omnisharpConfig.get('defaultLaunchSolution', undefined); const useEditorFormattingSettings = omnisharpConfig.get('useEditorFormattingSettings', true); const useFormatting = csharpConfig.get('format.enable', true); @@ -62,16 +67,19 @@ export class Options { path, useGlobalMono, waitForDebugger, - loggingLevel, - autoStart, - projectLoadTimeout, - maxProjectResults, - useEditorFormattingSettings, + loggingLevel, + autoStart, + projectLoadTimeout, + maxProjectResults, + useEditorFormattingSettings, useFormatting, showReferencesCodeLens, showTestsCodeLens, disableCodeActions, - disableMSBuildDiagnosticWarning); + disableMSBuildDiagnosticWarning, + defaultLaunchSolution, + monoPath, + ); } private static readPathOption(csharpConfig: WorkspaceConfiguration, omnisharpConfig: WorkspaceConfiguration): string | null { diff --git a/src/omnisharp/protocol.ts b/src/omnisharp/protocol.ts index 4cd44950e5..d8f76da3f4 100644 --- a/src/omnisharp/protocol.ts +++ b/src/omnisharp/protocol.ts @@ -11,7 +11,6 @@ export module Requests { export const CodeCheck = '/codecheck'; export const CodeFormat = '/codeformat'; export const ChangeBuffer = '/changebuffer'; - export const CurrentFileMembersAsTree = '/currentfilemembersastree'; export const FilesChanged = '/filesChanged'; export const FindSymbols = '/findsymbols'; export const FindUsages = '/findusages'; @@ -57,8 +56,11 @@ export namespace WireProtocol { } } -export interface Request { +export interface FileBasedRequest { FileName: string; +} + +export interface Request extends FileBasedRequest { Line?: number; Column?: number; Buffer?: string; @@ -252,17 +254,6 @@ export interface SyntaxFeature { Data: string; } -export interface Node { - ChildNodes: Node[]; - Location: QuickFix; - Kind: string; - Features: SyntaxFeature[]; -} - -export interface CurrentFileMembersAsTreeResponse { - TopLevelTypeDefinitions: Node[]; -} - export interface AutoCompleteRequest extends Request { WordToComplete: string; WantDocumentationForEveryCompletionResult?: boolean; @@ -284,6 +275,7 @@ export interface AutoCompleteResponse { Snippet: string; Kind: string; IsSuggestionMode: boolean; + Preselect: boolean; } export interface ProjectInformationResponse { @@ -374,8 +366,7 @@ export interface ModifiedFileResponse { ModificationType: FileModificationType; } -export enum FileModificationType -{ +export enum FileModificationType { Modified, Opened, Renamed, @@ -465,6 +456,8 @@ export namespace V2 { export const DebugTestsInClassGetStartInfo = '/v2/debugtestsinclass/getstartinfo'; export const DebugTestLaunch = '/v2/debugtest/launch'; export const DebugTestStop = '/v2/debugtest/stop'; + export const BlockStructure = '/v2/blockstructure'; + export const CodeStructure = '/v2/codestructure'; } export interface Point { @@ -609,6 +602,8 @@ export namespace V2 { Outcome: string; ErrorMessage: string; ErrorStackTrace: string; + StandardOutput: string[]; + StandardError: string[]; } export interface RunTestResponse { @@ -621,6 +616,101 @@ export namespace V2 { MessageLevel: string; Message: string; } + + export interface BlockStructureRequest + { + FileName: string; + } + + export interface BlockStructureResponse + { + Spans: CodeFoldingBlock[]; + } + + export interface CodeFoldingBlock { + Range: Range; + Kind: string; + } + + export module SymbolKinds { + // types + export const Class = 'class'; + export const Delegate = 'delegate'; + export const Enum = 'enum'; + export const Interface = 'interface'; + export const Struct = 'struct'; + + // members + export const Constant = 'constant'; + export const Constructor = 'constructor'; + export const Destructor = 'destructor'; + export const EnumMember = 'enummember'; + export const Event = 'event'; + export const Field = 'field'; + export const Indexer = 'indexer'; + export const Method = 'method'; + export const Operator = 'operator'; + export const Property = 'property'; + + // other + export const Namespace = 'namespace'; + export const Unknown = 'unknown'; + } + + export module SymbolAccessibilities { + export const Internal = 'internal'; + export const Private = 'private'; + export const PrivateProtected = 'private protected'; + export const Protected = 'protected'; + export const ProtectedInternal = 'protected internal'; + export const Public = 'public'; + } + + export module SymbolPropertyNames { + export const Accessibility = 'accessibility'; + export const Static = 'static'; + export const TestFramework = 'testFramework'; + export const TestMethodName = 'testMethodName'; + } + + export module SymbolRangeNames { + export const Attributes = 'attributes'; + export const Full = 'full'; + export const Name = 'name'; + } + + export namespace Structure { + export interface CodeElement { + Kind: string; + Name: string; + DisplayName: string; + Children?: CodeElement[]; + Ranges: { [name: string]: Range }; + Properties?: { [name: string]: any }; + } + + export interface CodeStructureRequest extends FileBasedRequest { + } + + export interface CodeStructureResponse { + Elements?: CodeElement[]; + } + + export function walkCodeElements(elements: CodeElement[], action: (element: CodeElement, parentElement?: CodeElement) => void) { + function walker(elements: CodeElement[], parentElement?: CodeElement) { + for (let element of elements) + { + action(element, parentElement); + + if (element.Children) { + walker(element.Children, element); + } + } + } + + walker(elements); + } + } } export function findNetFrameworkTargetFramework(project: MSBuildProject): TargetFramework { diff --git a/src/omnisharp/server.ts b/src/omnisharp/server.ts index 42db72d902..72dca5417e 100644 --- a/src/omnisharp/server.ts +++ b/src/omnisharp/server.ts @@ -91,9 +91,9 @@ export class OmniSharpServer { private updateProjectDebouncer = new Subject(); private firstUpdateProject: boolean; - constructor(private vscode: vscode, networkSettingsProvider: NetworkSettingsProvider, private packageJSON: any, private platformInfo: PlatformInformation, private eventStream: EventStream, private optionProvider: OptionProvider) { + constructor(private vscode: vscode, networkSettingsProvider: NetworkSettingsProvider, private packageJSON: any, private platformInfo: PlatformInformation, private eventStream: EventStream, private optionProvider: OptionProvider, extensionPath: string) { this._requestQueue = new RequestQueueCollection(this.eventStream, 8, request => this._makeRequest(request)); - let downloader = new OmnisharpDownloader(networkSettingsProvider, this.eventStream, this.packageJSON, platformInfo); + let downloader = new OmnisharpDownloader(networkSettingsProvider, this.eventStream, this.packageJSON, platformInfo, extensionPath); this._omnisharpManager = new OmnisharpManager(downloader, platformInfo); this.updateProjectDebouncer.debounceTime(1500).subscribe((event) => { this.updateProjectInfo(); }); this.firstUpdateProject = true; @@ -321,7 +321,7 @@ export class OmniSharpServer { try { let launchResult = await launchOmniSharp(cwd, args, launchInfo, this.platformInfo, options); - this.eventStream.post(new ObservableEvents.OmnisharpLaunch(launchResult.monoVersion, launchResult.command, launchResult.process.pid)); + this.eventStream.post(new ObservableEvents.OmnisharpLaunch(launchResult.monoVersion, launchResult.monoPath, launchResult.command, launchResult.process.pid)); this._serverProcess = launchResult.process; this._delayTrackers = {}; @@ -416,6 +416,7 @@ export class OmniSharpServer { public async restart(launchTarget: LaunchTarget = this._launchTarget): Promise { if (launchTarget) { await this.stop(); + this.eventStream.post(new ObservableEvents.OmnisharpRestart()); const options = this.optionProvider.GetLatestOptions(); await this._start(launchTarget, options); } @@ -444,6 +445,14 @@ export class OmniSharpServer { }); } + const defaultLaunchSolutionConfigValue = this.optionProvider.GetLatestOptions().defaultLaunchSolution; + + // First, try to launch against something that matches the user's preferred target + const defaultLaunchSolutionTarget = launchTargets.find((a) => (path.basename(a.target) === defaultLaunchSolutionConfigValue)); + if (defaultLaunchSolutionTarget) { + return this.restart(defaultLaunchSolutionTarget); + } + // If there's more than one launch target, we start the server if one of the targets // matches the preferred path. Otherwise, we fire the "MultipleLaunchTargets" event, // which is handled in status.ts to display the launch target selector. diff --git a/src/omnisharp/typeConvertion.ts b/src/omnisharp/typeConvertion.ts index 546e6db059..d7251e7943 100644 --- a/src/omnisharp/typeConvertion.ts +++ b/src/omnisharp/typeConvertion.ts @@ -62,30 +62,3 @@ export function createRequest(document: vscode.TextD return request; } - -export function toDocumentSymbol(bucket: vscode.SymbolInformation[], node: protocol.Node, containerLabel?: string): void { - - let ret = new vscode.SymbolInformation(node.Location.Text, kinds[node.Kind], - toRange(node.Location), - undefined, containerLabel); - - if (node.ChildNodes) { - for (let child of node.ChildNodes) { - toDocumentSymbol(bucket, child, ret.name); - } - } - bucket.push(ret); -} - -let kinds: { [kind: string]: vscode.SymbolKind; } = Object.create(null); -kinds['NamespaceDeclaration'] = vscode.SymbolKind.Namespace; -kinds['ClassDeclaration'] = vscode.SymbolKind.Class; -kinds['FieldDeclaration'] = vscode.SymbolKind.Field; -kinds['PropertyDeclaration'] = vscode.SymbolKind.Property; -kinds['EventFieldDeclaration'] = vscode.SymbolKind.Property; -kinds['MethodDeclaration'] = vscode.SymbolKind.Method; -kinds['EnumDeclaration'] = vscode.SymbolKind.Enum; -kinds['StructDeclaration'] = vscode.SymbolKind.Enum; -kinds['EnumMemberDeclaration'] = vscode.SymbolKind.Property; -kinds['InterfaceDeclaration'] = vscode.SymbolKind.Interface; -kinds['VariableDeclaration'] = vscode.SymbolKind.Variable; diff --git a/src/omnisharp/utils.ts b/src/omnisharp/utils.ts index a9e437a495..a488083dd2 100644 --- a/src/omnisharp/utils.ts +++ b/src/omnisharp/utils.ts @@ -15,8 +15,12 @@ export async function codeCheck(server: OmniSharpServer, request: protocol.Reque return server.makeRequest(protocol.Requests.CodeCheck, request, token); } -export async function currentFileMembersAsTree(server: OmniSharpServer, request: protocol.Request, token: vscode.CancellationToken) { - return server.makeRequest(protocol.Requests.CurrentFileMembersAsTree, request, token); +export async function blockStructure(server: OmniSharpServer, request: protocol.V2.BlockStructureRequest, token: vscode.CancellationToken) { + return server.makeRequest(protocol.V2.Requests.BlockStructure, request, token); +} + +export async function codeStructure(server: OmniSharpServer, request: protocol.V2.Structure.CodeStructureRequest, token: vscode.CancellationToken) { + return server.makeRequest(protocol.V2.Requests.CodeStructure, request, token); } export async function filesChanged(server: OmniSharpServer, requests: protocol.Request[]) { diff --git a/src/packageManager/AbsolutePath.ts b/src/packageManager/AbsolutePath.ts new file mode 100644 index 0000000000..68ea5c92a2 --- /dev/null +++ b/src/packageManager/AbsolutePath.ts @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { isAbsolute, resolve } from "path"; + +export class AbsolutePath{ + constructor(public value: string) { + if (!isAbsolute(value)) { + throw new Error("The path must be absolute"); + } + } + + public static getAbsolutePath(...pathSegments: string[]): AbsolutePath { + return new AbsolutePath(resolve(...pathSegments)); + } +} \ No newline at end of file diff --git a/src/packageManager/AbsolutePathPackage.ts b/src/packageManager/AbsolutePathPackage.ts new file mode 100644 index 0000000000..e12141501b --- /dev/null +++ b/src/packageManager/AbsolutePathPackage.ts @@ -0,0 +1,60 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { Package } from "./Package"; +import { IPackage } from "./IPackage"; +import { AbsolutePath } from "./AbsolutePath"; + +export class AbsolutePathPackage implements IPackage{ + constructor(public description: string, + public url: string, + public platforms: string[], + public architectures: string[], + public binaries: AbsolutePath[], + public installPath?: AbsolutePath, + public installTestPath?: AbsolutePath, + public fallbackUrl?: string, + public platformId?: string) { + } + + public static getAbsolutePathPackage(pkg: Package, extensionPath: string) { + return new AbsolutePathPackage( + pkg.description, + pkg.url, + pkg.platforms, + pkg.architectures, + getAbsoluteBinaries(pkg, extensionPath), + getAbsoluteInstallPath(pkg, extensionPath), + getAbsoluteInstallTestPath(pkg, extensionPath), + pkg.fallbackUrl, + pkg.platformId + ); + } +} + +function getAbsoluteInstallTestPath(pkg: Package, extensionPath: string): AbsolutePath { + if (pkg.installTestPath) { + return AbsolutePath.getAbsolutePath(extensionPath, pkg.installTestPath); + } + + return null; +} + +function getAbsoluteBinaries(pkg: Package, extensionPath: string): AbsolutePath[] { + let basePath = getAbsoluteInstallPath(pkg, extensionPath).value; + if (pkg.binaries) { + return pkg.binaries.map(value => AbsolutePath.getAbsolutePath(basePath, value)); + } + + return null; +} + +function getAbsoluteInstallPath(pkg: Package, extensionPath: string): AbsolutePath { + if (pkg.installPath) { + return AbsolutePath.getAbsolutePath(extensionPath, pkg.installPath); + } + + return new AbsolutePath(extensionPath); +} \ No newline at end of file diff --git a/src/packageManager/IPackage.ts b/src/packageManager/IPackage.ts new file mode 100644 index 0000000000..2bc4285f5e --- /dev/null +++ b/src/packageManager/IPackage.ts @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +export interface IPackage { + description: string; + url: string; + fallbackUrl?: string; + platforms: string[]; + architectures: string[]; + platformId?: string; +} \ No newline at end of file diff --git a/src/packageManager/Package.ts b/src/packageManager/Package.ts index f941d55784..34713cc8af 100644 --- a/src/packageManager/Package.ts +++ b/src/packageManager/Package.ts @@ -3,15 +3,10 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -export interface Package { - description: string; - url: string; - fallbackUrl?: string; +import { IPackage } from "./IPackage"; + +export interface Package extends IPackage{ installPath?: string; - platforms: string[]; - architectures: string[]; binaries: string[]; - platformId?: string; - // Path to use to test if the package has already been installed installTestPath?: string; } diff --git a/src/packageManager/PackageError.ts b/src/packageManager/PackageError.ts index 69423f0e9b..45c781c4d6 100644 --- a/src/packageManager/PackageError.ts +++ b/src/packageManager/PackageError.ts @@ -4,12 +4,12 @@ *--------------------------------------------------------------------------------------------*/ import { NestedError } from '../NestedError'; -import { Package } from './Package'; +import { IPackage } from "./IPackage"; export class PackageError extends NestedError { // Do not put PII (personally identifiable information) in the 'message' field as it will be logged to telemetry constructor(public message: string, - public pkg: Package = null, + public pkg: IPackage = null, public innerError: any = null) { super(message, innerError); } diff --git a/src/packageManager/PackageFilePathResolver.ts b/src/packageManager/PackageFilePathResolver.ts deleted file mode 100644 index 7c1fac687d..0000000000 --- a/src/packageManager/PackageFilePathResolver.ts +++ /dev/null @@ -1,39 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ - -import * as path from 'path'; -import * as util from '../common'; -import { Package } from './Package'; - -export function ResolveFilePaths(pkg: Package) { - pkg.installTestPath = ResolvePackageTestPath(pkg); - pkg.installPath = ResolveBaseInstallPath(pkg); - pkg.binaries = ResolvePackageBinaries(pkg); -} - -export function ResolvePackageTestPath(pkg: Package): string { - if (pkg.installTestPath) { - return path.resolve(util.getExtensionPath(), pkg.installTestPath); - } - - return null; -} - -function ResolvePackageBinaries(pkg: Package) { - if (pkg.binaries) { - return pkg.binaries.map(value => path.resolve(ResolveBaseInstallPath(pkg), value)); - } - - return null; -} - -function ResolveBaseInstallPath(pkg: Package): string { - let basePath = util.getExtensionPath(); - if (pkg.installPath) { - basePath = path.resolve(basePath, pkg.installPath); - } - - return basePath; -} diff --git a/src/packageManager/PackageFilterer.ts b/src/packageManager/PackageFilterer.ts index 36ead88ac7..5e1c8603fb 100644 --- a/src/packageManager/PackageFilterer.ts +++ b/src/packageManager/PackageFilterer.ts @@ -3,20 +3,19 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -import { Package } from "./Package"; import { PlatformInformation } from "../platform"; import * as util from '../common'; -import { ResolvePackageTestPath } from "./PackageFilePathResolver"; import { PackageError } from "./PackageError"; +import { AbsolutePathPackage } from "./AbsolutePathPackage"; const { filterAsync } = require('node-filter-async'); -export async function filterPackages(packages: Package[], platformInfo: PlatformInformation) { +export async function filterPackages(packages: AbsolutePathPackage[], platformInfo: PlatformInformation): Promise { let platformPackages = filterPlatformPackages(packages, platformInfo); return filterAlreadyInstalledPackages(platformPackages); } -function filterPlatformPackages(packages: Package[], platformInfo: PlatformInformation) { +function filterPlatformPackages(packages: AbsolutePathPackage[], platformInfo: PlatformInformation) { if (packages) { return packages.filter(pkg => { if (pkg.architectures && pkg.architectures.indexOf(platformInfo.architecture) === -1) { @@ -35,15 +34,15 @@ function filterPlatformPackages(packages: Package[], platformInfo: PlatformInfor } } -async function filterAlreadyInstalledPackages(packages: Package[]): Promise { - return filterAsync(packages, async (pkg: Package) => { +async function filterAlreadyInstalledPackages(packages: AbsolutePathPackage[]): Promise { + return filterAsync(packages, async (pkg: AbsolutePathPackage) => { //If the file is present at the install test path then filter it - let testPath = ResolvePackageTestPath(pkg); + let testPath = pkg.installTestPath; if (!testPath) { //if there is no testPath specified then we will not filter it return true; } - return !(await util.fileExists(testPath)); + return !(await util.fileExists(testPath.value)); }); } \ No newline at end of file diff --git a/src/packageManager/PackageManager.ts b/src/packageManager/PackageManager.ts index 8d373a159e..a7494cae04 100644 --- a/src/packageManager/PackageManager.ts +++ b/src/packageManager/PackageManager.ts @@ -12,11 +12,11 @@ import { InstallZip } from './ZipInstaller'; import { EventStream } from '../EventStream'; import { NetworkSettingsProvider } from "../NetworkSettings"; import { filterPackages } from "./PackageFilterer"; +import { AbsolutePathPackage } from "./AbsolutePathPackage"; -// Package manager needs a list of packages to be filtered based on platformInfo then download and install them -// Note that the packages that this component will install needs absolute paths for the installPath, intsallTestPath and the binaries -export async function DownloadAndInstallPackages(packages: Package[], provider: NetworkSettingsProvider, platformInfo: PlatformInformation, eventStream: EventStream) { - let filteredPackages = await filterPackages(packages, platformInfo); +export async function DownloadAndInstallPackages(packages: Package[], provider: NetworkSettingsProvider, platformInfo: PlatformInformation, eventStream: EventStream, extensionPath: string) { + let absolutePathPackages = packages.map(pkg => AbsolutePathPackage.getAbsolutePathPackage(pkg, extensionPath)); + let filteredPackages = await filterPackages(absolutePathPackages, platformInfo); if (filteredPackages) { for (let pkg of filteredPackages) { try { diff --git a/src/packageManager/ZipInstaller.ts b/src/packageManager/ZipInstaller.ts index 28d534ef7f..d11c3fc970 100644 --- a/src/packageManager/ZipInstaller.ts +++ b/src/packageManager/ZipInstaller.ts @@ -10,8 +10,9 @@ import * as yauzl from 'yauzl'; import { EventStream } from "../EventStream"; import { InstallationStart, ZipError } from "../omnisharp/loggingEvents"; import { NestedError } from '../NestedError'; +import { AbsolutePath } from './AbsolutePath'; -export async function InstallZip(buffer: Buffer, description: string, destinationInstallPath: string, binaries: string[], eventStream: EventStream): Promise { +export async function InstallZip(buffer: Buffer, description: string, destinationInstallPath: AbsolutePath, binaries: AbsolutePath[], eventStream: EventStream): Promise { eventStream.post(new InstallationStart(description)); return new Promise((resolve, reject) => { @@ -25,7 +26,7 @@ export async function InstallZip(buffer: Buffer, description: string, destinatio zipFile.readEntry(); zipFile.on('entry', (entry: yauzl.Entry) => { - let absoluteEntryPath = path.resolve(destinationInstallPath, entry.fileName); + let absoluteEntryPath = path.resolve(destinationInstallPath.value, entry.fileName); if (entry.fileName.endsWith('/')) { // Directory - create it @@ -49,8 +50,10 @@ export async function InstallZip(buffer: Buffer, description: string, destinatio return reject(new NestedError('Error creating directory for zip file entry', err)); } + let binaryPaths = binaries && binaries.map(binary => binary.value); + // Make sure executable files have correct permissions when extracted - let fileMode = binaries && binaries.indexOf(absoluteEntryPath) !== -1 + let fileMode = binaryPaths && binaryPaths.indexOf(absoluteEntryPath) !== -1 ? 0o755 : 0o664; diff --git a/src/tools/OptionsSchema.json b/src/tools/OptionsSchema.json index 53367ba426..5d6b359103 100644 --- a/src/tools/OptionsSchema.json +++ b/src/tools/OptionsSchema.json @@ -317,6 +317,11 @@ "description": "Environment variables passed to the program.", "default": {} }, + "envFile": { + "type": "string", + "description": "Environment variables passed to the program by a file.", + "default": "${workspaceFolder}/.env" + }, "console": { "type": "string", "enum": [ "internalConsole", "integratedTerminal", "externalTerminal" ], diff --git a/src/vscodeAdapter.ts b/src/vscodeAdapter.ts index 528cd4c012..7f18d91b54 100644 --- a/src/vscodeAdapter.ts +++ b/src/vscodeAdapter.ts @@ -911,7 +911,7 @@ export interface vscode { }; window: { activeTextEditor: TextEditor | undefined; - showInformationMessage: (message: string, ...items: string[]) => Thenable; + showInformationMessage: (message: string, ...items: T[]) => Thenable; showWarningMessage: (message: string, ...items: T[]) => Thenable; showErrorMessage(message: string, ...items: string[]): Thenable; }; diff --git a/tasks/backcompatTasks.ts b/tasks/backcompatTasks.ts index fc1bc22c46..99de5705c9 100644 --- a/tasks/backcompatTasks.ts +++ b/tasks/backcompatTasks.ts @@ -7,4 +7,4 @@ import * as gulp from 'gulp'; -gulp.task('package:offline', ['vsix:offline:package']); +gulp.task('package:offline', gulp.series('vsix:offline:package')); \ No newline at end of file diff --git a/tasks/coverageTasks.ts b/tasks/coverageTasks.ts index 22f485586a..6590b05fec 100644 --- a/tasks/coverageTasks.ts +++ b/tasks/coverageTasks.ts @@ -9,7 +9,7 @@ import * as gulp from 'gulp'; import * as path from 'path'; import * as del from 'del'; import spawnNode from './spawnNode'; -import { coverageRootPath, nycOutputPath, nycPath, codeExtensionSourcesPath, integrationTestCoverageRootPath, integrationTestNycOutputPath, istanbulCombinePath, codecovPath, unitTestCoverageRootPath } from './projectPaths'; +import { coverageRootPath, nycOutputPath, nycPath, codeExtensionSourcesPath, integrationTestCoverageRootPath, integrationTestNycOutputPath, istanbulPath, codecovPath, unitTestCoverageRootPath } from './projectPaths'; gulp.task("cov:instrument", async () => { del(coverageRootPath); @@ -29,12 +29,13 @@ gulp.task("cov:instrument", async () => { gulp.task("cov:merge", async () => { return spawnNode([ - istanbulCombinePath, - '-d', + istanbulPath, + 'report', + '--dir', integrationTestCoverageRootPath, - '-r', - 'lcovonly', - `${integrationTestNycOutputPath}/*.json` + '--include', + `${integrationTestNycOutputPath}/*.json`, + 'lcovonly' ], { cwd: codeExtensionSourcesPath }); @@ -42,20 +43,20 @@ gulp.task("cov:merge", async () => { gulp.task("cov:merge-html", async () => { return spawnNode([ - istanbulCombinePath, - '-d', + istanbulPath, + 'report', + '--dir', integrationTestCoverageRootPath, - '-r', - 'html', - `${integrationTestNycOutputPath}/*.json` + '--include', + `${integrationTestNycOutputPath}/*.json`, + 'html' ], { cwd: codeExtensionSourcesPath }); }); -gulp.task("cov:report", ["cov:report:integration", "cov:report:unit"]); -gulp.task("cov:report:integration", ["cov:merge"], async () => { +gulp.task("cov:report:integration", gulp.series("cov:merge", async () => { return spawnNode([ codecovPath, '-f', @@ -65,7 +66,7 @@ gulp.task("cov:report:integration", ["cov:merge"], async () => { ], { cwd: codeExtensionSourcesPath }); -}); +})); gulp.task("cov:report:unit", async () => { return spawnNode([ @@ -78,3 +79,5 @@ gulp.task("cov:report:unit", async () => { cwd: codeExtensionSourcesPath }); }); + +gulp.task("cov:report", gulp.parallel("cov:report:integration", "cov:report:unit")); diff --git a/tasks/offlinePackagingTasks.ts b/tasks/offlinePackagingTasks.ts index 8426d014e7..c89cd80b1b 100644 --- a/tasks/offlinePackagingTasks.ts +++ b/tasks/offlinePackagingTasks.ts @@ -11,7 +11,6 @@ import * as del from 'del'; import * as fs from 'fs'; import * as gulp from 'gulp'; import * as path from 'path'; -import * as util from '../src/common'; import spawnNode from '../tasks/spawnNode'; import { codeExtensionPath, offlineVscodeignorePath, vscodeignorePath, vscePath, packedVsixOutputRoot } from '../tasks/projectPaths'; import { CsharpLoggerObserver } from '../src/observers/CsharpLoggerObserver'; @@ -46,7 +45,6 @@ async function doPackageOffline() { cleanSync(true); } - util.setExtensionPath(codeExtensionPath); const packageJSON = getPackageJSON(); const name = packageJSON.name; const version = packageJSON.version; @@ -93,7 +91,7 @@ async function install(platformInfo: PlatformInformation, packageJSON: any) { const debuggerUtil = new debugUtil.CoreClrDebugUtil(path.resolve('.')); let runTimeDependencies = GetRunTimeDependenciesPackages(packageJSON); let provider = () => new NetworkSettings(undefined, undefined); - await DownloadAndInstallPackages(runTimeDependencies, provider, platformInfo, eventStream); + await DownloadAndInstallPackages(runTimeDependencies, provider, platformInfo, eventStream, codeExtensionPath); await debugUtil.CoreClrDebugUtil.writeEmptyFile(debuggerUtil.installCompleteFilePath()); } diff --git a/tasks/onlinePackagingTasks.ts b/tasks/onlinePackagingTasks.ts index ee8fe6794a..b3e1b6afc0 100644 --- a/tasks/onlinePackagingTasks.ts +++ b/tasks/onlinePackagingTasks.ts @@ -20,7 +20,7 @@ gulp.task('vsix:release:unpackage', () => { const packageName = `${name}-${version}.vsix`; del.sync(unpackedVsixPath); - fs.createReadStream(packageName).pipe(unzip.Extract({ path: unpackedVsixPath })); + return fs.createReadStream(packageName).pipe(unzip.Extract({ path: unpackedVsixPath })); }); gulp.task('vsix:release:package', async (onError) => { diff --git a/tasks/projectPaths.ts b/tasks/projectPaths.ts index 16c16891af..959741f613 100644 --- a/tasks/projectPaths.ts +++ b/tasks/projectPaths.ts @@ -18,7 +18,7 @@ export const nodeModulesPath = path.join(rootPath, 'node_modules'); export const vscePath = path.join(nodeModulesPath, 'vsce', 'out', 'vsce'); export const nycPath = path.join(nodeModulesPath, 'nyc', 'bin', 'nyc.js'); export const mochaPath = path.join(nodeModulesPath, 'mocha', 'bin', 'mocha'); -export const istanbulCombinePath = path.join(nodeModulesPath, 'istanbul-combine', 'cli.js'); +export const istanbulPath = path.join(nodeModulesPath, 'istanbul', 'lib', 'cli.js'); export const codecovPath = path.join(nodeModulesPath, 'codecov', 'bin', 'codecov'); export const vscodeTestHostPath = path.join(nodeModulesPath, 'vscode', 'bin', 'test'); diff --git a/tasks/testTasks.ts b/tasks/testTasks.ts index d9d9d99771..934b72f17f 100644 --- a/tasks/testTasks.ts +++ b/tasks/testTasks.ts @@ -10,13 +10,6 @@ import * as path from 'path'; import { codeExtensionPath, nycPath, rootPath, testAssetsRootPath, testRootPath, unitTestCoverageRootPath, mochaPath, vscodeTestHostPath } from './projectPaths'; import spawnNode from './spawnNode'; -const gulpSequence = require('gulp-sequence'); - -gulp.task("test", gulpSequence( - "test:feature", - "test:unit", - "test:integration")); - gulp.task("test:feature", async () => { let env = { ...process.env, @@ -44,12 +37,6 @@ gulp.task("test:unit", async () => { ]); }); -gulp.task( - "test:integration", gulpSequence( - "test:integration:singleCsproj", - "test:integration:slnWithCsproj" - )); - gulp.task("test:integration:singleCsproj", async () => { return runIntegrationTest("singleCsproj"); }); @@ -58,6 +45,17 @@ gulp.task("test:integration:slnWithCsproj", async () => { return runIntegrationTest("slnWithCsproj"); }); +gulp.task( + "test:integration", gulp.series( + "test:integration:singleCsproj", + "test:integration:slnWithCsproj" + )); + +gulp.task("test", gulp.series( + "test:feature", + "test:unit", + "test:integration")); + async function runIntegrationTest(testAssetName: string) { let env = { OSVC_SUITE: testAssetName, @@ -68,4 +66,4 @@ async function runIntegrationTest(testAssetName: string) { }; return spawnNode([vscodeTestHostPath], { env, cwd: rootPath }); -} \ No newline at end of file +} diff --git a/test-plan.md b/test-plan.md index a7121f488a..80a94aa812 100644 --- a/test-plan.md +++ b/test-plan.md @@ -1,7 +1,7 @@ # Validating C# Extension for VS Code #### Opening projects -When you open a directory in VS Code, the C# extension should look for a .csproj or .sln file in that directory and use "OmniSharp" to load it. +When you open a directory in VS Code, the C# extension should look for a .csproj or .sln file in that directory and use "OmniSharp" to load it. If a .cs file is present and no .csproj or .sln file are present, Omnisharp should start but the intellisense should only appear when a change is made to the file. If you look in "Output > Omnisharp Log" a bunch of information should be printed about what copy of MSBuild was used and what projects were load Project types to test: @@ -10,6 +10,7 @@ Project types to test: * .NET Core/.NET Standard csproj * (Windows) Desktop .NET projects * Unity projects +* A directory containing a .cs file without a csproj/sln. As stated above, intellisense should appear only when a change is made to the file. The easist way to verify that a project was successfully loaded is to open a .cs file within it and verify that the references codelens indicator appears. diff --git a/test/featureTests/OmnisharpDownloader.test.ts b/test/featureTests/OmnisharpDownloader.test.ts deleted file mode 100644 index ce38f94f6f..0000000000 --- a/test/featureTests/OmnisharpDownloader.test.ts +++ /dev/null @@ -1,51 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ - -import * as path from 'path'; -import * as tmp from 'tmp'; -import * as util from '../../src/common'; -import { rimraf } from 'async-file'; -import { PlatformInformation } from '../../src/platform'; -import { EventStream } from '../../src/EventStream'; -import { GetTestOmnisharpDownloader } from './testAssets/testAssets'; - -const chai = require("chai"); -chai.use(require("chai-as-promised")); -let expect = chai.expect; - -suite("DownloadAndInstallExperimentalVersion : Gets the version packages, downloads and installs them", () => { - let tmpDir: tmp.SynchrounousResult = null; - const version = "1.2.3"; - const platformInfo = new PlatformInformation("win32", "x86"); - const eventStream = new EventStream(); - const downloader = GetTestOmnisharpDownloader(eventStream, platformInfo); - const serverUrl = "https://roslynomnisharp.blob.core.windows.net"; - const installPath = "somePath"; - - setup(() => { - tmpDir = tmp.dirSync(); - util.setExtensionPath(tmpDir.name); - }); - - test('Throws error if request is made for a version that doesnot exist on the server', () => { - expect(downloader.DownloadAndInstallOmnisharp("1.00000001.0000", serverUrl, installPath)).to.be.rejectedWith(Error); - }); - - test('Packages are downloaded from the specified server url and installed at the specified path', async () => { - /* Download a test package that conatins a install_check_1.2.3.txt file and check whether the - file appears at the expected path */ - await downloader.DownloadAndInstallOmnisharp(version, serverUrl, installPath); - let exists = await util.fileExists(path.resolve(tmpDir.name, installPath, version, `install_check_1.2.3.txt`)); - exists.should.equal(true); - }); - - teardown(async () => { - if (tmpDir) { - await rimraf(tmpDir.name); - } - - tmpDir = null; - }); -}); diff --git a/test/featureTests/OmnisharpManager.test.ts b/test/featureTests/OmnisharpManager.test.ts deleted file mode 100644 index a278fd5553..0000000000 --- a/test/featureTests/OmnisharpManager.test.ts +++ /dev/null @@ -1,124 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ - -import * as path from 'path'; -import * as util from '../../src/common'; -import { expect, should } from "chai"; -import { PlatformInformation } from "../../src/platform"; -import { rimraf } from 'async-file'; -import { OmnisharpManager } from '../../src/omnisharp/OmnisharpManager'; -import { EventStream } from '../../src/EventStream'; -import { GetTestOmnisharpDownloader } from './testAssets/testAssets'; - -const chai = require("chai"); -chai.use(require("chai-as-promised")); - -const tmp = require('tmp'); - -suite('GetExperimentalOmnisharpPath : Returns Omnisharp experiment path depending on the path and useMono option', () => { - const platformInfo = new PlatformInformation("win32", "x86"); - const serverUrl = "https://roslynomnisharp.blob.core.windows.net"; - const installPath = "somePath"; - const versionFilepathInServer = "releases/testVersionInfo.txt"; - const eventStream = new EventStream(); - const manager = GetTestOmnisharpManager(eventStream, platformInfo); - const defaultVersion = "0.1.2"; - let extensionPath: string; - let tmpDir: any; - let tmpFile: any; - - suiteSetup(() => should()); - - setup(() => { - tmpDir = tmp.dirSync(); - extensionPath = tmpDir.name; - util.setExtensionPath(tmpDir.name); - }); - - test('Throws error if the path is neither an absolute path nor a valid semver, nor the string "latest"', async () => { - expect(manager.GetOmniSharpLaunchInfo(defaultVersion, "Some incorrect path", serverUrl, versionFilepathInServer, installPath, extensionPath)).to.be.rejectedWith(Error); - }); - - test('Throws error when the specified path is null', async () => { - expect(manager.GetOmniSharpLaunchInfo(defaultVersion, null, serverUrl, versionFilepathInServer, installPath, extensionPath)).to.be.rejectedWith(Error); - }); - - test('Throws error when the specified path is empty', async () => { - expect(manager.GetOmniSharpLaunchInfo(defaultVersion, "", serverUrl, versionFilepathInServer, installPath, extensionPath)).to.be.rejectedWith(Error); - }); - - test('Throws error when the specified path is an invalid semver', async () => { - expect(manager.GetOmniSharpLaunchInfo(defaultVersion, "a.b.c", serverUrl, versionFilepathInServer, installPath, extensionPath)).to.be.rejectedWith(Error); - }); - - test('Returns default paths if no path is specified', async () => { - let launchInfo = await manager.GetOmniSharpLaunchInfo(defaultVersion, undefined, serverUrl, versionFilepathInServer, installPath, extensionPath); - launchInfo.LaunchPath.should.equal(path.resolve(extensionPath, `.omnisharp/${defaultVersion}/OmniSharp.exe`)); - expect(launchInfo.MonoLaunchPath).to.be.undefined; - }); - - test('Returns default paths if no path is specified - Linux ', async () => { - let manager = GetTestOmnisharpManager(eventStream, new PlatformInformation("linux", "x64")); - let launchInfo = await manager.GetOmniSharpLaunchInfo(defaultVersion, undefined, serverUrl, versionFilepathInServer, installPath, extensionPath); - launchInfo.LaunchPath.should.equal(path.resolve(extensionPath, `.omnisharp/${defaultVersion}/run`)); - launchInfo.MonoLaunchPath.should.equal(path.resolve(extensionPath, `.omnisharp/${defaultVersion}/omnisharp/OmniSharp.exe`)); - }); - - test('Returns the same path if absolute path to an existing file is passed', async () => { - tmpFile = tmp.fileSync(); - let launchInfo = await manager.GetOmniSharpLaunchInfo(defaultVersion, tmpFile.name, serverUrl, versionFilepathInServer, installPath, extensionPath); - launchInfo.LaunchPath.should.equal(tmpFile.name); - }); - - test('Installs the latest version and returns the launch path based on the version and platform', async () => { - let launchInfo = await manager.GetOmniSharpLaunchInfo(defaultVersion, "latest", serverUrl, versionFilepathInServer, installPath, extensionPath); - launchInfo.LaunchPath.should.equal(path.resolve(extensionPath, `somePath/1.2.3/OmniSharp.exe`)); - expect(launchInfo.MonoLaunchPath).to.be.undefined; - }); - - test('Installs the test version and returns the launch path based on the version and platform', async () => { - let launchInfo = await manager.GetOmniSharpLaunchInfo(defaultVersion, "1.2.3", serverUrl, versionFilepathInServer, installPath, extensionPath); - launchInfo.LaunchPath.should.equal(path.resolve(extensionPath, `somePath/1.2.3/OmniSharp.exe`)); - expect(launchInfo.MonoLaunchPath).to.be.undefined; - }); - - test('Downloads package from given url and installs them at the specified path', async () => { - await manager.GetOmniSharpLaunchInfo(defaultVersion, "1.2.3", serverUrl, versionFilepathInServer, installPath, extensionPath); - let exists = await util.fileExists(path.resolve(extensionPath, `somePath/1.2.3/install_check_1.2.3.txt`)); - exists.should.equal(true); - }); - - test('Downloads package and returns launch path based on platform - on Linux ', async () => { - let manager = GetTestOmnisharpManager(eventStream, new PlatformInformation("linux", "x64")); - let launchInfo = await manager.GetOmniSharpLaunchInfo(defaultVersion, "1.2.3", serverUrl, versionFilepathInServer, installPath, extensionPath); - launchInfo.LaunchPath.should.equal(path.resolve(extensionPath, 'somePath/1.2.3/run')); - launchInfo.MonoLaunchPath.should.equal(path.resolve(extensionPath, 'somePath/1.2.3/omnisharp/OmniSharp.exe')); - }); - - test('Downloads package and returns launch path based on install path ', async () => { - let manager = GetTestOmnisharpManager(eventStream, platformInfo); - let launchInfo = await manager.GetOmniSharpLaunchInfo(defaultVersion, "1.2.3", serverUrl, versionFilepathInServer, "installHere", extensionPath); - launchInfo.LaunchPath.should.equal(path.resolve(extensionPath, 'installHere/1.2.3/OmniSharp.exe')); - expect(launchInfo.MonoLaunchPath).to.be.undefined; - }); - - teardown(async () => { - if (tmpDir) { - await rimraf(tmpDir.name); - } - - if (tmpFile) { - tmpFile.removeCallback(); - } - - tmpFile = null; - tmpDir = null; - }); -}); - -function GetTestOmnisharpManager(eventStream: EventStream, platformInfo: PlatformInformation) { - let downloader = GetTestOmnisharpDownloader(eventStream, platformInfo); - return new OmnisharpManager(downloader, platformInfo); -} diff --git a/test/integrationTests/codeActionRename.integration.test.ts b/test/integrationTests/codeActionRename.integration.test.ts index f55897288f..98f4508fa0 100644 --- a/test/integrationTests/codeActionRename.integration.test.ts +++ b/test/integrationTests/codeActionRename.integration.test.ts @@ -4,35 +4,30 @@ *--------------------------------------------------------------------------------------------*/ import * as vscode from 'vscode'; + import { should, expect } from 'chai'; +import { activateCSharpExtension } from './integrationHelpers'; import testAssetWorkspace from './testAssets/testAssetWorkspace'; -import CSharpExtensionExports from '../../src/CSharpExtensionExports'; const chai = require('chai'); chai.use(require('chai-arrays')); chai.use(require('chai-fs')); -suite(`Code Action Rename ${testAssetWorkspace.description}`, function() { - suiteSetup(async function() { +suite(`Code Action Rename ${testAssetWorkspace.description}`, function () { + suiteSetup(async function () { should(); + await testAssetWorkspace.restore(); + await activateCSharpExtension(); + }); - let csharpExtension = vscode.extensions.getExtension("ms-vscode.csharp"); - if (!csharpExtension.isActive) { - await csharpExtension.activate(); - } - try { - await csharpExtension.exports.initializationFinished(); - } - catch (err) { - console.log(JSON.stringify(err)); - } - + suiteTeardown(async () => { + await testAssetWorkspace.cleanupWorkspace(); }); test("Code actions can rename and open files", async () => { let fileUri = await testAssetWorkspace.projects[0].addFileWithContents("test.cs", "class C {}"); await vscode.commands.executeCommand("vscode.open", fileUri); - let c = await vscode.commands.executeCommand("vscode.executeCodeActionProvider", fileUri, new vscode.Range(0, 7, 0, 7)) as {command: string, title: string, arguments: string[]}[]; + let c = await vscode.commands.executeCommand("vscode.executeCodeActionProvider", fileUri, new vscode.Range(0, 7, 0, 7)) as { command: string, title: string, arguments: string[] }[]; let command = c.find( (s) => { return s.title == "Rename file to C.cs"; } ); @@ -40,8 +35,4 @@ suite(`Code Action Rename ${testAssetWorkspace.description}`, function() { await vscode.commands.executeCommand(command.command, ...command.arguments); expect(vscode.window.activeTextEditor.document.fileName).contains("C.cs"); }); - - teardown(async () => { - await testAssetWorkspace.cleanupWorkspace(); - }); }); \ No newline at end of file diff --git a/test/integrationTests/codeLensProvider.integration.test.ts b/test/integrationTests/codeLensProvider.integration.test.ts new file mode 100644 index 0000000000..c03da28631 --- /dev/null +++ b/test/integrationTests/codeLensProvider.integration.test.ts @@ -0,0 +1,135 @@ +/*--------------------------------------------------------------------------------------------- +* Copyright (c) Microsoft Corporation. All rights reserved. +* Licensed under the MIT License. See License.txt in the project root for license information. +*--------------------------------------------------------------------------------------------*/ + +import * as vscode from 'vscode'; +import * as path from 'path'; + +import { should, expect } from 'chai'; +import { activateCSharpExtension } from './integrationHelpers'; +import testAssetWorkspace from './testAssets/testAssetWorkspace'; + +const chai = require('chai'); +chai.use(require('chai-arrays')); +chai.use(require('chai-fs')); + +suite(`CodeLensProvider: ${testAssetWorkspace.description}`, function () { + let fileUri: vscode.Uri; + + suiteSetup(async function () { + should(); + await testAssetWorkspace.restore(); + await activateCSharpExtension(); + + let fileName = 'Program.cs'; + let projectDirectory = testAssetWorkspace.projects[0].projectDirectoryPath; + let filePath = path.join(projectDirectory, fileName); + fileUri = vscode.Uri.file(filePath); + + let csharpConfig = vscode.workspace.getConfiguration('csharp'); + await csharpConfig.update('referencesCodeLens.enabled', true); + await csharpConfig.update('testsCodeLens.enabled', true); + + await vscode.commands.executeCommand("vscode.open", fileUri); + }); + + suiteTeardown(async () => { + await testAssetWorkspace.cleanupWorkspace(); + }); + + test("Returns all code lenses", async function () { + let codeLenses = await GetCodeLenses(fileUri); + expect(codeLenses.length).to.equal(2); + + for (let codeLens of codeLenses) { + expect(codeLens.isResolved).to.be.false; + expect(codeLens.command).to.be.undefined; + } + }); + + test("Returns all resolved code lenses", async function () { + let codeLenses = await GetCodeLenses(fileUri, 100); + expect(codeLenses.length).to.equal(2); + + for (let codeLens of codeLenses) { + expect(codeLens.isResolved).to.be.true; + expect(codeLens.command).not.to.be.undefined; + expect(codeLens.command.title).to.equal("0 references"); + } + }); +}); + +suite(`CodeLensProvider options: ${testAssetWorkspace.description}`, function() { + let fileUri: vscode.Uri; + + suiteSetup(async function () { + should(); + + // These tests only run on the slnWithCsproj solution + if (vscode.workspace.rootPath.split(path.sep).pop() !== 'slnWithCsproj') { + this.skip(); + } + else + { + await testAssetWorkspace.restore(); + await activateCSharpExtension(); + + let fileName = 'UnitTest1.cs'; + let projectDirectory = testAssetWorkspace.projects[2].projectDirectoryPath; + let filePath = path.join(projectDirectory, fileName); + fileUri = vscode.Uri.file(filePath); + + await vscode.commands.executeCommand("vscode.open", fileUri); + } + }); + + suiteTeardown(async () => { + await testAssetWorkspace.cleanupWorkspace(); + }); + + test("Returns no references code lenses when 'csharp.referencesCodeLens.enabled' option is set to false", async function () { + let csharpConfig = vscode.workspace.getConfiguration('csharp'); + await csharpConfig.update('referencesCodeLens.enabled', false); + await csharpConfig.update('testsCodeLens.enabled', true); + + let codeLenses = await GetCodeLenses(fileUri, 100); + expect(codeLenses.length).to.equal(4); + + for (let codeLens of codeLenses) { + expect(codeLens.isResolved).to.be.true; + expect(codeLens.command).not.to.be.undefined; + expect(codeLens.command.command).to.be.oneOf(['dotnet.test.run', 'dotnet.classTests.run', 'dotnet.test.debug', 'dotnet.classTests.debug']); + expect(codeLens.command.title).to.be.oneOf(['Run Test', 'Run All Tests', 'Debug Test', 'Debug All Tests']); + } + }); + + test("Returns no test code lenses when 'csharp.testsCodeLens.enabled' option is set to false", async function () { + let csharpConfig = vscode.workspace.getConfiguration('csharp'); + await csharpConfig.update('referencesCodeLens.enabled', true); + await csharpConfig.update('testsCodeLens.enabled', false); + + let codeLenses = await GetCodeLenses(fileUri, 100); + expect(codeLenses.length).to.equal(2); + + for (let codeLens of codeLenses) { + expect(codeLens.isResolved).to.be.true; + expect(codeLens.command).not.to.be.undefined; + expect(codeLens.command.command).to.be.equal('editor.action.showReferences'); + expect(codeLens.command.title).to.equal('0 references'); + } + }); + + test("Returns no code lenses when 'csharp.referencesCodeLens.enabled' and 'csharp.testsCodeLens.enabled' options are set to false", async function () { + let csharpConfig = vscode.workspace.getConfiguration('csharp'); + await csharpConfig.update('referencesCodeLens.enabled', false); + await csharpConfig.update('testsCodeLens.enabled', false); + + let codeLenses = await GetCodeLenses(fileUri, 100); + expect(codeLenses.length).to.equal(0); + }); +}); + +async function GetCodeLenses(fileUri: vscode.Uri, resolvedItemCount?: number) { + return await vscode.commands.executeCommand("vscode.executeCodeLensProvider", fileUri, resolvedItemCount); +} \ No newline at end of file diff --git a/test/integrationTests/completionItemProvider.integration.test.ts b/test/integrationTests/completionItemProvider.integration.test.ts new file mode 100644 index 0000000000..811a9502b2 --- /dev/null +++ b/test/integrationTests/completionItemProvider.integration.test.ts @@ -0,0 +1,36 @@ +/*--------------------------------------------------------------------------------------------- +* Copyright (c) Microsoft Corporation. All rights reserved. +* Licensed under the MIT License. See License.txt in the project root for license information. +*--------------------------------------------------------------------------------------------*/ + +import OmniSharpCompletionItemProvider from "../../src/features/completionItemProvider"; +import * as vscode from 'vscode'; +import testAssetWorkspace from "./testAssets/testAssetWorkspace"; +import * as path from "path"; +import { expect } from "chai"; +import { activateCSharpExtension } from "./integrationHelpers"; + +suite(`${OmniSharpCompletionItemProvider.name}: Returns the completion items`, () => { + let fileUri: vscode.Uri; + + suiteSetup(async () => { + await testAssetWorkspace.restore(); + await activateCSharpExtension(); + + let fileName = 'completion.cs'; + let dir = testAssetWorkspace.projects[0].projectDirectoryPath; + fileUri = vscode.Uri.file(path.join(dir, fileName)); + await vscode.commands.executeCommand("vscode.open", fileUri); + }); + + test("Returns the completion items", async () => { + let completionList = (await vscode.commands.executeCommand("vscode.executeCompletionItemProvider", fileUri, new vscode.Position(8, 31), " ")); + expect(completionList.items).to.not.be.empty; + }); + + test("Preselect is enabled for atleast one completionItem when there is a new", async () => { + let completionList = (await vscode.commands.executeCommand("vscode.executeCompletionItemProvider", fileUri, new vscode.Position(8, 31), " ")); + let preselectList = completionList.items.filter(item => item.preselect === true); + expect(preselectList).to.not.be.empty; + }); +}); \ No newline at end of file diff --git a/test/integrationTests/documentSymbolProvider.integration.test.ts b/test/integrationTests/documentSymbolProvider.integration.test.ts new file mode 100644 index 0000000000..cdfa23d07c --- /dev/null +++ b/test/integrationTests/documentSymbolProvider.integration.test.ts @@ -0,0 +1,45 @@ +/*--------------------------------------------------------------------------------------------- +* Copyright (c) Microsoft Corporation. All rights reserved. +* Licensed under the MIT License. See License.txt in the project root for license information. +*--------------------------------------------------------------------------------------------*/ + +import * as vscode from 'vscode'; +import * as path from 'path'; + +import { should, expect } from 'chai'; +import { activateCSharpExtension } from './integrationHelpers'; +import testAssetWorkspace from './testAssets/testAssetWorkspace'; + +const chai = require('chai'); +chai.use(require('chai-arrays')); +chai.use(require('chai-fs')); + +suite(`DocumentSymbolProvider: ${testAssetWorkspace.description}`, function () { + let fileUri: vscode.Uri; + + suiteSetup(async function () { + should(); + await testAssetWorkspace.restore(); + await activateCSharpExtension(); + + let fileName = 'documentSymbols.cs'; + let projectDirectory = testAssetWorkspace.projects[0].projectDirectoryPath; + let filePath = path.join(projectDirectory, fileName); + fileUri = vscode.Uri.file(filePath); + + await vscode.commands.executeCommand("vscode.open", fileUri); + }); + + suiteTeardown(async () => { + await testAssetWorkspace.cleanupWorkspace(); + }); + + test("Returns all elements", async function () { + let symbols = await GetDocumentSymbols(fileUri); + expect(symbols.length).to.equal(25); + }); +}); + +async function GetDocumentSymbols(fileUri: vscode.Uri) { + return await vscode.commands.executeCommand("vscode.executeDocumentSymbolProvider", fileUri); +} \ No newline at end of file diff --git a/test/integrationTests/hoverProvider.integration.test.ts b/test/integrationTests/hoverProvider.integration.test.ts index cbfb3ebd71..dfa8e53774 100644 --- a/test/integrationTests/hoverProvider.integration.test.ts +++ b/test/integrationTests/hoverProvider.integration.test.ts @@ -7,6 +7,7 @@ import * as vscode from 'vscode'; import * as path from 'path'; import { should, expect } from 'chai'; +import { activateCSharpExtension } from './integrationHelpers'; import testAssetWorkspace from './testAssets/testAssetWorkspace'; const chai = require('chai'); @@ -16,18 +17,17 @@ chai.use(require('chai-fs')); suite(`Hover Provider: ${testAssetWorkspace.description}`, function () { suiteSetup(async function () { should(); + await testAssetWorkspace.restore(); + await activateCSharpExtension(); + }); - let csharpExtension = vscode.extensions.getExtension("ms-vscode.csharp"); - if (!csharpExtension.isActive) { - await csharpExtension.activate(); - } - - await csharpExtension.exports.initializationFinished; + suiteTeardown(async () => { + await testAssetWorkspace.cleanupWorkspace(); }); test("Hover returns structured documentation with proper newlines", async function () { let fileName = 'hover.cs'; - let dir = path.dirname(testAssetWorkspace.projects[0].projectDirectoryPath); + let dir = testAssetWorkspace.projects[0].projectDirectoryPath; let loc = path.join(dir, fileName); let fileUri = vscode.Uri.file(loc); @@ -44,8 +44,4 @@ Parameters: Returns true if object is tagged with tag.`; expect((<{ language: string; value: string }>c[0].contents[0]).value).to.equal(answer); }); - - teardown(async () => { - await testAssetWorkspace.cleanupWorkspace(); - }); }); \ No newline at end of file diff --git a/test/integrationTests/implementationProvider.test.ts b/test/integrationTests/implementationProvider.test.ts new file mode 100644 index 0000000000..d7074d9839 --- /dev/null +++ b/test/integrationTests/implementationProvider.test.ts @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- +* Copyright (c) Microsoft Corporation. All rights reserved. +* Licensed under the MIT License. See License.txt in the project root for license information. +*--------------------------------------------------------------------------------------------*/ + +import * as vscode from "vscode"; +import CSharpImplementationProvider from "../../src/features/implementationProvider"; +import * as path from "path"; +import testAssetWorkspace from "./testAssets/testAssetWorkspace"; +import { expect } from "chai"; +import { activateCSharpExtension } from './integrationHelpers'; + +suite(`${CSharpImplementationProvider.name}: ${testAssetWorkspace.description}`, () => { + let fileUri: vscode.Uri; + + suiteSetup(async () => { + await testAssetWorkspace.restore(); + await activateCSharpExtension(); + + let fileName = 'implementation.cs'; + let projectDirectory = testAssetWorkspace.projects[0].projectDirectoryPath; + fileUri = vscode.Uri.file(path.join(projectDirectory, fileName)); + await vscode.commands.executeCommand("vscode.open", fileUri); + }); + + suiteTeardown(async () => { + await testAssetWorkspace.cleanupWorkspace(); + }); + + test("Returns the implementation", async() => { + let implementationList = (await vscode.commands.executeCommand("vscode.executeImplementationProvider", fileUri, new vscode.Position(4, 22))); + expect(implementationList.length).to.be.equal(2); + }); +}); \ No newline at end of file diff --git a/test/integrationTests/integrationHelpers.ts b/test/integrationTests/integrationHelpers.ts new file mode 100644 index 0000000000..382e5eb66c --- /dev/null +++ b/test/integrationTests/integrationHelpers.ts @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import * as vscode from 'vscode'; +import CSharpExtensionExports from '../../src/CSharpExtensionExports'; + +export async function activateCSharpExtension(): Promise { + const csharpExtension = vscode.extensions.getExtension("ms-vscode.csharp"); + + if (!csharpExtension.isActive) { + await csharpExtension.activate(); + } + + try { + await csharpExtension.exports.initializationFinished(); + console.log("ms-vscode.csharp activated"); + } + catch (err) { + console.log(JSON.stringify(err)); + } +} \ No newline at end of file diff --git a/test/integrationTests/launchConfiguration.integration.test.ts b/test/integrationTests/launchConfiguration.integration.test.ts index 1f2e63698d..16baf45cd0 100644 --- a/test/integrationTests/launchConfiguration.integration.test.ts +++ b/test/integrationTests/launchConfiguration.integration.test.ts @@ -7,7 +7,8 @@ import * as fs from 'async-file'; import * as vscode from 'vscode'; import poll from './poll'; -import { should } from 'chai'; +import { should, expect } from 'chai'; +import { activateCSharpExtension } from './integrationHelpers'; import testAssetWorkspace from './testAssets/testAssetWorkspace'; const chai = require('chai'); @@ -17,34 +18,29 @@ chai.use(require('chai-fs')); suite(`Tasks generation: ${testAssetWorkspace.description}`, function () { suiteSetup(async function () { should(); - - let csharpExtension = vscode.extensions.getExtension("ms-vscode.csharp"); - if (!csharpExtension.isActive) { - await csharpExtension.activate(); - } - - await testAssetWorkspace.cleanupWorkspace(); - - await csharpExtension.exports.initializationFinished; + await testAssetWorkspace.restore(); + await activateCSharpExtension(); await vscode.commands.executeCommand("dotnet.generateAssets"); await poll(async () => await fs.exists(testAssetWorkspace.launchJsonPath), 10000, 100); }); - test("Starting .NET Core Launch (console) from the workspace root should create an Active Debug Session", async () => { - await vscode.debug.startDebugging(vscode.workspace.workspaceFolders[0], ".NET Core Launch (console)"); + suiteTeardown(async () => { + await testAssetWorkspace.cleanupWorkspace(); + }); + test("Starting .NET Core Launch (console) from the workspace root should create an Active Debug Session", async () => { + let result = await vscode.debug.startDebugging(vscode.workspace.workspaceFolders[0], ".NET Core Launch (console)"); + expect(result, "Debugger could not be started."); + let debugSessionTerminated = new Promise(resolve => { vscode.debug.onDidTerminateDebugSession((e) => resolve()); }); - vscode.debug.activeDebugSession.type.should.equal("coreclr"); + expect(vscode.debug.activeDebugSession).not.to.be.undefined; + expect(vscode.debug.activeDebugSession.type).to.equal("coreclr"); await debugSessionTerminated; }); - - teardown(async () => { - await testAssetWorkspace.cleanupWorkspace(); - }); }); \ No newline at end of file diff --git a/test/integrationTests/signatureHelp.integration.test.ts b/test/integrationTests/signatureHelp.integration.test.ts index 62ceabf054..7c4a735112 100644 --- a/test/integrationTests/signatureHelp.integration.test.ts +++ b/test/integrationTests/signatureHelp.integration.test.ts @@ -7,6 +7,7 @@ import * as vscode from 'vscode'; import * as path from 'path'; import { should, expect } from 'chai'; +import { activateCSharpExtension } from './integrationHelpers'; import testAssetWorkspace from './testAssets/testAssetWorkspace'; const chai = require('chai'); @@ -15,23 +16,22 @@ chai.use(require('chai-fs')); suite(`SignatureHelp: ${testAssetWorkspace.description}`, function () { let fileUri: vscode.Uri; + suiteSetup(async function () { should(); - - let csharpExtension = vscode.extensions.getExtension("ms-vscode.csharp"); - if (!csharpExtension.isActive) { - await csharpExtension.activate(); - } - - await csharpExtension.exports.initializationFinished; + await testAssetWorkspace.restore(); + await activateCSharpExtension(); let fileName = 'sigHelp.cs'; - let dir = path.dirname(testAssetWorkspace.projects[0].projectDirectoryPath); + let dir = testAssetWorkspace.projects[0].projectDirectoryPath; let loc = path.join(dir, fileName); fileUri = vscode.Uri.file(loc); await vscode.commands.executeCommand("vscode.open", fileUri); }); + suiteTeardown(async () => { + await testAssetWorkspace.cleanupWorkspace(); + }); test("Returns response with documentation as undefined when method does not have documentation", async function () { let c = await GetSignatureHelp(fileUri, new vscode.Position(19, 23)); @@ -81,10 +81,6 @@ suite(`SignatureHelp: ${testAssetWorkspace.description}`, function () { }); }); -suiteTeardown(async () => { - await testAssetWorkspace.cleanupWorkspace(); -}); - async function GetSignatureHelp(fileUri: vscode.Uri, position: vscode.Position) { return await vscode.commands.executeCommand("vscode.executeSignatureHelpProvider", fileUri, position); } \ No newline at end of file diff --git a/test/integrationTests/testAssets/singleCsproj.ts b/test/integrationTests/testAssets/singleCsproj.ts index 6db898e311..f21ec32251 100644 --- a/test/integrationTests/testAssets/singleCsproj.ts +++ b/test/integrationTests/testAssets/singleCsproj.ts @@ -8,7 +8,7 @@ import { ITestAssetWorkspace } from "./testAssets"; let workspace: ITestAssetWorkspace = { description: "single csproj at root of workspace", projects: [{ - relativePath: "singleCsproj.csproj" + relativeFilePath: "singleCsproj.csproj" }] }; diff --git a/test/integrationTests/testAssets/singleCsproj/.gitignore b/test/integrationTests/testAssets/singleCsproj/.gitignore new file mode 100644 index 0000000000..3d2ce4e896 --- /dev/null +++ b/test/integrationTests/testAssets/singleCsproj/.gitignore @@ -0,0 +1,2 @@ +**/obj/ +**/bin/ \ No newline at end of file diff --git a/test/integrationTests/testAssets/singleCsproj/.vscode/settings.json b/test/integrationTests/testAssets/singleCsproj/.vscode/settings.json index ba0e6ce6ed..15054e3596 100644 --- a/test/integrationTests/testAssets/singleCsproj/.vscode/settings.json +++ b/test/integrationTests/testAssets/singleCsproj/.vscode/settings.json @@ -1,3 +1,3 @@ { - "omnisharp.path": "latest"" + "omnisharp.path": "latest" } \ No newline at end of file diff --git a/test/integrationTests/testAssets/singleCsproj/completion.cs b/test/integrationTests/testAssets/singleCsproj/completion.cs new file mode 100644 index 0000000000..e844bc9542 --- /dev/null +++ b/test/integrationTests/testAssets/singleCsproj/completion.cs @@ -0,0 +1,12 @@ +using System; + +namespace singleCsproj +{ + class Completion + { + static void shouldHaveCompletions(string[] args) + { + Completion a = new Completion(); + } + } +} diff --git a/test/integrationTests/testAssets/singleCsproj/documentSymbols.cs b/test/integrationTests/testAssets/singleCsproj/documentSymbols.cs new file mode 100644 index 0000000000..74a5c3f093 --- /dev/null +++ b/test/integrationTests/testAssets/singleCsproj/documentSymbols.cs @@ -0,0 +1,57 @@ +using System; + +namespace Test +{ + class C + { + private int _f; + private int _f1, _f2; + + public C() {} + ~C() { } + + public void M1(int i, string s, params object[] args) + { + } + + public int P1 => 42; + public int P2 { get => 42; } + public int P3 { get { return 42; } } + + public int this[int index] => index++; + + public event EventHandler E1; + public event EventHandler E2, E3; + public event EventHandler E4 + { + add { } + remove { } + } + + public static bool operator ==(C c1, int i) { return true; } + + public static bool operator !=(C c1, int i) { return false; } + + public static implicit operator C(int i) { return null; } + + public static explicit operator int(C c1) { return 42 ; } + } + + struct S + { + } + + interface I + { + void M(); + } + + delegate void D(); + + enum E + { + One, + Two, + Three + } +} \ No newline at end of file diff --git a/test/integrationTests/testAssets/singleCsproj/implementation.cs b/test/integrationTests/testAssets/singleCsproj/implementation.cs new file mode 100644 index 0000000000..abddb3511e --- /dev/null +++ b/test/integrationTests/testAssets/singleCsproj/implementation.cs @@ -0,0 +1,7 @@ +using System; + +namespace minimal +{ + public class BaseClass {} + public class SomeClass : BaseClass {} +} \ No newline at end of file diff --git a/test/integrationTests/testAssets/singleCsproj/obj/Debug/netcoreapp2.0/singleCsproj.AssemblyInfo.cs b/test/integrationTests/testAssets/singleCsproj/obj/Debug/netcoreapp2.0/singleCsproj.AssemblyInfo.cs deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/test/integrationTests/testAssets/singleCsproj/obj/Debug/netcoreapp2.0/singleCsproj.AssemblyInfoInputs.cache b/test/integrationTests/testAssets/singleCsproj/obj/Debug/netcoreapp2.0/singleCsproj.AssemblyInfoInputs.cache deleted file mode 100644 index 710d2a64d1..0000000000 --- a/test/integrationTests/testAssets/singleCsproj/obj/Debug/netcoreapp2.0/singleCsproj.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -430bdcfd8bad4c9c4b8cb192efe5e61394e77ebc diff --git a/test/integrationTests/testAssets/singleCsproj/obj/Debug/netcoreapp2.0/singleCsproj.csproj.CoreCompileInputs.cache b/test/integrationTests/testAssets/singleCsproj/obj/Debug/netcoreapp2.0/singleCsproj.csproj.CoreCompileInputs.cache deleted file mode 100644 index 0cb96c1c5a..0000000000 --- a/test/integrationTests/testAssets/singleCsproj/obj/Debug/netcoreapp2.0/singleCsproj.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -ffcdec535c6ed9f5449ad17c7f1a870da5e60671 diff --git a/test/integrationTests/testAssets/singleCsproj/obj/project.assets.json b/test/integrationTests/testAssets/singleCsproj/obj/project.assets.json deleted file mode 100644 index f4cec692c2..0000000000 --- a/test/integrationTests/testAssets/singleCsproj/obj/project.assets.json +++ /dev/null @@ -1,721 +0,0 @@ -{ - "version": 3, - "targets": { - ".NETCoreApp,Version=v2.0": { - "Microsoft.NETCore.App/2.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetHostPolicy": "2.0.0", - "Microsoft.NETCore.Platforms": "2.0.0", - "NETStandard.Library": "2.0.0" - }, - "compile": { - "ref/netcoreapp2.0/Microsoft.CSharp.dll": {}, - "ref/netcoreapp2.0/Microsoft.VisualBasic.dll": {}, - "ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll": {}, - "ref/netcoreapp2.0/System.AppContext.dll": {}, - "ref/netcoreapp2.0/System.Buffers.dll": {}, - "ref/netcoreapp2.0/System.Collections.Concurrent.dll": {}, - "ref/netcoreapp2.0/System.Collections.Immutable.dll": {}, - "ref/netcoreapp2.0/System.Collections.NonGeneric.dll": {}, - "ref/netcoreapp2.0/System.Collections.Specialized.dll": {}, - "ref/netcoreapp2.0/System.Collections.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.Annotations.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.Composition.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.Primitives.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.dll": {}, - "ref/netcoreapp2.0/System.Configuration.dll": {}, - "ref/netcoreapp2.0/System.Console.dll": {}, - "ref/netcoreapp2.0/System.Core.dll": {}, - "ref/netcoreapp2.0/System.Data.Common.dll": {}, - "ref/netcoreapp2.0/System.Data.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.Contracts.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.Debug.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.Process.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.Tools.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.Tracing.dll": {}, - "ref/netcoreapp2.0/System.Drawing.Primitives.dll": {}, - "ref/netcoreapp2.0/System.Drawing.dll": {}, - "ref/netcoreapp2.0/System.Dynamic.Runtime.dll": {}, - "ref/netcoreapp2.0/System.Globalization.Calendars.dll": {}, - "ref/netcoreapp2.0/System.Globalization.Extensions.dll": {}, - "ref/netcoreapp2.0/System.Globalization.dll": {}, - "ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll": {}, - "ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll": {}, - "ref/netcoreapp2.0/System.IO.Compression.dll": {}, - "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll": {}, - "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll": {}, - "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll": {}, - "ref/netcoreapp2.0/System.IO.FileSystem.dll": {}, - "ref/netcoreapp2.0/System.IO.IsolatedStorage.dll": {}, - "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll": {}, - "ref/netcoreapp2.0/System.IO.Pipes.dll": {}, - "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll": {}, - "ref/netcoreapp2.0/System.IO.dll": {}, - "ref/netcoreapp2.0/System.Linq.Expressions.dll": {}, - "ref/netcoreapp2.0/System.Linq.Parallel.dll": {}, - "ref/netcoreapp2.0/System.Linq.Queryable.dll": {}, - "ref/netcoreapp2.0/System.Linq.dll": {}, - "ref/netcoreapp2.0/System.Net.Http.dll": {}, - "ref/netcoreapp2.0/System.Net.HttpListener.dll": {}, - "ref/netcoreapp2.0/System.Net.Mail.dll": {}, - "ref/netcoreapp2.0/System.Net.NameResolution.dll": {}, - "ref/netcoreapp2.0/System.Net.NetworkInformation.dll": {}, - "ref/netcoreapp2.0/System.Net.Ping.dll": {}, - "ref/netcoreapp2.0/System.Net.Primitives.dll": {}, - "ref/netcoreapp2.0/System.Net.Requests.dll": {}, - "ref/netcoreapp2.0/System.Net.Security.dll": {}, - "ref/netcoreapp2.0/System.Net.ServicePoint.dll": {}, - "ref/netcoreapp2.0/System.Net.Sockets.dll": {}, - "ref/netcoreapp2.0/System.Net.WebClient.dll": {}, - "ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll": {}, - "ref/netcoreapp2.0/System.Net.WebProxy.dll": {}, - "ref/netcoreapp2.0/System.Net.WebSockets.Client.dll": {}, - "ref/netcoreapp2.0/System.Net.WebSockets.dll": {}, - "ref/netcoreapp2.0/System.Net.dll": {}, - "ref/netcoreapp2.0/System.Numerics.Vectors.dll": {}, - "ref/netcoreapp2.0/System.Numerics.dll": {}, - "ref/netcoreapp2.0/System.ObjectModel.dll": {}, - "ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Emit.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Extensions.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Metadata.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Primitives.dll": {}, - "ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll": {}, - "ref/netcoreapp2.0/System.Reflection.dll": {}, - "ref/netcoreapp2.0/System.Resources.Reader.dll": {}, - "ref/netcoreapp2.0/System.Resources.ResourceManager.dll": {}, - "ref/netcoreapp2.0/System.Resources.Writer.dll": {}, - "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Extensions.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Handles.dll": {}, - "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll": {}, - "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll": {}, - "ref/netcoreapp2.0/System.Runtime.InteropServices.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Loader.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Numerics.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Serialization.dll": {}, - "ref/netcoreapp2.0/System.Runtime.dll": {}, - "ref/netcoreapp2.0/System.Security.Claims.dll": {}, - "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll": {}, - "ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll": {}, - "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll": {}, - "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll": {}, - "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll": {}, - "ref/netcoreapp2.0/System.Security.Principal.dll": {}, - "ref/netcoreapp2.0/System.Security.SecureString.dll": {}, - "ref/netcoreapp2.0/System.Security.dll": {}, - "ref/netcoreapp2.0/System.ServiceModel.Web.dll": {}, - "ref/netcoreapp2.0/System.ServiceProcess.dll": {}, - "ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll": {}, - "ref/netcoreapp2.0/System.Text.Encoding.dll": {}, - "ref/netcoreapp2.0/System.Text.RegularExpressions.dll": {}, - "ref/netcoreapp2.0/System.Threading.Overlapped.dll": {}, - "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll": {}, - "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll": {}, - "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll": {}, - "ref/netcoreapp2.0/System.Threading.Tasks.dll": {}, - "ref/netcoreapp2.0/System.Threading.Thread.dll": {}, - "ref/netcoreapp2.0/System.Threading.ThreadPool.dll": {}, - "ref/netcoreapp2.0/System.Threading.Timer.dll": {}, - "ref/netcoreapp2.0/System.Threading.dll": {}, - "ref/netcoreapp2.0/System.Transactions.Local.dll": {}, - "ref/netcoreapp2.0/System.Transactions.dll": {}, - "ref/netcoreapp2.0/System.ValueTuple.dll": {}, - "ref/netcoreapp2.0/System.Web.HttpUtility.dll": {}, - "ref/netcoreapp2.0/System.Web.dll": {}, - "ref/netcoreapp2.0/System.Windows.dll": {}, - "ref/netcoreapp2.0/System.Xml.Linq.dll": {}, - "ref/netcoreapp2.0/System.Xml.ReaderWriter.dll": {}, - "ref/netcoreapp2.0/System.Xml.Serialization.dll": {}, - "ref/netcoreapp2.0/System.Xml.XDocument.dll": {}, - "ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll": {}, - "ref/netcoreapp2.0/System.Xml.XPath.dll": {}, - "ref/netcoreapp2.0/System.Xml.XmlDocument.dll": {}, - "ref/netcoreapp2.0/System.Xml.XmlSerializer.dll": {}, - "ref/netcoreapp2.0/System.Xml.dll": {}, - "ref/netcoreapp2.0/System.dll": {}, - "ref/netcoreapp2.0/WindowsBase.dll": {}, - "ref/netcoreapp2.0/mscorlib.dll": {}, - "ref/netcoreapp2.0/netstandard.dll": {} - }, - "build": { - "build/netcoreapp2.0/Microsoft.NETCore.App.props": {}, - "build/netcoreapp2.0/Microsoft.NETCore.App.targets": {} - } - }, - "Microsoft.NETCore.DotNetAppHost/2.0.0": { - "type": "package" - }, - "Microsoft.NETCore.DotNetHostPolicy/2.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetHostResolver": "2.0.0" - } - }, - "Microsoft.NETCore.DotNetHostResolver/2.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetAppHost": "2.0.0" - } - }, - "Microsoft.NETCore.Platforms/2.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "NETStandard.Library/2.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - }, - "build": { - "build/netstandard2.0/NETStandard.Library.targets": {} - } - } - } - }, - "libraries": { - "Microsoft.NETCore.App/2.0.0": { - "sha512": "/mzXF+UtZef+VpzzN88EpvFq5U6z4rj54ZMq/J968H6pcvyLOmcupmTRpJ3CJm8ILoCGh9WI7qpDdiKtuzswrQ==", - "type": "package", - "path": "microsoft.netcore.app/2.0.0", - "files": [ - "LICENSE.TXT", - "Microsoft.NETCore.App.versions.txt", - "THIRD-PARTY-NOTICES.TXT", - "build/netcoreapp2.0/Microsoft.NETCore.App.PlatformManifest.txt", - "build/netcoreapp2.0/Microsoft.NETCore.App.props", - "build/netcoreapp2.0/Microsoft.NETCore.App.targets", - "microsoft.netcore.app.2.0.0.nupkg.sha512", - "microsoft.netcore.app.nuspec", - "ref/netcoreapp/_._", - "ref/netcoreapp2.0/Microsoft.CSharp.dll", - "ref/netcoreapp2.0/Microsoft.CSharp.xml", - "ref/netcoreapp2.0/Microsoft.VisualBasic.dll", - "ref/netcoreapp2.0/Microsoft.VisualBasic.xml", - "ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll", - "ref/netcoreapp2.0/Microsoft.Win32.Primitives.xml", - "ref/netcoreapp2.0/System.AppContext.dll", - "ref/netcoreapp2.0/System.AppContext.xml", - "ref/netcoreapp2.0/System.Buffers.dll", - "ref/netcoreapp2.0/System.Buffers.xml", - "ref/netcoreapp2.0/System.Collections.Concurrent.dll", - "ref/netcoreapp2.0/System.Collections.Concurrent.xml", - "ref/netcoreapp2.0/System.Collections.Immutable.dll", - "ref/netcoreapp2.0/System.Collections.Immutable.xml", - "ref/netcoreapp2.0/System.Collections.NonGeneric.dll", - "ref/netcoreapp2.0/System.Collections.NonGeneric.xml", - "ref/netcoreapp2.0/System.Collections.Specialized.dll", - "ref/netcoreapp2.0/System.Collections.Specialized.xml", - "ref/netcoreapp2.0/System.Collections.dll", - "ref/netcoreapp2.0/System.Collections.xml", - "ref/netcoreapp2.0/System.ComponentModel.Annotations.dll", - "ref/netcoreapp2.0/System.ComponentModel.Annotations.xml", - "ref/netcoreapp2.0/System.ComponentModel.Composition.dll", - "ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll", - "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll", - "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.xml", - "ref/netcoreapp2.0/System.ComponentModel.Primitives.dll", - "ref/netcoreapp2.0/System.ComponentModel.Primitives.xml", - "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll", - "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.xml", - "ref/netcoreapp2.0/System.ComponentModel.dll", - "ref/netcoreapp2.0/System.ComponentModel.xml", - "ref/netcoreapp2.0/System.Configuration.dll", - "ref/netcoreapp2.0/System.Console.dll", - "ref/netcoreapp2.0/System.Console.xml", - "ref/netcoreapp2.0/System.Core.dll", - "ref/netcoreapp2.0/System.Data.Common.dll", - "ref/netcoreapp2.0/System.Data.Common.xml", - "ref/netcoreapp2.0/System.Data.dll", - "ref/netcoreapp2.0/System.Diagnostics.Contracts.dll", - "ref/netcoreapp2.0/System.Diagnostics.Contracts.xml", - "ref/netcoreapp2.0/System.Diagnostics.Debug.dll", - "ref/netcoreapp2.0/System.Diagnostics.Debug.xml", - "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll", - "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.xml", - "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll", - "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.xml", - "ref/netcoreapp2.0/System.Diagnostics.Process.dll", - "ref/netcoreapp2.0/System.Diagnostics.Process.xml", - "ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll", - "ref/netcoreapp2.0/System.Diagnostics.StackTrace.xml", - "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll", - "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netcoreapp2.0/System.Diagnostics.Tools.dll", - "ref/netcoreapp2.0/System.Diagnostics.Tools.xml", - "ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll", - "ref/netcoreapp2.0/System.Diagnostics.TraceSource.xml", - "ref/netcoreapp2.0/System.Diagnostics.Tracing.dll", - "ref/netcoreapp2.0/System.Diagnostics.Tracing.xml", - "ref/netcoreapp2.0/System.Drawing.Primitives.dll", - "ref/netcoreapp2.0/System.Drawing.Primitives.xml", - "ref/netcoreapp2.0/System.Drawing.dll", - "ref/netcoreapp2.0/System.Dynamic.Runtime.dll", - "ref/netcoreapp2.0/System.Dynamic.Runtime.xml", - "ref/netcoreapp2.0/System.Globalization.Calendars.dll", - "ref/netcoreapp2.0/System.Globalization.Calendars.xml", - "ref/netcoreapp2.0/System.Globalization.Extensions.dll", - "ref/netcoreapp2.0/System.Globalization.Extensions.xml", - "ref/netcoreapp2.0/System.Globalization.dll", - "ref/netcoreapp2.0/System.Globalization.xml", - "ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll", - "ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll", - "ref/netcoreapp2.0/System.IO.Compression.ZipFile.xml", - "ref/netcoreapp2.0/System.IO.Compression.dll", - "ref/netcoreapp2.0/System.IO.Compression.xml", - "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll", - "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.xml", - "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll", - "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.xml", - "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll", - "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.xml", - "ref/netcoreapp2.0/System.IO.FileSystem.dll", - "ref/netcoreapp2.0/System.IO.FileSystem.xml", - "ref/netcoreapp2.0/System.IO.IsolatedStorage.dll", - "ref/netcoreapp2.0/System.IO.IsolatedStorage.xml", - "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll", - "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.xml", - "ref/netcoreapp2.0/System.IO.Pipes.dll", - "ref/netcoreapp2.0/System.IO.Pipes.xml", - "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll", - "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.xml", - "ref/netcoreapp2.0/System.IO.dll", - "ref/netcoreapp2.0/System.IO.xml", - "ref/netcoreapp2.0/System.Linq.Expressions.dll", - "ref/netcoreapp2.0/System.Linq.Expressions.xml", - "ref/netcoreapp2.0/System.Linq.Parallel.dll", - "ref/netcoreapp2.0/System.Linq.Parallel.xml", - "ref/netcoreapp2.0/System.Linq.Queryable.dll", - "ref/netcoreapp2.0/System.Linq.Queryable.xml", - "ref/netcoreapp2.0/System.Linq.dll", - "ref/netcoreapp2.0/System.Linq.xml", - "ref/netcoreapp2.0/System.Net.Http.dll", - "ref/netcoreapp2.0/System.Net.Http.xml", - "ref/netcoreapp2.0/System.Net.HttpListener.dll", - "ref/netcoreapp2.0/System.Net.HttpListener.xml", - "ref/netcoreapp2.0/System.Net.Mail.dll", - "ref/netcoreapp2.0/System.Net.Mail.xml", - "ref/netcoreapp2.0/System.Net.NameResolution.dll", - "ref/netcoreapp2.0/System.Net.NameResolution.xml", - "ref/netcoreapp2.0/System.Net.NetworkInformation.dll", - "ref/netcoreapp2.0/System.Net.NetworkInformation.xml", - "ref/netcoreapp2.0/System.Net.Ping.dll", - "ref/netcoreapp2.0/System.Net.Ping.xml", - "ref/netcoreapp2.0/System.Net.Primitives.dll", - "ref/netcoreapp2.0/System.Net.Primitives.xml", - "ref/netcoreapp2.0/System.Net.Requests.dll", - "ref/netcoreapp2.0/System.Net.Requests.xml", - "ref/netcoreapp2.0/System.Net.Security.dll", - "ref/netcoreapp2.0/System.Net.Security.xml", - "ref/netcoreapp2.0/System.Net.ServicePoint.dll", - "ref/netcoreapp2.0/System.Net.ServicePoint.xml", - "ref/netcoreapp2.0/System.Net.Sockets.dll", - "ref/netcoreapp2.0/System.Net.Sockets.xml", - "ref/netcoreapp2.0/System.Net.WebClient.dll", - "ref/netcoreapp2.0/System.Net.WebClient.xml", - "ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll", - "ref/netcoreapp2.0/System.Net.WebHeaderCollection.xml", - "ref/netcoreapp2.0/System.Net.WebProxy.dll", - "ref/netcoreapp2.0/System.Net.WebProxy.xml", - "ref/netcoreapp2.0/System.Net.WebSockets.Client.dll", - "ref/netcoreapp2.0/System.Net.WebSockets.Client.xml", - "ref/netcoreapp2.0/System.Net.WebSockets.dll", - "ref/netcoreapp2.0/System.Net.WebSockets.xml", - "ref/netcoreapp2.0/System.Net.dll", - "ref/netcoreapp2.0/System.Numerics.Vectors.dll", - "ref/netcoreapp2.0/System.Numerics.Vectors.xml", - "ref/netcoreapp2.0/System.Numerics.dll", - "ref/netcoreapp2.0/System.ObjectModel.dll", - "ref/netcoreapp2.0/System.ObjectModel.xml", - "ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll", - "ref/netcoreapp2.0/System.Reflection.DispatchProxy.xml", - "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll", - "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.xml", - "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll", - "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.xml", - "ref/netcoreapp2.0/System.Reflection.Emit.dll", - "ref/netcoreapp2.0/System.Reflection.Emit.xml", - "ref/netcoreapp2.0/System.Reflection.Extensions.dll", - "ref/netcoreapp2.0/System.Reflection.Extensions.xml", - "ref/netcoreapp2.0/System.Reflection.Metadata.dll", - "ref/netcoreapp2.0/System.Reflection.Metadata.xml", - "ref/netcoreapp2.0/System.Reflection.Primitives.dll", - "ref/netcoreapp2.0/System.Reflection.Primitives.xml", - "ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll", - "ref/netcoreapp2.0/System.Reflection.TypeExtensions.xml", - "ref/netcoreapp2.0/System.Reflection.dll", - "ref/netcoreapp2.0/System.Reflection.xml", - "ref/netcoreapp2.0/System.Resources.Reader.dll", - "ref/netcoreapp2.0/System.Resources.Reader.xml", - "ref/netcoreapp2.0/System.Resources.ResourceManager.dll", - "ref/netcoreapp2.0/System.Resources.ResourceManager.xml", - "ref/netcoreapp2.0/System.Resources.Writer.dll", - "ref/netcoreapp2.0/System.Resources.Writer.xml", - "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll", - "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.xml", - "ref/netcoreapp2.0/System.Runtime.Extensions.dll", - "ref/netcoreapp2.0/System.Runtime.Extensions.xml", - "ref/netcoreapp2.0/System.Runtime.Handles.dll", - "ref/netcoreapp2.0/System.Runtime.Handles.xml", - "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.xml", - "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcoreapp2.0/System.Runtime.InteropServices.dll", - "ref/netcoreapp2.0/System.Runtime.InteropServices.xml", - "ref/netcoreapp2.0/System.Runtime.Loader.dll", - "ref/netcoreapp2.0/System.Runtime.Loader.xml", - "ref/netcoreapp2.0/System.Runtime.Numerics.dll", - "ref/netcoreapp2.0/System.Runtime.Numerics.xml", - "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll", - "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.xml", - "ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll", - "ref/netcoreapp2.0/System.Runtime.Serialization.Json.xml", - "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll", - "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.xml", - "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll", - "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.xml", - "ref/netcoreapp2.0/System.Runtime.Serialization.dll", - "ref/netcoreapp2.0/System.Runtime.dll", - "ref/netcoreapp2.0/System.Runtime.xml", - "ref/netcoreapp2.0/System.Security.Claims.dll", - "ref/netcoreapp2.0/System.Security.Claims.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Csp.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.xml", - "ref/netcoreapp2.0/System.Security.Principal.dll", - "ref/netcoreapp2.0/System.Security.Principal.xml", - "ref/netcoreapp2.0/System.Security.SecureString.dll", - "ref/netcoreapp2.0/System.Security.SecureString.xml", - "ref/netcoreapp2.0/System.Security.dll", - "ref/netcoreapp2.0/System.ServiceModel.Web.dll", - "ref/netcoreapp2.0/System.ServiceProcess.dll", - "ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll", - "ref/netcoreapp2.0/System.Text.Encoding.Extensions.xml", - "ref/netcoreapp2.0/System.Text.Encoding.dll", - "ref/netcoreapp2.0/System.Text.Encoding.xml", - "ref/netcoreapp2.0/System.Text.RegularExpressions.dll", - "ref/netcoreapp2.0/System.Text.RegularExpressions.xml", - "ref/netcoreapp2.0/System.Threading.Overlapped.dll", - "ref/netcoreapp2.0/System.Threading.Overlapped.xml", - "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll", - "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.xml", - "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll", - "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.xml", - "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll", - "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.xml", - "ref/netcoreapp2.0/System.Threading.Tasks.dll", - "ref/netcoreapp2.0/System.Threading.Tasks.xml", - "ref/netcoreapp2.0/System.Threading.Thread.dll", - "ref/netcoreapp2.0/System.Threading.Thread.xml", - "ref/netcoreapp2.0/System.Threading.ThreadPool.dll", - "ref/netcoreapp2.0/System.Threading.ThreadPool.xml", - "ref/netcoreapp2.0/System.Threading.Timer.dll", - "ref/netcoreapp2.0/System.Threading.Timer.xml", - "ref/netcoreapp2.0/System.Threading.dll", - "ref/netcoreapp2.0/System.Threading.xml", - "ref/netcoreapp2.0/System.Transactions.Local.dll", - "ref/netcoreapp2.0/System.Transactions.Local.xml", - "ref/netcoreapp2.0/System.Transactions.dll", - "ref/netcoreapp2.0/System.ValueTuple.dll", - "ref/netcoreapp2.0/System.ValueTuple.xml", - "ref/netcoreapp2.0/System.Web.HttpUtility.dll", - "ref/netcoreapp2.0/System.Web.HttpUtility.xml", - "ref/netcoreapp2.0/System.Web.dll", - "ref/netcoreapp2.0/System.Windows.dll", - "ref/netcoreapp2.0/System.Xml.Linq.dll", - "ref/netcoreapp2.0/System.Xml.ReaderWriter.dll", - "ref/netcoreapp2.0/System.Xml.ReaderWriter.xml", - "ref/netcoreapp2.0/System.Xml.Serialization.dll", - "ref/netcoreapp2.0/System.Xml.XDocument.dll", - "ref/netcoreapp2.0/System.Xml.XDocument.xml", - "ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll", - "ref/netcoreapp2.0/System.Xml.XPath.XDocument.xml", - "ref/netcoreapp2.0/System.Xml.XPath.dll", - "ref/netcoreapp2.0/System.Xml.XPath.xml", - "ref/netcoreapp2.0/System.Xml.XmlDocument.dll", - "ref/netcoreapp2.0/System.Xml.XmlDocument.xml", - "ref/netcoreapp2.0/System.Xml.XmlSerializer.dll", - "ref/netcoreapp2.0/System.Xml.XmlSerializer.xml", - "ref/netcoreapp2.0/System.Xml.dll", - "ref/netcoreapp2.0/System.dll", - "ref/netcoreapp2.0/WindowsBase.dll", - "ref/netcoreapp2.0/mscorlib.dll", - "ref/netcoreapp2.0/netstandard.dll", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetAppHost/2.0.0": { - "sha512": "L4GGkcI/Mxl8PKLRpFdGmLb5oI8sGIR05bDTGkzCoamAjdUl1Zhkov2swjEsZvKYT8kkdiz39LtwyGYuCJxm1A==", - "type": "package", - "path": "microsoft.netcore.dotnetapphost/2.0.0", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnetapphost.2.0.0.nupkg.sha512", - "microsoft.netcore.dotnetapphost.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetHostPolicy/2.0.0": { - "sha512": "rm7mMn0A93fwyAwVhbyOCcPuu2hZNL0A0dAur9sNG9pEkONPfCEQeF7m2mC8KpqZO0Ol6tpV5J0AF3HTXT3GXA==", - "type": "package", - "path": "microsoft.netcore.dotnethostpolicy/2.0.0", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnethostpolicy.2.0.0.nupkg.sha512", - "microsoft.netcore.dotnethostpolicy.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetHostResolver/2.0.0": { - "sha512": "uBbjpeSrwsaTCADZCzRk+3aBzNnMqkC4zftJWBsL+Zk+8u+W+/lMb2thM5Y4hiVrv1YQg9t6dKldXzOKkY+pQw==", - "type": "package", - "path": "microsoft.netcore.dotnethostresolver/2.0.0", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnethostresolver.2.0.0.nupkg.sha512", - "microsoft.netcore.dotnethostresolver.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Platforms/2.0.0": { - "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", - "type": "package", - "path": "microsoft.netcore.platforms/2.0.0", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.2.0.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "NETStandard.Library/2.0.0": { - "sha512": "7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==", - "type": "package", - "path": "netstandard.library/2.0.0", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "build/NETStandard.Library.targets", - "build/netstandard2.0/NETStandard.Library.targets", - "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", - "build/netstandard2.0/ref/System.AppContext.dll", - "build/netstandard2.0/ref/System.Collections.Concurrent.dll", - "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", - "build/netstandard2.0/ref/System.Collections.Specialized.dll", - "build/netstandard2.0/ref/System.Collections.dll", - "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", - "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", - "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", - "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", - "build/netstandard2.0/ref/System.ComponentModel.dll", - "build/netstandard2.0/ref/System.Console.dll", - "build/netstandard2.0/ref/System.Core.dll", - "build/netstandard2.0/ref/System.Data.Common.dll", - "build/netstandard2.0/ref/System.Data.dll", - "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", - "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", - "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", - "build/netstandard2.0/ref/System.Diagnostics.Process.dll", - "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", - "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", - "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", - "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", - "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", - "build/netstandard2.0/ref/System.Drawing.Primitives.dll", - "build/netstandard2.0/ref/System.Drawing.dll", - "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", - "build/netstandard2.0/ref/System.Globalization.Calendars.dll", - "build/netstandard2.0/ref/System.Globalization.Extensions.dll", - "build/netstandard2.0/ref/System.Globalization.dll", - "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", - "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", - "build/netstandard2.0/ref/System.IO.Compression.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.dll", - "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", - "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", - "build/netstandard2.0/ref/System.IO.Pipes.dll", - "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", - "build/netstandard2.0/ref/System.IO.dll", - "build/netstandard2.0/ref/System.Linq.Expressions.dll", - "build/netstandard2.0/ref/System.Linq.Parallel.dll", - "build/netstandard2.0/ref/System.Linq.Queryable.dll", - "build/netstandard2.0/ref/System.Linq.dll", - "build/netstandard2.0/ref/System.Net.Http.dll", - "build/netstandard2.0/ref/System.Net.NameResolution.dll", - "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", - "build/netstandard2.0/ref/System.Net.Ping.dll", - "build/netstandard2.0/ref/System.Net.Primitives.dll", - "build/netstandard2.0/ref/System.Net.Requests.dll", - "build/netstandard2.0/ref/System.Net.Security.dll", - "build/netstandard2.0/ref/System.Net.Sockets.dll", - "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", - "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", - "build/netstandard2.0/ref/System.Net.WebSockets.dll", - "build/netstandard2.0/ref/System.Net.dll", - "build/netstandard2.0/ref/System.Numerics.dll", - "build/netstandard2.0/ref/System.ObjectModel.dll", - "build/netstandard2.0/ref/System.Reflection.Extensions.dll", - "build/netstandard2.0/ref/System.Reflection.Primitives.dll", - "build/netstandard2.0/ref/System.Reflection.dll", - "build/netstandard2.0/ref/System.Resources.Reader.dll", - "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", - "build/netstandard2.0/ref/System.Resources.Writer.dll", - "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", - "build/netstandard2.0/ref/System.Runtime.Extensions.dll", - "build/netstandard2.0/ref/System.Runtime.Handles.dll", - "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", - "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", - "build/netstandard2.0/ref/System.Runtime.Numerics.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.dll", - "build/netstandard2.0/ref/System.Runtime.dll", - "build/netstandard2.0/ref/System.Security.Claims.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", - "build/netstandard2.0/ref/System.Security.Principal.dll", - "build/netstandard2.0/ref/System.Security.SecureString.dll", - "build/netstandard2.0/ref/System.ServiceModel.Web.dll", - "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", - "build/netstandard2.0/ref/System.Text.Encoding.dll", - "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", - "build/netstandard2.0/ref/System.Threading.Overlapped.dll", - "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", - "build/netstandard2.0/ref/System.Threading.Tasks.dll", - "build/netstandard2.0/ref/System.Threading.Thread.dll", - "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", - "build/netstandard2.0/ref/System.Threading.Timer.dll", - "build/netstandard2.0/ref/System.Threading.dll", - "build/netstandard2.0/ref/System.Transactions.dll", - "build/netstandard2.0/ref/System.ValueTuple.dll", - "build/netstandard2.0/ref/System.Web.dll", - "build/netstandard2.0/ref/System.Windows.dll", - "build/netstandard2.0/ref/System.Xml.Linq.dll", - "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", - "build/netstandard2.0/ref/System.Xml.Serialization.dll", - "build/netstandard2.0/ref/System.Xml.XDocument.dll", - "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", - "build/netstandard2.0/ref/System.Xml.XPath.dll", - "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", - "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", - "build/netstandard2.0/ref/System.Xml.dll", - "build/netstandard2.0/ref/System.dll", - "build/netstandard2.0/ref/mscorlib.dll", - "build/netstandard2.0/ref/netstandard.dll", - "build/netstandard2.0/ref/netstandard.xml", - "lib/netstandard1.0/_._", - "netstandard.library.2.0.0.nupkg.sha512", - "netstandard.library.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - ".NETCoreApp,Version=v2.0": [ - "Microsoft.NETCore.App >= 2.0.0" - ] - }, - "packageFolders": { - "C:\\Users\\rchande\\.nuget\\packages\\": {}, - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\omnisharp-vscode\\test\\integrationTests\\testAssets\\singleCsproj\\singleCsproj.csproj", - "projectName": "singleCsproj", - "projectPath": "C:\\omnisharp-vscode\\test\\integrationTests\\testAssets\\singleCsproj\\singleCsproj.csproj", - "packagesPath": "C:\\Users\\rchande\\.nuget\\packages\\", - "outputPath": "C:\\omnisharp-vscode\\test\\integrationTests\\testAssets\\singleCsproj\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\rchande\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp2.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp2.0": { - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp2.0": { - "dependencies": { - "Microsoft.NETCore.App": { - "target": "Package", - "version": "[2.0.0, )", - "autoReferenced": true - } - }, - "imports": [ - "net461" - ], - "assetTargetFallback": true, - "warn": true - } - } - } -} \ No newline at end of file diff --git a/test/integrationTests/testAssets/singleCsproj/obj/singleCsproj.csproj.nuget.cache b/test/integrationTests/testAssets/singleCsproj/obj/singleCsproj.csproj.nuget.cache deleted file mode 100644 index 13b7521606..0000000000 --- a/test/integrationTests/testAssets/singleCsproj/obj/singleCsproj.csproj.nuget.cache +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 1, - "dgSpecHash": "F/2npLNJmV62pdE6xnL6onDE/ZUOXXwAbeOh12Em+cH/3uZOrmJZgsI0iJtb+26OOF3cRtdrW33x5W5+YX4DVw==", - "success": true -} \ No newline at end of file diff --git a/test/integrationTests/testAssets/singleCsproj/obj/singleCsproj.csproj.nuget.g.props b/test/integrationTests/testAssets/singleCsproj/obj/singleCsproj.csproj.nuget.g.props deleted file mode 100644 index 9121422dc1..0000000000 --- a/test/integrationTests/testAssets/singleCsproj/obj/singleCsproj.csproj.nuget.g.props +++ /dev/null @@ -1,18 +0,0 @@ - - - - True - NuGet - C:\omnisharp-vscode\test\integrationTests\testAssets\singleCsproj\obj\project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\rchande\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder - PackageReference - 4.5.0 - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - \ No newline at end of file diff --git a/test/integrationTests/testAssets/singleCsproj/obj/singleCsproj.csproj.nuget.g.targets b/test/integrationTests/testAssets/singleCsproj/obj/singleCsproj.csproj.nuget.g.targets deleted file mode 100644 index 562d65f7dc..0000000000 --- a/test/integrationTests/testAssets/singleCsproj/obj/singleCsproj.csproj.nuget.g.targets +++ /dev/null @@ -1,10 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj.ts b/test/integrationTests/testAssets/slnWithCsproj.ts index ea68da1f28..86aa406c88 100644 --- a/test/integrationTests/testAssets/slnWithCsproj.ts +++ b/test/integrationTests/testAssets/slnWithCsproj.ts @@ -8,11 +8,11 @@ import { ITestAssetWorkspace } from "./testAssets"; let workspace: ITestAssetWorkspace = { description: "sln with several csproj's", projects: [{ - relativePath: "src/app/app.csproj" + relativeFilePath: "src/app/app.csproj" },{ - relativePath: "src/lib/lib.csproj" + relativeFilePath: "src/lib/lib.csproj" },{ - relativePath: "test/test.csproj" + relativeFilePath: "test/test.csproj" }] }; diff --git a/test/integrationTests/testAssets/slnWithCsproj/.gitignore b/test/integrationTests/testAssets/slnWithCsproj/.gitignore new file mode 100644 index 0000000000..3d2ce4e896 --- /dev/null +++ b/test/integrationTests/testAssets/slnWithCsproj/.gitignore @@ -0,0 +1,2 @@ +**/obj/ +**/bin/ \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/.vscode/settings.json b/test/integrationTests/testAssets/slnWithCsproj/.vscode/settings.json index 15054e3596..8879707722 100644 --- a/test/integrationTests/testAssets/slnWithCsproj/.vscode/settings.json +++ b/test/integrationTests/testAssets/slnWithCsproj/.vscode/settings.json @@ -1,3 +1,4 @@ { - "omnisharp.path": "latest" + "omnisharp.defaultLaunchSolution": "b_SecondInOrder_SlnFile.sln", + "omnisharp.path": "latest", } \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/slnWithCsproj.sln b/test/integrationTests/testAssets/slnWithCsproj/a_FirstInOrder_SlnFile.sln similarity index 96% rename from test/integrationTests/testAssets/slnWithCsproj/slnWithCsproj.sln rename to test/integrationTests/testAssets/slnWithCsproj/a_FirstInOrder_SlnFile.sln index 213e6c66b7..dc08b2ec74 100644 --- a/test/integrationTests/testAssets/slnWithCsproj/slnWithCsproj.sln +++ b/test/integrationTests/testAssets/slnWithCsproj/a_FirstInOrder_SlnFile.sln @@ -7,7 +7,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{D28FC441-C95 EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "app", "src\app\app.csproj", "{D36E1CC9-62CA-45A3-8BD0-6ADC2767FFB3}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "lib", "src\lib\lib.csproj", "{717BE881-D74C-45FC-B55D-2085499E1BF8}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "lib", "src\lib\lib.csproj", "{717BE881-D74C-45FC-B55D-2085499E1BF8}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "test", "test\test.csproj", "{4679428B-0CA0-4228-B8C0-B676B34A1B30}" EndProject diff --git a/test/integrationTests/testAssets/slnWithCsproj/b_SecondInOrder_SlnFile.sln b/test/integrationTests/testAssets/slnWithCsproj/b_SecondInOrder_SlnFile.sln new file mode 100644 index 0000000000..dc08b2ec74 --- /dev/null +++ b/test/integrationTests/testAssets/slnWithCsproj/b_SecondInOrder_SlnFile.sln @@ -0,0 +1,68 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26124.0 +MinimumVisualStudioVersion = 15.0.26124.0 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{D28FC441-C95D-47D2-8D5C-E401ABAD7C64}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "app", "src\app\app.csproj", "{D36E1CC9-62CA-45A3-8BD0-6ADC2767FFB3}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "lib", "src\lib\lib.csproj", "{717BE881-D74C-45FC-B55D-2085499E1BF8}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "test", "test\test.csproj", "{4679428B-0CA0-4228-B8C0-B676B34A1B30}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D36E1CC9-62CA-45A3-8BD0-6ADC2767FFB3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D36E1CC9-62CA-45A3-8BD0-6ADC2767FFB3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D36E1CC9-62CA-45A3-8BD0-6ADC2767FFB3}.Debug|x64.ActiveCfg = Debug|x64 + {D36E1CC9-62CA-45A3-8BD0-6ADC2767FFB3}.Debug|x64.Build.0 = Debug|x64 + {D36E1CC9-62CA-45A3-8BD0-6ADC2767FFB3}.Debug|x86.ActiveCfg = Debug|x86 + {D36E1CC9-62CA-45A3-8BD0-6ADC2767FFB3}.Debug|x86.Build.0 = Debug|x86 + {D36E1CC9-62CA-45A3-8BD0-6ADC2767FFB3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D36E1CC9-62CA-45A3-8BD0-6ADC2767FFB3}.Release|Any CPU.Build.0 = Release|Any CPU + {D36E1CC9-62CA-45A3-8BD0-6ADC2767FFB3}.Release|x64.ActiveCfg = Release|x64 + {D36E1CC9-62CA-45A3-8BD0-6ADC2767FFB3}.Release|x64.Build.0 = Release|x64 + {D36E1CC9-62CA-45A3-8BD0-6ADC2767FFB3}.Release|x86.ActiveCfg = Release|x86 + {D36E1CC9-62CA-45A3-8BD0-6ADC2767FFB3}.Release|x86.Build.0 = Release|x86 + {717BE881-D74C-45FC-B55D-2085499E1BF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {717BE881-D74C-45FC-B55D-2085499E1BF8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {717BE881-D74C-45FC-B55D-2085499E1BF8}.Debug|x64.ActiveCfg = Debug|x64 + {717BE881-D74C-45FC-B55D-2085499E1BF8}.Debug|x64.Build.0 = Debug|x64 + {717BE881-D74C-45FC-B55D-2085499E1BF8}.Debug|x86.ActiveCfg = Debug|x86 + {717BE881-D74C-45FC-B55D-2085499E1BF8}.Debug|x86.Build.0 = Debug|x86 + {717BE881-D74C-45FC-B55D-2085499E1BF8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {717BE881-D74C-45FC-B55D-2085499E1BF8}.Release|Any CPU.Build.0 = Release|Any CPU + {717BE881-D74C-45FC-B55D-2085499E1BF8}.Release|x64.ActiveCfg = Release|x64 + {717BE881-D74C-45FC-B55D-2085499E1BF8}.Release|x64.Build.0 = Release|x64 + {717BE881-D74C-45FC-B55D-2085499E1BF8}.Release|x86.ActiveCfg = Release|x86 + {717BE881-D74C-45FC-B55D-2085499E1BF8}.Release|x86.Build.0 = Release|x86 + {4679428B-0CA0-4228-B8C0-B676B34A1B30}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4679428B-0CA0-4228-B8C0-B676B34A1B30}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4679428B-0CA0-4228-B8C0-B676B34A1B30}.Debug|x64.ActiveCfg = Debug|x64 + {4679428B-0CA0-4228-B8C0-B676B34A1B30}.Debug|x64.Build.0 = Debug|x64 + {4679428B-0CA0-4228-B8C0-B676B34A1B30}.Debug|x86.ActiveCfg = Debug|x86 + {4679428B-0CA0-4228-B8C0-B676B34A1B30}.Debug|x86.Build.0 = Debug|x86 + {4679428B-0CA0-4228-B8C0-B676B34A1B30}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4679428B-0CA0-4228-B8C0-B676B34A1B30}.Release|Any CPU.Build.0 = Release|Any CPU + {4679428B-0CA0-4228-B8C0-B676B34A1B30}.Release|x64.ActiveCfg = Release|x64 + {4679428B-0CA0-4228-B8C0-B676B34A1B30}.Release|x64.Build.0 = Release|x64 + {4679428B-0CA0-4228-B8C0-B676B34A1B30}.Release|x86.ActiveCfg = Release|x86 + {4679428B-0CA0-4228-B8C0-B676B34A1B30}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {D36E1CC9-62CA-45A3-8BD0-6ADC2767FFB3} = {D28FC441-C95D-47D2-8D5C-E401ABAD7C64} + {717BE881-D74C-45FC-B55D-2085499E1BF8} = {D28FC441-C95D-47D2-8D5C-E401ABAD7C64} + EndGlobalSection +EndGlobal diff --git a/test/integrationTests/testAssets/slnWithCsproj/src/app/app.csproj b/test/integrationTests/testAssets/slnWithCsproj/src/app/app.csproj index 998c6a2eac..8e114e516f 100644 --- a/test/integrationTests/testAssets/slnWithCsproj/src/app/app.csproj +++ b/test/integrationTests/testAssets/slnWithCsproj/src/app/app.csproj @@ -1,9 +1,7 @@ - - - - - + + + Exe netcoreapp2.0 diff --git a/test/integrationTests/testAssets/slnWithCsproj/src/app/completion.cs b/test/integrationTests/testAssets/slnWithCsproj/src/app/completion.cs new file mode 100644 index 0000000000..715d21ebc7 --- /dev/null +++ b/test/integrationTests/testAssets/slnWithCsproj/src/app/completion.cs @@ -0,0 +1,12 @@ +using System; + +namespace singleCsproj +{ + class Completion + { + static void shouldHaveCompletions(string[] args) + { + Completion a = new Completion(); + } + } +} diff --git a/test/integrationTests/testAssets/slnWithCsproj/src/app/documentSymbols.cs b/test/integrationTests/testAssets/slnWithCsproj/src/app/documentSymbols.cs new file mode 100644 index 0000000000..74a5c3f093 --- /dev/null +++ b/test/integrationTests/testAssets/slnWithCsproj/src/app/documentSymbols.cs @@ -0,0 +1,57 @@ +using System; + +namespace Test +{ + class C + { + private int _f; + private int _f1, _f2; + + public C() {} + ~C() { } + + public void M1(int i, string s, params object[] args) + { + } + + public int P1 => 42; + public int P2 { get => 42; } + public int P3 { get { return 42; } } + + public int this[int index] => index++; + + public event EventHandler E1; + public event EventHandler E2, E3; + public event EventHandler E4 + { + add { } + remove { } + } + + public static bool operator ==(C c1, int i) { return true; } + + public static bool operator !=(C c1, int i) { return false; } + + public static implicit operator C(int i) { return null; } + + public static explicit operator int(C c1) { return 42 ; } + } + + struct S + { + } + + interface I + { + void M(); + } + + delegate void D(); + + enum E + { + One, + Two, + Three + } +} \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/src/app/implementation.cs b/test/integrationTests/testAssets/slnWithCsproj/src/app/implementation.cs new file mode 100644 index 0000000000..abddb3511e --- /dev/null +++ b/test/integrationTests/testAssets/slnWithCsproj/src/app/implementation.cs @@ -0,0 +1,7 @@ +using System; + +namespace minimal +{ + public class BaseClass {} + public class SomeClass : BaseClass {} +} \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/src/app/obj/app.csproj.nuget.cache b/test/integrationTests/testAssets/slnWithCsproj/src/app/obj/app.csproj.nuget.cache deleted file mode 100644 index 82b6ede62a..0000000000 --- a/test/integrationTests/testAssets/slnWithCsproj/src/app/obj/app.csproj.nuget.cache +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 1, - "dgSpecHash": "LtRbOANp61aGFLSYtqkHdimQE8PhWQFikqq6awdFvLYYWlsGOmoelJYSlZng7sN5owLFPWERZH/mdxVoNUvTlA==", - "success": true -} \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/src/app/obj/app.csproj.nuget.g.props b/test/integrationTests/testAssets/slnWithCsproj/src/app/obj/app.csproj.nuget.g.props deleted file mode 100644 index f19d2600ec..0000000000 --- a/test/integrationTests/testAssets/slnWithCsproj/src/app/obj/app.csproj.nuget.g.props +++ /dev/null @@ -1,18 +0,0 @@ - - - - True - NuGet - /Users/piotrp/code/github/piotrpMSFT/omnisharp-vscode/test/integrationTests/testAssets/slnWithCsproj/src/app/obj/project.assets.json - /Users/piotrp/code/github/piotrpMSFT/cli/.nuget/packages - /Users/piotrp/code/github/piotrpMSFT/cli/.nuget/packages;/usr/local/share/dotnet/sdk/NuGetFallbackFolder - PackageReference - 4.5.0 - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/src/app/obj/app.csproj.nuget.g.targets b/test/integrationTests/testAssets/slnWithCsproj/src/app/obj/app.csproj.nuget.g.targets deleted file mode 100644 index d0382bbdfe..0000000000 --- a/test/integrationTests/testAssets/slnWithCsproj/src/app/obj/app.csproj.nuget.g.targets +++ /dev/null @@ -1,10 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/src/app/obj/project.assets.json b/test/integrationTests/testAssets/slnWithCsproj/src/app/obj/project.assets.json deleted file mode 100644 index 0ad3d44a76..0000000000 --- a/test/integrationTests/testAssets/slnWithCsproj/src/app/obj/project.assets.json +++ /dev/null @@ -1,739 +0,0 @@ -{ - "version": 3, - "targets": { - ".NETCoreApp,Version=v2.0": { - "Microsoft.NETCore.App/2.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetHostPolicy": "2.0.0", - "Microsoft.NETCore.Platforms": "2.0.0", - "NETStandard.Library": "2.0.0" - }, - "compile": { - "ref/netcoreapp2.0/Microsoft.CSharp.dll": {}, - "ref/netcoreapp2.0/Microsoft.VisualBasic.dll": {}, - "ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll": {}, - "ref/netcoreapp2.0/System.AppContext.dll": {}, - "ref/netcoreapp2.0/System.Buffers.dll": {}, - "ref/netcoreapp2.0/System.Collections.Concurrent.dll": {}, - "ref/netcoreapp2.0/System.Collections.Immutable.dll": {}, - "ref/netcoreapp2.0/System.Collections.NonGeneric.dll": {}, - "ref/netcoreapp2.0/System.Collections.Specialized.dll": {}, - "ref/netcoreapp2.0/System.Collections.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.Annotations.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.Composition.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.Primitives.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.dll": {}, - "ref/netcoreapp2.0/System.Configuration.dll": {}, - "ref/netcoreapp2.0/System.Console.dll": {}, - "ref/netcoreapp2.0/System.Core.dll": {}, - "ref/netcoreapp2.0/System.Data.Common.dll": {}, - "ref/netcoreapp2.0/System.Data.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.Contracts.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.Debug.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.Process.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.Tools.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.Tracing.dll": {}, - "ref/netcoreapp2.0/System.Drawing.Primitives.dll": {}, - "ref/netcoreapp2.0/System.Drawing.dll": {}, - "ref/netcoreapp2.0/System.Dynamic.Runtime.dll": {}, - "ref/netcoreapp2.0/System.Globalization.Calendars.dll": {}, - "ref/netcoreapp2.0/System.Globalization.Extensions.dll": {}, - "ref/netcoreapp2.0/System.Globalization.dll": {}, - "ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll": {}, - "ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll": {}, - "ref/netcoreapp2.0/System.IO.Compression.dll": {}, - "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll": {}, - "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll": {}, - "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll": {}, - "ref/netcoreapp2.0/System.IO.FileSystem.dll": {}, - "ref/netcoreapp2.0/System.IO.IsolatedStorage.dll": {}, - "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll": {}, - "ref/netcoreapp2.0/System.IO.Pipes.dll": {}, - "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll": {}, - "ref/netcoreapp2.0/System.IO.dll": {}, - "ref/netcoreapp2.0/System.Linq.Expressions.dll": {}, - "ref/netcoreapp2.0/System.Linq.Parallel.dll": {}, - "ref/netcoreapp2.0/System.Linq.Queryable.dll": {}, - "ref/netcoreapp2.0/System.Linq.dll": {}, - "ref/netcoreapp2.0/System.Net.Http.dll": {}, - "ref/netcoreapp2.0/System.Net.HttpListener.dll": {}, - "ref/netcoreapp2.0/System.Net.Mail.dll": {}, - "ref/netcoreapp2.0/System.Net.NameResolution.dll": {}, - "ref/netcoreapp2.0/System.Net.NetworkInformation.dll": {}, - "ref/netcoreapp2.0/System.Net.Ping.dll": {}, - "ref/netcoreapp2.0/System.Net.Primitives.dll": {}, - "ref/netcoreapp2.0/System.Net.Requests.dll": {}, - "ref/netcoreapp2.0/System.Net.Security.dll": {}, - "ref/netcoreapp2.0/System.Net.ServicePoint.dll": {}, - "ref/netcoreapp2.0/System.Net.Sockets.dll": {}, - "ref/netcoreapp2.0/System.Net.WebClient.dll": {}, - "ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll": {}, - "ref/netcoreapp2.0/System.Net.WebProxy.dll": {}, - "ref/netcoreapp2.0/System.Net.WebSockets.Client.dll": {}, - "ref/netcoreapp2.0/System.Net.WebSockets.dll": {}, - "ref/netcoreapp2.0/System.Net.dll": {}, - "ref/netcoreapp2.0/System.Numerics.Vectors.dll": {}, - "ref/netcoreapp2.0/System.Numerics.dll": {}, - "ref/netcoreapp2.0/System.ObjectModel.dll": {}, - "ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Emit.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Extensions.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Metadata.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Primitives.dll": {}, - "ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll": {}, - "ref/netcoreapp2.0/System.Reflection.dll": {}, - "ref/netcoreapp2.0/System.Resources.Reader.dll": {}, - "ref/netcoreapp2.0/System.Resources.ResourceManager.dll": {}, - "ref/netcoreapp2.0/System.Resources.Writer.dll": {}, - "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Extensions.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Handles.dll": {}, - "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll": {}, - "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll": {}, - "ref/netcoreapp2.0/System.Runtime.InteropServices.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Loader.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Numerics.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Serialization.dll": {}, - "ref/netcoreapp2.0/System.Runtime.dll": {}, - "ref/netcoreapp2.0/System.Security.Claims.dll": {}, - "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll": {}, - "ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll": {}, - "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll": {}, - "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll": {}, - "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll": {}, - "ref/netcoreapp2.0/System.Security.Principal.dll": {}, - "ref/netcoreapp2.0/System.Security.SecureString.dll": {}, - "ref/netcoreapp2.0/System.Security.dll": {}, - "ref/netcoreapp2.0/System.ServiceModel.Web.dll": {}, - "ref/netcoreapp2.0/System.ServiceProcess.dll": {}, - "ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll": {}, - "ref/netcoreapp2.0/System.Text.Encoding.dll": {}, - "ref/netcoreapp2.0/System.Text.RegularExpressions.dll": {}, - "ref/netcoreapp2.0/System.Threading.Overlapped.dll": {}, - "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll": {}, - "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll": {}, - "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll": {}, - "ref/netcoreapp2.0/System.Threading.Tasks.dll": {}, - "ref/netcoreapp2.0/System.Threading.Thread.dll": {}, - "ref/netcoreapp2.0/System.Threading.ThreadPool.dll": {}, - "ref/netcoreapp2.0/System.Threading.Timer.dll": {}, - "ref/netcoreapp2.0/System.Threading.dll": {}, - "ref/netcoreapp2.0/System.Transactions.Local.dll": {}, - "ref/netcoreapp2.0/System.Transactions.dll": {}, - "ref/netcoreapp2.0/System.ValueTuple.dll": {}, - "ref/netcoreapp2.0/System.Web.HttpUtility.dll": {}, - "ref/netcoreapp2.0/System.Web.dll": {}, - "ref/netcoreapp2.0/System.Windows.dll": {}, - "ref/netcoreapp2.0/System.Xml.Linq.dll": {}, - "ref/netcoreapp2.0/System.Xml.ReaderWriter.dll": {}, - "ref/netcoreapp2.0/System.Xml.Serialization.dll": {}, - "ref/netcoreapp2.0/System.Xml.XDocument.dll": {}, - "ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll": {}, - "ref/netcoreapp2.0/System.Xml.XPath.dll": {}, - "ref/netcoreapp2.0/System.Xml.XmlDocument.dll": {}, - "ref/netcoreapp2.0/System.Xml.XmlSerializer.dll": {}, - "ref/netcoreapp2.0/System.Xml.dll": {}, - "ref/netcoreapp2.0/System.dll": {}, - "ref/netcoreapp2.0/WindowsBase.dll": {}, - "ref/netcoreapp2.0/mscorlib.dll": {}, - "ref/netcoreapp2.0/netstandard.dll": {} - }, - "build": { - "build/netcoreapp2.0/Microsoft.NETCore.App.props": {}, - "build/netcoreapp2.0/Microsoft.NETCore.App.targets": {} - } - }, - "Microsoft.NETCore.DotNetAppHost/2.0.0": { - "type": "package" - }, - "Microsoft.NETCore.DotNetHostPolicy/2.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetHostResolver": "2.0.0" - } - }, - "Microsoft.NETCore.DotNetHostResolver/2.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetAppHost": "2.0.0" - } - }, - "Microsoft.NETCore.Platforms/2.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "NETStandard.Library/2.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - }, - "build": { - "build/netstandard2.0/NETStandard.Library.targets": {} - } - }, - "lib/1.0.0": { - "type": "project", - "framework": ".NETStandard,Version=v2.0", - "compile": { - "bin/placeholder/lib.dll": {} - }, - "runtime": { - "bin/placeholder/lib.dll": {} - } - } - } - }, - "libraries": { - "Microsoft.NETCore.App/2.0.0": { - "sha512": "u30D3okjSE34FaNeF45fQn0pEe4HTfd5jIKpyun0DD9TK7G8WC4/xLn0ZjbHT/nvWznayTl36J2X2rT8tjx+Dw==", - "type": "package", - "path": "microsoft.netcore.app/2.0.0", - "files": [ - "LICENSE.TXT", - "Microsoft.NETCore.App.versions.txt", - "THIRD-PARTY-NOTICES.TXT", - "build/netcoreapp2.0/Microsoft.NETCore.App.PlatformManifest.txt", - "build/netcoreapp2.0/Microsoft.NETCore.App.props", - "build/netcoreapp2.0/Microsoft.NETCore.App.targets", - "microsoft.netcore.app.2.0.0.nupkg.sha512", - "microsoft.netcore.app.nuspec", - "ref/netcoreapp/_._", - "ref/netcoreapp2.0/Microsoft.CSharp.dll", - "ref/netcoreapp2.0/Microsoft.CSharp.xml", - "ref/netcoreapp2.0/Microsoft.VisualBasic.dll", - "ref/netcoreapp2.0/Microsoft.VisualBasic.xml", - "ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll", - "ref/netcoreapp2.0/Microsoft.Win32.Primitives.xml", - "ref/netcoreapp2.0/System.AppContext.dll", - "ref/netcoreapp2.0/System.AppContext.xml", - "ref/netcoreapp2.0/System.Buffers.dll", - "ref/netcoreapp2.0/System.Buffers.xml", - "ref/netcoreapp2.0/System.Collections.Concurrent.dll", - "ref/netcoreapp2.0/System.Collections.Concurrent.xml", - "ref/netcoreapp2.0/System.Collections.Immutable.dll", - "ref/netcoreapp2.0/System.Collections.Immutable.xml", - "ref/netcoreapp2.0/System.Collections.NonGeneric.dll", - "ref/netcoreapp2.0/System.Collections.NonGeneric.xml", - "ref/netcoreapp2.0/System.Collections.Specialized.dll", - "ref/netcoreapp2.0/System.Collections.Specialized.xml", - "ref/netcoreapp2.0/System.Collections.dll", - "ref/netcoreapp2.0/System.Collections.xml", - "ref/netcoreapp2.0/System.ComponentModel.Annotations.dll", - "ref/netcoreapp2.0/System.ComponentModel.Annotations.xml", - "ref/netcoreapp2.0/System.ComponentModel.Composition.dll", - "ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll", - "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll", - "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.xml", - "ref/netcoreapp2.0/System.ComponentModel.Primitives.dll", - "ref/netcoreapp2.0/System.ComponentModel.Primitives.xml", - "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll", - "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.xml", - "ref/netcoreapp2.0/System.ComponentModel.dll", - "ref/netcoreapp2.0/System.ComponentModel.xml", - "ref/netcoreapp2.0/System.Configuration.dll", - "ref/netcoreapp2.0/System.Console.dll", - "ref/netcoreapp2.0/System.Console.xml", - "ref/netcoreapp2.0/System.Core.dll", - "ref/netcoreapp2.0/System.Data.Common.dll", - "ref/netcoreapp2.0/System.Data.Common.xml", - "ref/netcoreapp2.0/System.Data.dll", - "ref/netcoreapp2.0/System.Diagnostics.Contracts.dll", - "ref/netcoreapp2.0/System.Diagnostics.Contracts.xml", - "ref/netcoreapp2.0/System.Diagnostics.Debug.dll", - "ref/netcoreapp2.0/System.Diagnostics.Debug.xml", - "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll", - "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.xml", - "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll", - "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.xml", - "ref/netcoreapp2.0/System.Diagnostics.Process.dll", - "ref/netcoreapp2.0/System.Diagnostics.Process.xml", - "ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll", - "ref/netcoreapp2.0/System.Diagnostics.StackTrace.xml", - "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll", - "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netcoreapp2.0/System.Diagnostics.Tools.dll", - "ref/netcoreapp2.0/System.Diagnostics.Tools.xml", - "ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll", - "ref/netcoreapp2.0/System.Diagnostics.TraceSource.xml", - "ref/netcoreapp2.0/System.Diagnostics.Tracing.dll", - "ref/netcoreapp2.0/System.Diagnostics.Tracing.xml", - "ref/netcoreapp2.0/System.Drawing.Primitives.dll", - "ref/netcoreapp2.0/System.Drawing.Primitives.xml", - "ref/netcoreapp2.0/System.Drawing.dll", - "ref/netcoreapp2.0/System.Dynamic.Runtime.dll", - "ref/netcoreapp2.0/System.Dynamic.Runtime.xml", - "ref/netcoreapp2.0/System.Globalization.Calendars.dll", - "ref/netcoreapp2.0/System.Globalization.Calendars.xml", - "ref/netcoreapp2.0/System.Globalization.Extensions.dll", - "ref/netcoreapp2.0/System.Globalization.Extensions.xml", - "ref/netcoreapp2.0/System.Globalization.dll", - "ref/netcoreapp2.0/System.Globalization.xml", - "ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll", - "ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll", - "ref/netcoreapp2.0/System.IO.Compression.ZipFile.xml", - "ref/netcoreapp2.0/System.IO.Compression.dll", - "ref/netcoreapp2.0/System.IO.Compression.xml", - "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll", - "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.xml", - "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll", - "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.xml", - "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll", - "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.xml", - "ref/netcoreapp2.0/System.IO.FileSystem.dll", - "ref/netcoreapp2.0/System.IO.FileSystem.xml", - "ref/netcoreapp2.0/System.IO.IsolatedStorage.dll", - "ref/netcoreapp2.0/System.IO.IsolatedStorage.xml", - "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll", - "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.xml", - "ref/netcoreapp2.0/System.IO.Pipes.dll", - "ref/netcoreapp2.0/System.IO.Pipes.xml", - "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll", - "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.xml", - "ref/netcoreapp2.0/System.IO.dll", - "ref/netcoreapp2.0/System.IO.xml", - "ref/netcoreapp2.0/System.Linq.Expressions.dll", - "ref/netcoreapp2.0/System.Linq.Expressions.xml", - "ref/netcoreapp2.0/System.Linq.Parallel.dll", - "ref/netcoreapp2.0/System.Linq.Parallel.xml", - "ref/netcoreapp2.0/System.Linq.Queryable.dll", - "ref/netcoreapp2.0/System.Linq.Queryable.xml", - "ref/netcoreapp2.0/System.Linq.dll", - "ref/netcoreapp2.0/System.Linq.xml", - "ref/netcoreapp2.0/System.Net.Http.dll", - "ref/netcoreapp2.0/System.Net.Http.xml", - "ref/netcoreapp2.0/System.Net.HttpListener.dll", - "ref/netcoreapp2.0/System.Net.HttpListener.xml", - "ref/netcoreapp2.0/System.Net.Mail.dll", - "ref/netcoreapp2.0/System.Net.Mail.xml", - "ref/netcoreapp2.0/System.Net.NameResolution.dll", - "ref/netcoreapp2.0/System.Net.NameResolution.xml", - "ref/netcoreapp2.0/System.Net.NetworkInformation.dll", - "ref/netcoreapp2.0/System.Net.NetworkInformation.xml", - "ref/netcoreapp2.0/System.Net.Ping.dll", - "ref/netcoreapp2.0/System.Net.Ping.xml", - "ref/netcoreapp2.0/System.Net.Primitives.dll", - "ref/netcoreapp2.0/System.Net.Primitives.xml", - "ref/netcoreapp2.0/System.Net.Requests.dll", - "ref/netcoreapp2.0/System.Net.Requests.xml", - "ref/netcoreapp2.0/System.Net.Security.dll", - "ref/netcoreapp2.0/System.Net.Security.xml", - "ref/netcoreapp2.0/System.Net.ServicePoint.dll", - "ref/netcoreapp2.0/System.Net.ServicePoint.xml", - "ref/netcoreapp2.0/System.Net.Sockets.dll", - "ref/netcoreapp2.0/System.Net.Sockets.xml", - "ref/netcoreapp2.0/System.Net.WebClient.dll", - "ref/netcoreapp2.0/System.Net.WebClient.xml", - "ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll", - "ref/netcoreapp2.0/System.Net.WebHeaderCollection.xml", - "ref/netcoreapp2.0/System.Net.WebProxy.dll", - "ref/netcoreapp2.0/System.Net.WebProxy.xml", - "ref/netcoreapp2.0/System.Net.WebSockets.Client.dll", - "ref/netcoreapp2.0/System.Net.WebSockets.Client.xml", - "ref/netcoreapp2.0/System.Net.WebSockets.dll", - "ref/netcoreapp2.0/System.Net.WebSockets.xml", - "ref/netcoreapp2.0/System.Net.dll", - "ref/netcoreapp2.0/System.Numerics.Vectors.dll", - "ref/netcoreapp2.0/System.Numerics.Vectors.xml", - "ref/netcoreapp2.0/System.Numerics.dll", - "ref/netcoreapp2.0/System.ObjectModel.dll", - "ref/netcoreapp2.0/System.ObjectModel.xml", - "ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll", - "ref/netcoreapp2.0/System.Reflection.DispatchProxy.xml", - "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll", - "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.xml", - "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll", - "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.xml", - "ref/netcoreapp2.0/System.Reflection.Emit.dll", - "ref/netcoreapp2.0/System.Reflection.Emit.xml", - "ref/netcoreapp2.0/System.Reflection.Extensions.dll", - "ref/netcoreapp2.0/System.Reflection.Extensions.xml", - "ref/netcoreapp2.0/System.Reflection.Metadata.dll", - "ref/netcoreapp2.0/System.Reflection.Metadata.xml", - "ref/netcoreapp2.0/System.Reflection.Primitives.dll", - "ref/netcoreapp2.0/System.Reflection.Primitives.xml", - "ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll", - "ref/netcoreapp2.0/System.Reflection.TypeExtensions.xml", - "ref/netcoreapp2.0/System.Reflection.dll", - "ref/netcoreapp2.0/System.Reflection.xml", - "ref/netcoreapp2.0/System.Resources.Reader.dll", - "ref/netcoreapp2.0/System.Resources.Reader.xml", - "ref/netcoreapp2.0/System.Resources.ResourceManager.dll", - "ref/netcoreapp2.0/System.Resources.ResourceManager.xml", - "ref/netcoreapp2.0/System.Resources.Writer.dll", - "ref/netcoreapp2.0/System.Resources.Writer.xml", - "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll", - "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.xml", - "ref/netcoreapp2.0/System.Runtime.Extensions.dll", - "ref/netcoreapp2.0/System.Runtime.Extensions.xml", - "ref/netcoreapp2.0/System.Runtime.Handles.dll", - "ref/netcoreapp2.0/System.Runtime.Handles.xml", - "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.xml", - "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcoreapp2.0/System.Runtime.InteropServices.dll", - "ref/netcoreapp2.0/System.Runtime.InteropServices.xml", - "ref/netcoreapp2.0/System.Runtime.Loader.dll", - "ref/netcoreapp2.0/System.Runtime.Loader.xml", - "ref/netcoreapp2.0/System.Runtime.Numerics.dll", - "ref/netcoreapp2.0/System.Runtime.Numerics.xml", - "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll", - "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.xml", - "ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll", - "ref/netcoreapp2.0/System.Runtime.Serialization.Json.xml", - "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll", - "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.xml", - "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll", - "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.xml", - "ref/netcoreapp2.0/System.Runtime.Serialization.dll", - "ref/netcoreapp2.0/System.Runtime.dll", - "ref/netcoreapp2.0/System.Runtime.xml", - "ref/netcoreapp2.0/System.Security.Claims.dll", - "ref/netcoreapp2.0/System.Security.Claims.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Csp.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.xml", - "ref/netcoreapp2.0/System.Security.Principal.dll", - "ref/netcoreapp2.0/System.Security.Principal.xml", - "ref/netcoreapp2.0/System.Security.SecureString.dll", - "ref/netcoreapp2.0/System.Security.SecureString.xml", - "ref/netcoreapp2.0/System.Security.dll", - "ref/netcoreapp2.0/System.ServiceModel.Web.dll", - "ref/netcoreapp2.0/System.ServiceProcess.dll", - "ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll", - "ref/netcoreapp2.0/System.Text.Encoding.Extensions.xml", - "ref/netcoreapp2.0/System.Text.Encoding.dll", - "ref/netcoreapp2.0/System.Text.Encoding.xml", - "ref/netcoreapp2.0/System.Text.RegularExpressions.dll", - "ref/netcoreapp2.0/System.Text.RegularExpressions.xml", - "ref/netcoreapp2.0/System.Threading.Overlapped.dll", - "ref/netcoreapp2.0/System.Threading.Overlapped.xml", - "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll", - "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.xml", - "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll", - "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.xml", - "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll", - "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.xml", - "ref/netcoreapp2.0/System.Threading.Tasks.dll", - "ref/netcoreapp2.0/System.Threading.Tasks.xml", - "ref/netcoreapp2.0/System.Threading.Thread.dll", - "ref/netcoreapp2.0/System.Threading.Thread.xml", - "ref/netcoreapp2.0/System.Threading.ThreadPool.dll", - "ref/netcoreapp2.0/System.Threading.ThreadPool.xml", - "ref/netcoreapp2.0/System.Threading.Timer.dll", - "ref/netcoreapp2.0/System.Threading.Timer.xml", - "ref/netcoreapp2.0/System.Threading.dll", - "ref/netcoreapp2.0/System.Threading.xml", - "ref/netcoreapp2.0/System.Transactions.Local.dll", - "ref/netcoreapp2.0/System.Transactions.Local.xml", - "ref/netcoreapp2.0/System.Transactions.dll", - "ref/netcoreapp2.0/System.ValueTuple.dll", - "ref/netcoreapp2.0/System.ValueTuple.xml", - "ref/netcoreapp2.0/System.Web.HttpUtility.dll", - "ref/netcoreapp2.0/System.Web.HttpUtility.xml", - "ref/netcoreapp2.0/System.Web.dll", - "ref/netcoreapp2.0/System.Windows.dll", - "ref/netcoreapp2.0/System.Xml.Linq.dll", - "ref/netcoreapp2.0/System.Xml.ReaderWriter.dll", - "ref/netcoreapp2.0/System.Xml.ReaderWriter.xml", - "ref/netcoreapp2.0/System.Xml.Serialization.dll", - "ref/netcoreapp2.0/System.Xml.XDocument.dll", - "ref/netcoreapp2.0/System.Xml.XDocument.xml", - "ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll", - "ref/netcoreapp2.0/System.Xml.XPath.XDocument.xml", - "ref/netcoreapp2.0/System.Xml.XPath.dll", - "ref/netcoreapp2.0/System.Xml.XPath.xml", - "ref/netcoreapp2.0/System.Xml.XmlDocument.dll", - "ref/netcoreapp2.0/System.Xml.XmlDocument.xml", - "ref/netcoreapp2.0/System.Xml.XmlSerializer.dll", - "ref/netcoreapp2.0/System.Xml.XmlSerializer.xml", - "ref/netcoreapp2.0/System.Xml.dll", - "ref/netcoreapp2.0/System.dll", - "ref/netcoreapp2.0/WindowsBase.dll", - "ref/netcoreapp2.0/mscorlib.dll", - "ref/netcoreapp2.0/netstandard.dll", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetAppHost/2.0.0": { - "sha512": "YPFCzBe0Rh1wMZcJvbKfDMC2ARi7vPeeTcDcsf2m91Bs6NorZHiCQWznBcZqxnyq9WvkHDpgrS2yNiD5NkvLLQ==", - "type": "package", - "path": "microsoft.netcore.dotnetapphost/2.0.0", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnetapphost.2.0.0.nupkg.sha512", - "microsoft.netcore.dotnetapphost.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetHostPolicy/2.0.0": { - "sha512": "rm7mMn0A93fwyAwVhbyOCcPuu2hZNL0A0dAur9sNG9pEkONPfCEQeF7m2mC8KpqZO0Ol6tpV5J0AF3HTXT3GXA==", - "type": "package", - "path": "microsoft.netcore.dotnethostpolicy/2.0.0", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnethostpolicy.2.0.0.nupkg.sha512", - "microsoft.netcore.dotnethostpolicy.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetHostResolver/2.0.0": { - "sha512": "uBbjpeSrwsaTCADZCzRk+3aBzNnMqkC4zftJWBsL+Zk+8u+W+/lMb2thM5Y4hiVrv1YQg9t6dKldXzOKkY+pQw==", - "type": "package", - "path": "microsoft.netcore.dotnethostresolver/2.0.0", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnethostresolver.2.0.0.nupkg.sha512", - "microsoft.netcore.dotnethostresolver.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Platforms/2.0.0": { - "sha512": "uh69u8rko8LLHnhuBkDxIpsj/GR8VWJhCUK5WziNhrsGmOCfmuFyhjHnYXZL4w6HMHmkkE822K09GovUVpJkdQ==", - "type": "package", - "path": "microsoft.netcore.platforms/2.0.0", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.2.0.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "NETStandard.Library/2.0.0": { - "sha512": "mXtiDxroMxIxZXC07aA40ZvsjLawxCUpcu8ap/TLE8RzzXaeamhNkinkPLf5JPio4TA2r3anFSpQ14ZmG5QdhA==", - "type": "package", - "path": "netstandard.library/2.0.0", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "build/NETStandard.Library.targets", - "build/netstandard2.0/NETStandard.Library.targets", - "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", - "build/netstandard2.0/ref/System.AppContext.dll", - "build/netstandard2.0/ref/System.Collections.Concurrent.dll", - "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", - "build/netstandard2.0/ref/System.Collections.Specialized.dll", - "build/netstandard2.0/ref/System.Collections.dll", - "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", - "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", - "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", - "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", - "build/netstandard2.0/ref/System.ComponentModel.dll", - "build/netstandard2.0/ref/System.Console.dll", - "build/netstandard2.0/ref/System.Core.dll", - "build/netstandard2.0/ref/System.Data.Common.dll", - "build/netstandard2.0/ref/System.Data.dll", - "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", - "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", - "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", - "build/netstandard2.0/ref/System.Diagnostics.Process.dll", - "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", - "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", - "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", - "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", - "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", - "build/netstandard2.0/ref/System.Drawing.Primitives.dll", - "build/netstandard2.0/ref/System.Drawing.dll", - "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", - "build/netstandard2.0/ref/System.Globalization.Calendars.dll", - "build/netstandard2.0/ref/System.Globalization.Extensions.dll", - "build/netstandard2.0/ref/System.Globalization.dll", - "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", - "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", - "build/netstandard2.0/ref/System.IO.Compression.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.dll", - "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", - "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", - "build/netstandard2.0/ref/System.IO.Pipes.dll", - "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", - "build/netstandard2.0/ref/System.IO.dll", - "build/netstandard2.0/ref/System.Linq.Expressions.dll", - "build/netstandard2.0/ref/System.Linq.Parallel.dll", - "build/netstandard2.0/ref/System.Linq.Queryable.dll", - "build/netstandard2.0/ref/System.Linq.dll", - "build/netstandard2.0/ref/System.Net.Http.dll", - "build/netstandard2.0/ref/System.Net.NameResolution.dll", - "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", - "build/netstandard2.0/ref/System.Net.Ping.dll", - "build/netstandard2.0/ref/System.Net.Primitives.dll", - "build/netstandard2.0/ref/System.Net.Requests.dll", - "build/netstandard2.0/ref/System.Net.Security.dll", - "build/netstandard2.0/ref/System.Net.Sockets.dll", - "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", - "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", - "build/netstandard2.0/ref/System.Net.WebSockets.dll", - "build/netstandard2.0/ref/System.Net.dll", - "build/netstandard2.0/ref/System.Numerics.dll", - "build/netstandard2.0/ref/System.ObjectModel.dll", - "build/netstandard2.0/ref/System.Reflection.Extensions.dll", - "build/netstandard2.0/ref/System.Reflection.Primitives.dll", - "build/netstandard2.0/ref/System.Reflection.dll", - "build/netstandard2.0/ref/System.Resources.Reader.dll", - "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", - "build/netstandard2.0/ref/System.Resources.Writer.dll", - "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", - "build/netstandard2.0/ref/System.Runtime.Extensions.dll", - "build/netstandard2.0/ref/System.Runtime.Handles.dll", - "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", - "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", - "build/netstandard2.0/ref/System.Runtime.Numerics.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.dll", - "build/netstandard2.0/ref/System.Runtime.dll", - "build/netstandard2.0/ref/System.Security.Claims.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", - "build/netstandard2.0/ref/System.Security.Principal.dll", - "build/netstandard2.0/ref/System.Security.SecureString.dll", - "build/netstandard2.0/ref/System.ServiceModel.Web.dll", - "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", - "build/netstandard2.0/ref/System.Text.Encoding.dll", - "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", - "build/netstandard2.0/ref/System.Threading.Overlapped.dll", - "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", - "build/netstandard2.0/ref/System.Threading.Tasks.dll", - "build/netstandard2.0/ref/System.Threading.Thread.dll", - "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", - "build/netstandard2.0/ref/System.Threading.Timer.dll", - "build/netstandard2.0/ref/System.Threading.dll", - "build/netstandard2.0/ref/System.Transactions.dll", - "build/netstandard2.0/ref/System.ValueTuple.dll", - "build/netstandard2.0/ref/System.Web.dll", - "build/netstandard2.0/ref/System.Windows.dll", - "build/netstandard2.0/ref/System.Xml.Linq.dll", - "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", - "build/netstandard2.0/ref/System.Xml.Serialization.dll", - "build/netstandard2.0/ref/System.Xml.XDocument.dll", - "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", - "build/netstandard2.0/ref/System.Xml.XPath.dll", - "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", - "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", - "build/netstandard2.0/ref/System.Xml.dll", - "build/netstandard2.0/ref/System.dll", - "build/netstandard2.0/ref/mscorlib.dll", - "build/netstandard2.0/ref/netstandard.dll", - "build/netstandard2.0/ref/netstandard.xml", - "lib/netstandard1.0/_._", - "netstandard.library.2.0.0.nupkg.sha512", - "netstandard.library.nuspec" - ] - }, - "lib/1.0.0": { - "type": "project", - "path": "../lib/lib.csproj", - "msbuildProject": "../lib/lib.csproj" - } - }, - "projectFileDependencyGroups": { - ".NETCoreApp,Version=v2.0": [ - "Microsoft.NETCore.App >= 2.0.0", - "lib >= 1.0.0" - ] - }, - "packageFolders": { - "/Users/piotrp/code/github/piotrpMSFT/cli/.nuget/packages": {}, - "/usr/local/share/dotnet/sdk/NuGetFallbackFolder": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "/Users/piotrp/code/github/piotrpMSFT/omnisharp-vscode/test/integrationTests/testAssets/slnWithCsproj/src/app/app.csproj", - "projectName": "app", - "projectPath": "/Users/piotrp/code/github/piotrpMSFT/omnisharp-vscode/test/integrationTests/testAssets/slnWithCsproj/src/app/app.csproj", - "packagesPath": "/Users/piotrp/code/github/piotrpMSFT/cli/.nuget/packages", - "outputPath": "/Users/piotrp/code/github/piotrpMSFT/omnisharp-vscode/test/integrationTests/testAssets/slnWithCsproj/src/app/obj/", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "/usr/local/share/dotnet/sdk/NuGetFallbackFolder" - ], - "configFilePaths": [ - "/Users/piotrp/.nuget/NuGet/NuGet.Config" - ], - "originalTargetFrameworks": [ - "netcoreapp2.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp2.0": { - "projectReferences": { - "/Users/piotrp/code/github/piotrpMSFT/omnisharp-vscode/test/integrationTests/testAssets/slnWithCsproj/src/lib/lib.csproj": { - "projectPath": "/Users/piotrp/code/github/piotrpMSFT/omnisharp-vscode/test/integrationTests/testAssets/slnWithCsproj/src/lib/lib.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp2.0": { - "dependencies": { - "Microsoft.NETCore.App": { - "target": "Package", - "version": "[2.0.0, )", - "autoReferenced": true - } - }, - "imports": [ - "net461" - ], - "assetTargetFallback": true, - "warn": true - } - } - } -} \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/src/lib/obj/lib.csproj.nuget.cache b/test/integrationTests/testAssets/slnWithCsproj/src/lib/obj/lib.csproj.nuget.cache deleted file mode 100644 index 768c86650c..0000000000 --- a/test/integrationTests/testAssets/slnWithCsproj/src/lib/obj/lib.csproj.nuget.cache +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 1, - "dgSpecHash": "t4DdcVkUL77aJkipLzM05OZ6SGKs+aEGz66aPk7/Vmr/RTjuHhKs7tZvWUxVpiI58vpqwsOdF3OsUYKAOssOlg==", - "success": true -} \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/src/lib/obj/lib.csproj.nuget.g.props b/test/integrationTests/testAssets/slnWithCsproj/src/lib/obj/lib.csproj.nuget.g.props deleted file mode 100644 index 22ffac8d65..0000000000 --- a/test/integrationTests/testAssets/slnWithCsproj/src/lib/obj/lib.csproj.nuget.g.props +++ /dev/null @@ -1,15 +0,0 @@ - - - - True - NuGet - /Users/piotrp/code/github/piotrpMSFT/omnisharp-vscode/test/integrationTests/testAssets/slnWithCsproj/src/lib/obj/project.assets.json - /Users/piotrp/code/github/piotrpMSFT/cli/.nuget/packages - /Users/piotrp/code/github/piotrpMSFT/cli/.nuget/packages;/usr/local/share/dotnet/sdk/NuGetFallbackFolder - PackageReference - 4.5.0 - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/src/lib/obj/lib.csproj.nuget.g.targets b/test/integrationTests/testAssets/slnWithCsproj/src/lib/obj/lib.csproj.nuget.g.targets deleted file mode 100644 index da12295547..0000000000 --- a/test/integrationTests/testAssets/slnWithCsproj/src/lib/obj/lib.csproj.nuget.g.targets +++ /dev/null @@ -1,9 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/src/lib/obj/project.assets.json b/test/integrationTests/testAssets/slnWithCsproj/src/lib/obj/project.assets.json deleted file mode 100644 index 02ec8bf7d0..0000000000 --- a/test/integrationTests/testAssets/slnWithCsproj/src/lib/obj/project.assets.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "version": 3, - "targets": { - ".NETStandard,Version=v2.0": { - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "NETStandard.Library/2.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - }, - "build": { - "build/netstandard2.0/NETStandard.Library.targets": {} - } - } - } - }, - "libraries": { - "Microsoft.NETCore.Platforms/1.1.0": { - "sha512": "od/G9mrOomIisMb9OSHFhGi1Xi3aQRQX2hztHd5EJouGD0/95C9FevjukfZny1M455zXhwfpR8/+546vPLMvYg==", - "type": "package", - "path": "microsoft.netcore.platforms/1.1.0", - "files": [ - "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512", - "Microsoft.NETCore.Platforms.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.json" - ] - }, - "NETStandard.Library/2.0.1": { - "sha512": "oA6nwv9MhEKYvLpjZ0ggSpb1g4CQViDVQjLUcDWg598jtvJbpfeP2reqwI1GLW2TbxC/Ml7xL6BBR1HmKPXlTg==", - "type": "package", - "path": "netstandard.library/2.0.1", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "build/NETStandard.Library.targets", - "build/netstandard2.0/NETStandard.Library.targets", - "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", - "build/netstandard2.0/ref/System.AppContext.dll", - "build/netstandard2.0/ref/System.Collections.Concurrent.dll", - "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", - "build/netstandard2.0/ref/System.Collections.Specialized.dll", - "build/netstandard2.0/ref/System.Collections.dll", - "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", - "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", - "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", - "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", - "build/netstandard2.0/ref/System.ComponentModel.dll", - "build/netstandard2.0/ref/System.Console.dll", - "build/netstandard2.0/ref/System.Core.dll", - "build/netstandard2.0/ref/System.Data.Common.dll", - "build/netstandard2.0/ref/System.Data.dll", - "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", - "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", - "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", - "build/netstandard2.0/ref/System.Diagnostics.Process.dll", - "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", - "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", - "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", - "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", - "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", - "build/netstandard2.0/ref/System.Drawing.Primitives.dll", - "build/netstandard2.0/ref/System.Drawing.dll", - "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", - "build/netstandard2.0/ref/System.Globalization.Calendars.dll", - "build/netstandard2.0/ref/System.Globalization.Extensions.dll", - "build/netstandard2.0/ref/System.Globalization.dll", - "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", - "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", - "build/netstandard2.0/ref/System.IO.Compression.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.dll", - "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", - "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", - "build/netstandard2.0/ref/System.IO.Pipes.dll", - "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", - "build/netstandard2.0/ref/System.IO.dll", - "build/netstandard2.0/ref/System.Linq.Expressions.dll", - "build/netstandard2.0/ref/System.Linq.Parallel.dll", - "build/netstandard2.0/ref/System.Linq.Queryable.dll", - "build/netstandard2.0/ref/System.Linq.dll", - "build/netstandard2.0/ref/System.Net.Http.dll", - "build/netstandard2.0/ref/System.Net.NameResolution.dll", - "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", - "build/netstandard2.0/ref/System.Net.Ping.dll", - "build/netstandard2.0/ref/System.Net.Primitives.dll", - "build/netstandard2.0/ref/System.Net.Requests.dll", - "build/netstandard2.0/ref/System.Net.Security.dll", - "build/netstandard2.0/ref/System.Net.Sockets.dll", - "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", - "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", - "build/netstandard2.0/ref/System.Net.WebSockets.dll", - "build/netstandard2.0/ref/System.Net.dll", - "build/netstandard2.0/ref/System.Numerics.dll", - "build/netstandard2.0/ref/System.ObjectModel.dll", - "build/netstandard2.0/ref/System.Reflection.Extensions.dll", - "build/netstandard2.0/ref/System.Reflection.Primitives.dll", - "build/netstandard2.0/ref/System.Reflection.dll", - "build/netstandard2.0/ref/System.Resources.Reader.dll", - "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", - "build/netstandard2.0/ref/System.Resources.Writer.dll", - "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", - "build/netstandard2.0/ref/System.Runtime.Extensions.dll", - "build/netstandard2.0/ref/System.Runtime.Handles.dll", - "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", - "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", - "build/netstandard2.0/ref/System.Runtime.Numerics.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.dll", - "build/netstandard2.0/ref/System.Runtime.dll", - "build/netstandard2.0/ref/System.Security.Claims.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", - "build/netstandard2.0/ref/System.Security.Principal.dll", - "build/netstandard2.0/ref/System.Security.SecureString.dll", - "build/netstandard2.0/ref/System.ServiceModel.Web.dll", - "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", - "build/netstandard2.0/ref/System.Text.Encoding.dll", - "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", - "build/netstandard2.0/ref/System.Threading.Overlapped.dll", - "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", - "build/netstandard2.0/ref/System.Threading.Tasks.dll", - "build/netstandard2.0/ref/System.Threading.Thread.dll", - "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", - "build/netstandard2.0/ref/System.Threading.Timer.dll", - "build/netstandard2.0/ref/System.Threading.dll", - "build/netstandard2.0/ref/System.Transactions.dll", - "build/netstandard2.0/ref/System.ValueTuple.dll", - "build/netstandard2.0/ref/System.Web.dll", - "build/netstandard2.0/ref/System.Windows.dll", - "build/netstandard2.0/ref/System.Xml.Linq.dll", - "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", - "build/netstandard2.0/ref/System.Xml.Serialization.dll", - "build/netstandard2.0/ref/System.Xml.XDocument.dll", - "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", - "build/netstandard2.0/ref/System.Xml.XPath.dll", - "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", - "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", - "build/netstandard2.0/ref/System.Xml.dll", - "build/netstandard2.0/ref/System.dll", - "build/netstandard2.0/ref/mscorlib.dll", - "build/netstandard2.0/ref/netstandard.dll", - "build/netstandard2.0/ref/netstandard.xml", - "lib/netstandard1.0/_._", - "netstandard.library.2.0.1.nupkg.sha512", - "netstandard.library.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - ".NETStandard,Version=v2.0": [ - "NETStandard.Library >= 2.0.1" - ] - }, - "packageFolders": { - "/Users/piotrp/code/github/piotrpMSFT/cli/.nuget/packages": {}, - "/usr/local/share/dotnet/sdk/NuGetFallbackFolder": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "/Users/piotrp/code/github/piotrpMSFT/omnisharp-vscode/test/integrationTests/testAssets/slnWithCsproj/src/lib/lib.csproj", - "projectName": "lib", - "projectPath": "/Users/piotrp/code/github/piotrpMSFT/omnisharp-vscode/test/integrationTests/testAssets/slnWithCsproj/src/lib/lib.csproj", - "packagesPath": "/Users/piotrp/code/github/piotrpMSFT/cli/.nuget/packages", - "outputPath": "/Users/piotrp/code/github/piotrpMSFT/omnisharp-vscode/test/integrationTests/testAssets/slnWithCsproj/src/lib/obj/", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "/usr/local/share/dotnet/sdk/NuGetFallbackFolder" - ], - "configFilePaths": [ - "/Users/piotrp/.nuget/NuGet/NuGet.Config" - ], - "originalTargetFrameworks": [ - "netstandard2.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netstandard2.0": { - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netstandard2.0": { - "dependencies": { - "NETStandard.Library": { - "suppressParent": "All", - "target": "Package", - "version": "[2.0.1, )", - "autoReferenced": true - } - }, - "imports": [ - "net461" - ], - "assetTargetFallback": true, - "warn": true - } - } - } -} \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/test/obj/project.assets.json b/test/integrationTests/testAssets/slnWithCsproj/test/obj/project.assets.json deleted file mode 100644 index 9dc3422292..0000000000 --- a/test/integrationTests/testAssets/slnWithCsproj/test/obj/project.assets.json +++ /dev/null @@ -1,5683 +0,0 @@ -{ - "version": 3, - "targets": { - ".NETCoreApp,Version=v2.0": { - "Microsoft.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.DotNet.PlatformAbstractions/1.1.0": { - "type": "package", - "dependencies": { - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" - }, - "compile": { - "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {} - } - }, - "Microsoft.Extensions.DependencyModel/1.1.0": { - "type": "package", - "dependencies": { - "Microsoft.DotNet.PlatformAbstractions": "1.1.0", - "Newtonsoft.Json": "9.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Linq": "4.1.0" - }, - "compile": { - "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} - }, - "runtime": { - "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} - } - }, - "Microsoft.NET.Test.Sdk/15.3.0-preview-20170628-02": { - "type": "package", - "dependencies": { - "Microsoft.TestPlatform.TestHost": "15.3.0-preview-20170628-02" - }, - "build": { - "build/netcoreapp1.0/Microsoft.Net.Test.Sdk.props": {}, - "build/netcoreapp1.0/Microsoft.Net.Test.Sdk.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.Net.Test.Sdk.props": {} - } - }, - "Microsoft.NETCore.App/2.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetHostPolicy": "2.0.0", - "Microsoft.NETCore.Platforms": "2.0.0", - "NETStandard.Library": "2.0.0" - }, - "compile": { - "ref/netcoreapp2.0/Microsoft.CSharp.dll": {}, - "ref/netcoreapp2.0/Microsoft.VisualBasic.dll": {}, - "ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll": {}, - "ref/netcoreapp2.0/System.AppContext.dll": {}, - "ref/netcoreapp2.0/System.Buffers.dll": {}, - "ref/netcoreapp2.0/System.Collections.Concurrent.dll": {}, - "ref/netcoreapp2.0/System.Collections.Immutable.dll": {}, - "ref/netcoreapp2.0/System.Collections.NonGeneric.dll": {}, - "ref/netcoreapp2.0/System.Collections.Specialized.dll": {}, - "ref/netcoreapp2.0/System.Collections.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.Annotations.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.Composition.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.Primitives.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll": {}, - "ref/netcoreapp2.0/System.ComponentModel.dll": {}, - "ref/netcoreapp2.0/System.Configuration.dll": {}, - "ref/netcoreapp2.0/System.Console.dll": {}, - "ref/netcoreapp2.0/System.Core.dll": {}, - "ref/netcoreapp2.0/System.Data.Common.dll": {}, - "ref/netcoreapp2.0/System.Data.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.Contracts.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.Debug.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.Process.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.Tools.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll": {}, - "ref/netcoreapp2.0/System.Diagnostics.Tracing.dll": {}, - "ref/netcoreapp2.0/System.Drawing.Primitives.dll": {}, - "ref/netcoreapp2.0/System.Drawing.dll": {}, - "ref/netcoreapp2.0/System.Dynamic.Runtime.dll": {}, - "ref/netcoreapp2.0/System.Globalization.Calendars.dll": {}, - "ref/netcoreapp2.0/System.Globalization.Extensions.dll": {}, - "ref/netcoreapp2.0/System.Globalization.dll": {}, - "ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll": {}, - "ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll": {}, - "ref/netcoreapp2.0/System.IO.Compression.dll": {}, - "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll": {}, - "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll": {}, - "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll": {}, - "ref/netcoreapp2.0/System.IO.FileSystem.dll": {}, - "ref/netcoreapp2.0/System.IO.IsolatedStorage.dll": {}, - "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll": {}, - "ref/netcoreapp2.0/System.IO.Pipes.dll": {}, - "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll": {}, - "ref/netcoreapp2.0/System.IO.dll": {}, - "ref/netcoreapp2.0/System.Linq.Expressions.dll": {}, - "ref/netcoreapp2.0/System.Linq.Parallel.dll": {}, - "ref/netcoreapp2.0/System.Linq.Queryable.dll": {}, - "ref/netcoreapp2.0/System.Linq.dll": {}, - "ref/netcoreapp2.0/System.Net.Http.dll": {}, - "ref/netcoreapp2.0/System.Net.HttpListener.dll": {}, - "ref/netcoreapp2.0/System.Net.Mail.dll": {}, - "ref/netcoreapp2.0/System.Net.NameResolution.dll": {}, - "ref/netcoreapp2.0/System.Net.NetworkInformation.dll": {}, - "ref/netcoreapp2.0/System.Net.Ping.dll": {}, - "ref/netcoreapp2.0/System.Net.Primitives.dll": {}, - "ref/netcoreapp2.0/System.Net.Requests.dll": {}, - "ref/netcoreapp2.0/System.Net.Security.dll": {}, - "ref/netcoreapp2.0/System.Net.ServicePoint.dll": {}, - "ref/netcoreapp2.0/System.Net.Sockets.dll": {}, - "ref/netcoreapp2.0/System.Net.WebClient.dll": {}, - "ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll": {}, - "ref/netcoreapp2.0/System.Net.WebProxy.dll": {}, - "ref/netcoreapp2.0/System.Net.WebSockets.Client.dll": {}, - "ref/netcoreapp2.0/System.Net.WebSockets.dll": {}, - "ref/netcoreapp2.0/System.Net.dll": {}, - "ref/netcoreapp2.0/System.Numerics.Vectors.dll": {}, - "ref/netcoreapp2.0/System.Numerics.dll": {}, - "ref/netcoreapp2.0/System.ObjectModel.dll": {}, - "ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Emit.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Extensions.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Metadata.dll": {}, - "ref/netcoreapp2.0/System.Reflection.Primitives.dll": {}, - "ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll": {}, - "ref/netcoreapp2.0/System.Reflection.dll": {}, - "ref/netcoreapp2.0/System.Resources.Reader.dll": {}, - "ref/netcoreapp2.0/System.Resources.ResourceManager.dll": {}, - "ref/netcoreapp2.0/System.Resources.Writer.dll": {}, - "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Extensions.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Handles.dll": {}, - "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll": {}, - "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll": {}, - "ref/netcoreapp2.0/System.Runtime.InteropServices.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Loader.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Numerics.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll": {}, - "ref/netcoreapp2.0/System.Runtime.Serialization.dll": {}, - "ref/netcoreapp2.0/System.Runtime.dll": {}, - "ref/netcoreapp2.0/System.Security.Claims.dll": {}, - "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll": {}, - "ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll": {}, - "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll": {}, - "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll": {}, - "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll": {}, - "ref/netcoreapp2.0/System.Security.Principal.dll": {}, - "ref/netcoreapp2.0/System.Security.SecureString.dll": {}, - "ref/netcoreapp2.0/System.Security.dll": {}, - "ref/netcoreapp2.0/System.ServiceModel.Web.dll": {}, - "ref/netcoreapp2.0/System.ServiceProcess.dll": {}, - "ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll": {}, - "ref/netcoreapp2.0/System.Text.Encoding.dll": {}, - "ref/netcoreapp2.0/System.Text.RegularExpressions.dll": {}, - "ref/netcoreapp2.0/System.Threading.Overlapped.dll": {}, - "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll": {}, - "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll": {}, - "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll": {}, - "ref/netcoreapp2.0/System.Threading.Tasks.dll": {}, - "ref/netcoreapp2.0/System.Threading.Thread.dll": {}, - "ref/netcoreapp2.0/System.Threading.ThreadPool.dll": {}, - "ref/netcoreapp2.0/System.Threading.Timer.dll": {}, - "ref/netcoreapp2.0/System.Threading.dll": {}, - "ref/netcoreapp2.0/System.Transactions.Local.dll": {}, - "ref/netcoreapp2.0/System.Transactions.dll": {}, - "ref/netcoreapp2.0/System.ValueTuple.dll": {}, - "ref/netcoreapp2.0/System.Web.HttpUtility.dll": {}, - "ref/netcoreapp2.0/System.Web.dll": {}, - "ref/netcoreapp2.0/System.Windows.dll": {}, - "ref/netcoreapp2.0/System.Xml.Linq.dll": {}, - "ref/netcoreapp2.0/System.Xml.ReaderWriter.dll": {}, - "ref/netcoreapp2.0/System.Xml.Serialization.dll": {}, - "ref/netcoreapp2.0/System.Xml.XDocument.dll": {}, - "ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll": {}, - "ref/netcoreapp2.0/System.Xml.XPath.dll": {}, - "ref/netcoreapp2.0/System.Xml.XmlDocument.dll": {}, - "ref/netcoreapp2.0/System.Xml.XmlSerializer.dll": {}, - "ref/netcoreapp2.0/System.Xml.dll": {}, - "ref/netcoreapp2.0/System.dll": {}, - "ref/netcoreapp2.0/WindowsBase.dll": {}, - "ref/netcoreapp2.0/mscorlib.dll": {}, - "ref/netcoreapp2.0/netstandard.dll": {} - }, - "build": { - "build/netcoreapp2.0/Microsoft.NETCore.App.props": {}, - "build/netcoreapp2.0/Microsoft.NETCore.App.targets": {} - } - }, - "Microsoft.NETCore.DotNetAppHost/2.0.0": { - "type": "package" - }, - "Microsoft.NETCore.DotNetHostPolicy/2.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetHostResolver": "2.0.0" - } - }, - "Microsoft.NETCore.DotNetHostResolver/2.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetAppHost": "2.0.0" - } - }, - "Microsoft.NETCore.Platforms/2.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.TestPlatform.ObjectModel/15.3.0-preview-20170628-02": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.ComponentModel.EventBasedAsync": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Diagnostics.TextWriterTraceListener": "4.3.0", - "System.Diagnostics.TraceSource": "4.3.0", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Loader": "4.3.0", - "System.Runtime.Serialization.Json": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.0.1" - }, - "compile": { - "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "runtime": { - "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "resource": { - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/15.3.0-preview-20170628-02": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyModel": "1.0.3", - "Microsoft.TestPlatform.ObjectModel": "15.3.0-preview-20170628-02", - "Newtonsoft.Json": "9.0.1" - }, - "compile": { - "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netstandard1.5/testhost.dll": {} - }, - "runtime": { - "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netstandard1.5/testhost.dll": {} - }, - "resource": { - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "Microsoft.Win32.Registry/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "NETStandard.Library/2.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - }, - "build": { - "build/netstandard2.0/NETStandard.Library.targets": {} - } - }, - "Newtonsoft.Json/9.0.1": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" - }, - "compile": { - "lib/netstandard1.0/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/netstandard1.0/Newtonsoft.Json.dll": {} - } - }, - "runtime.native.System/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "System.AppContext/4.1.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.6/System.AppContext.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.AppContext.dll": {} - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.2.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "lib/netstandard1.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.3.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.Process/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "Microsoft.Win32.Registry": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Threading.ThreadPool": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Diagnostics.Process.dll": {} - }, - "runtimeTargets": { - "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": { - "assetType": "runtime", - "rid": "linux" - }, - "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.TextWriterTraceListener/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.TraceSource": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {} - } - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - } - }, - "System.Diagnostics.TraceSource/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": {} - } - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.dll": {} - } - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0", - "System.Xml.XmlDocument": "4.3.0", - "System.Xml.XmlSerializer": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.dll": {} - } - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Immutable": "1.2.0", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "lib/netstandard1.1/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Runtime.Loader/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Loader.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.Private.DataContractSerialization": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Thread.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Thread.dll": {} - } - }, - "System.Threading.ThreadPool/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} - } - }, - "System.Xml.XPath/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XPath.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.dll": {} - } - }, - "System.Xml.XPath.XmlDocument/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XPath": "4.0.1", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} - } - }, - "xunit/2.2.0": { - "type": "package", - "dependencies": { - "xunit.assert": "[2.2.0]", - "xunit.core": "[2.2.0]" - } - }, - "xunit.abstractions/2.0.1": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.0" - }, - "compile": { - "lib/netstandard1.0/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/netstandard1.0/xunit.abstractions.dll": {} - } - }, - "xunit.assert/2.2.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.0" - }, - "compile": { - "lib/netstandard1.1/xunit.assert.dll": {} - }, - "runtime": { - "lib/netstandard1.1/xunit.assert.dll": {} - } - }, - "xunit.core/2.2.0": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.2.0]", - "xunit.extensibility.execution": "[2.2.0]" - }, - "build": { - "build/netstandard1.0/_._": {} - } - }, - "xunit.extensibility.core/2.2.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.0", - "xunit.abstractions": "2.0.1" - }, - "compile": { - "lib/netstandard1.1/xunit.core.dll": {} - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.2.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.0", - "xunit.extensibility.core": "[2.2.0]" - }, - "compile": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": {} - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": {} - } - }, - "xunit.runner.visualstudio/2.2.0": { - "type": "package", - "dependencies": { - "Microsoft.DotNet.PlatformAbstractions": "1.1.0", - "Microsoft.Extensions.DependencyModel": "1.1.0", - "Microsoft.TestPlatform.ObjectModel": "11.0.0", - "NETStandard.Library": "1.6.0", - "System.Threading.ThreadPool": "4.0.10" - }, - "build": { - "build/netcoreapp1.0/xunit.runner.visualstudio.props": {} - } - } - } - }, - "libraries": { - "Microsoft.CSharp/4.0.1": { - "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", - "type": "package", - "path": "microsoft.csharp/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.0.1.nupkg.sha512", - "microsoft.csharp.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/netcore50/de/Microsoft.CSharp.xml", - "ref/netcore50/es/Microsoft.CSharp.xml", - "ref/netcore50/fr/Microsoft.CSharp.xml", - "ref/netcore50/it/Microsoft.CSharp.xml", - "ref/netcore50/ja/Microsoft.CSharp.xml", - "ref/netcore50/ko/Microsoft.CSharp.xml", - "ref/netcore50/ru/Microsoft.CSharp.xml", - "ref/netcore50/zh-hans/Microsoft.CSharp.xml", - "ref/netcore50/zh-hant/Microsoft.CSharp.xml", - "ref/netstandard1.0/Microsoft.CSharp.dll", - "ref/netstandard1.0/Microsoft.CSharp.xml", - "ref/netstandard1.0/de/Microsoft.CSharp.xml", - "ref/netstandard1.0/es/Microsoft.CSharp.xml", - "ref/netstandard1.0/fr/Microsoft.CSharp.xml", - "ref/netstandard1.0/it/Microsoft.CSharp.xml", - "ref/netstandard1.0/ja/Microsoft.CSharp.xml", - "ref/netstandard1.0/ko/Microsoft.CSharp.xml", - "ref/netstandard1.0/ru/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "Microsoft.DotNet.PlatformAbstractions/1.1.0": { - "sha512": "9C69QwEGETiA6iNVrtna3UejidfNE/pgk3Qh4VxCuxGOJS9BDQdFrRv0qCDzvXrU281b8BZZrsmw5+Uey8lQGg==", - "type": "package", - "path": "microsoft.dotnet.platformabstractions/1.1.0", - "files": [ - "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll", - "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll", - "microsoft.dotnet.platformabstractions.1.1.0.nupkg.sha512", - "microsoft.dotnet.platformabstractions.nuspec" - ] - }, - "Microsoft.Extensions.DependencyModel/1.1.0": { - "sha512": "80qr1itOqm2TTrQscA/p9T35eFEU2yO0jGlwxEfFpnxlIcvh0n9mxGkWyUp5pp2bvh7EfUz8w0OroIZxZ1fQ7Q==", - "type": "package", - "path": "microsoft.extensions.dependencymodel/1.1.0", - "files": [ - "lib/net451/Microsoft.Extensions.DependencyModel.dll", - "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", - "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", - "microsoft.extensions.dependencymodel.1.1.0.nupkg.sha512", - "microsoft.extensions.dependencymodel.nuspec" - ] - }, - "Microsoft.NET.Test.Sdk/15.3.0-preview-20170628-02": { - "sha512": "g5Ek236LaKEzPI13kK4c2wA8eaj44PfBucXRp/7FRBXpSbRqv/1McJcGOjDbs89d2dyeGLB6jGqSpQs3Y9Wh7w==", - "type": "package", - "path": "microsoft.net.test.sdk/15.3.0-preview-20170628-02", - "files": [ - "build/net45/Microsoft.Net.Test.Sdk.props", - "build/net45/Microsoft.Net.Test.Sdk.targets", - "build/netcoreapp1.0/Microsoft.Net.Test.Sdk.props", - "build/netcoreapp1.0/Microsoft.Net.Test.Sdk.targets", - "buildMultiTargeting/Microsoft.Net.Test.Sdk.props", - "microsoft.net.test.sdk.15.3.0-preview-20170628-02.nupkg.sha512", - "microsoft.net.test.sdk.nuspec" - ] - }, - "Microsoft.NETCore.App/2.0.0": { - "sha512": "u30D3okjSE34FaNeF45fQn0pEe4HTfd5jIKpyun0DD9TK7G8WC4/xLn0ZjbHT/nvWznayTl36J2X2rT8tjx+Dw==", - "type": "package", - "path": "microsoft.netcore.app/2.0.0", - "files": [ - "LICENSE.TXT", - "Microsoft.NETCore.App.versions.txt", - "THIRD-PARTY-NOTICES.TXT", - "build/netcoreapp2.0/Microsoft.NETCore.App.PlatformManifest.txt", - "build/netcoreapp2.0/Microsoft.NETCore.App.props", - "build/netcoreapp2.0/Microsoft.NETCore.App.targets", - "microsoft.netcore.app.2.0.0.nupkg.sha512", - "microsoft.netcore.app.nuspec", - "ref/netcoreapp/_._", - "ref/netcoreapp2.0/Microsoft.CSharp.dll", - "ref/netcoreapp2.0/Microsoft.CSharp.xml", - "ref/netcoreapp2.0/Microsoft.VisualBasic.dll", - "ref/netcoreapp2.0/Microsoft.VisualBasic.xml", - "ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll", - "ref/netcoreapp2.0/Microsoft.Win32.Primitives.xml", - "ref/netcoreapp2.0/System.AppContext.dll", - "ref/netcoreapp2.0/System.AppContext.xml", - "ref/netcoreapp2.0/System.Buffers.dll", - "ref/netcoreapp2.0/System.Buffers.xml", - "ref/netcoreapp2.0/System.Collections.Concurrent.dll", - "ref/netcoreapp2.0/System.Collections.Concurrent.xml", - "ref/netcoreapp2.0/System.Collections.Immutable.dll", - "ref/netcoreapp2.0/System.Collections.Immutable.xml", - "ref/netcoreapp2.0/System.Collections.NonGeneric.dll", - "ref/netcoreapp2.0/System.Collections.NonGeneric.xml", - "ref/netcoreapp2.0/System.Collections.Specialized.dll", - "ref/netcoreapp2.0/System.Collections.Specialized.xml", - "ref/netcoreapp2.0/System.Collections.dll", - "ref/netcoreapp2.0/System.Collections.xml", - "ref/netcoreapp2.0/System.ComponentModel.Annotations.dll", - "ref/netcoreapp2.0/System.ComponentModel.Annotations.xml", - "ref/netcoreapp2.0/System.ComponentModel.Composition.dll", - "ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll", - "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll", - "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.xml", - "ref/netcoreapp2.0/System.ComponentModel.Primitives.dll", - "ref/netcoreapp2.0/System.ComponentModel.Primitives.xml", - "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll", - "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.xml", - "ref/netcoreapp2.0/System.ComponentModel.dll", - "ref/netcoreapp2.0/System.ComponentModel.xml", - "ref/netcoreapp2.0/System.Configuration.dll", - "ref/netcoreapp2.0/System.Console.dll", - "ref/netcoreapp2.0/System.Console.xml", - "ref/netcoreapp2.0/System.Core.dll", - "ref/netcoreapp2.0/System.Data.Common.dll", - "ref/netcoreapp2.0/System.Data.Common.xml", - "ref/netcoreapp2.0/System.Data.dll", - "ref/netcoreapp2.0/System.Diagnostics.Contracts.dll", - "ref/netcoreapp2.0/System.Diagnostics.Contracts.xml", - "ref/netcoreapp2.0/System.Diagnostics.Debug.dll", - "ref/netcoreapp2.0/System.Diagnostics.Debug.xml", - "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll", - "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.xml", - "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll", - "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.xml", - "ref/netcoreapp2.0/System.Diagnostics.Process.dll", - "ref/netcoreapp2.0/System.Diagnostics.Process.xml", - "ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll", - "ref/netcoreapp2.0/System.Diagnostics.StackTrace.xml", - "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll", - "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netcoreapp2.0/System.Diagnostics.Tools.dll", - "ref/netcoreapp2.0/System.Diagnostics.Tools.xml", - "ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll", - "ref/netcoreapp2.0/System.Diagnostics.TraceSource.xml", - "ref/netcoreapp2.0/System.Diagnostics.Tracing.dll", - "ref/netcoreapp2.0/System.Diagnostics.Tracing.xml", - "ref/netcoreapp2.0/System.Drawing.Primitives.dll", - "ref/netcoreapp2.0/System.Drawing.Primitives.xml", - "ref/netcoreapp2.0/System.Drawing.dll", - "ref/netcoreapp2.0/System.Dynamic.Runtime.dll", - "ref/netcoreapp2.0/System.Dynamic.Runtime.xml", - "ref/netcoreapp2.0/System.Globalization.Calendars.dll", - "ref/netcoreapp2.0/System.Globalization.Calendars.xml", - "ref/netcoreapp2.0/System.Globalization.Extensions.dll", - "ref/netcoreapp2.0/System.Globalization.Extensions.xml", - "ref/netcoreapp2.0/System.Globalization.dll", - "ref/netcoreapp2.0/System.Globalization.xml", - "ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll", - "ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll", - "ref/netcoreapp2.0/System.IO.Compression.ZipFile.xml", - "ref/netcoreapp2.0/System.IO.Compression.dll", - "ref/netcoreapp2.0/System.IO.Compression.xml", - "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll", - "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.xml", - "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll", - "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.xml", - "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll", - "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.xml", - "ref/netcoreapp2.0/System.IO.FileSystem.dll", - "ref/netcoreapp2.0/System.IO.FileSystem.xml", - "ref/netcoreapp2.0/System.IO.IsolatedStorage.dll", - "ref/netcoreapp2.0/System.IO.IsolatedStorage.xml", - "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll", - "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.xml", - "ref/netcoreapp2.0/System.IO.Pipes.dll", - "ref/netcoreapp2.0/System.IO.Pipes.xml", - "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll", - "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.xml", - "ref/netcoreapp2.0/System.IO.dll", - "ref/netcoreapp2.0/System.IO.xml", - "ref/netcoreapp2.0/System.Linq.Expressions.dll", - "ref/netcoreapp2.0/System.Linq.Expressions.xml", - "ref/netcoreapp2.0/System.Linq.Parallel.dll", - "ref/netcoreapp2.0/System.Linq.Parallel.xml", - "ref/netcoreapp2.0/System.Linq.Queryable.dll", - "ref/netcoreapp2.0/System.Linq.Queryable.xml", - "ref/netcoreapp2.0/System.Linq.dll", - "ref/netcoreapp2.0/System.Linq.xml", - "ref/netcoreapp2.0/System.Net.Http.dll", - "ref/netcoreapp2.0/System.Net.Http.xml", - "ref/netcoreapp2.0/System.Net.HttpListener.dll", - "ref/netcoreapp2.0/System.Net.HttpListener.xml", - "ref/netcoreapp2.0/System.Net.Mail.dll", - "ref/netcoreapp2.0/System.Net.Mail.xml", - "ref/netcoreapp2.0/System.Net.NameResolution.dll", - "ref/netcoreapp2.0/System.Net.NameResolution.xml", - "ref/netcoreapp2.0/System.Net.NetworkInformation.dll", - "ref/netcoreapp2.0/System.Net.NetworkInformation.xml", - "ref/netcoreapp2.0/System.Net.Ping.dll", - "ref/netcoreapp2.0/System.Net.Ping.xml", - "ref/netcoreapp2.0/System.Net.Primitives.dll", - "ref/netcoreapp2.0/System.Net.Primitives.xml", - "ref/netcoreapp2.0/System.Net.Requests.dll", - "ref/netcoreapp2.0/System.Net.Requests.xml", - "ref/netcoreapp2.0/System.Net.Security.dll", - "ref/netcoreapp2.0/System.Net.Security.xml", - "ref/netcoreapp2.0/System.Net.ServicePoint.dll", - "ref/netcoreapp2.0/System.Net.ServicePoint.xml", - "ref/netcoreapp2.0/System.Net.Sockets.dll", - "ref/netcoreapp2.0/System.Net.Sockets.xml", - "ref/netcoreapp2.0/System.Net.WebClient.dll", - "ref/netcoreapp2.0/System.Net.WebClient.xml", - "ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll", - "ref/netcoreapp2.0/System.Net.WebHeaderCollection.xml", - "ref/netcoreapp2.0/System.Net.WebProxy.dll", - "ref/netcoreapp2.0/System.Net.WebProxy.xml", - "ref/netcoreapp2.0/System.Net.WebSockets.Client.dll", - "ref/netcoreapp2.0/System.Net.WebSockets.Client.xml", - "ref/netcoreapp2.0/System.Net.WebSockets.dll", - "ref/netcoreapp2.0/System.Net.WebSockets.xml", - "ref/netcoreapp2.0/System.Net.dll", - "ref/netcoreapp2.0/System.Numerics.Vectors.dll", - "ref/netcoreapp2.0/System.Numerics.Vectors.xml", - "ref/netcoreapp2.0/System.Numerics.dll", - "ref/netcoreapp2.0/System.ObjectModel.dll", - "ref/netcoreapp2.0/System.ObjectModel.xml", - "ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll", - "ref/netcoreapp2.0/System.Reflection.DispatchProxy.xml", - "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll", - "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.xml", - "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll", - "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.xml", - "ref/netcoreapp2.0/System.Reflection.Emit.dll", - "ref/netcoreapp2.0/System.Reflection.Emit.xml", - "ref/netcoreapp2.0/System.Reflection.Extensions.dll", - "ref/netcoreapp2.0/System.Reflection.Extensions.xml", - "ref/netcoreapp2.0/System.Reflection.Metadata.dll", - "ref/netcoreapp2.0/System.Reflection.Metadata.xml", - "ref/netcoreapp2.0/System.Reflection.Primitives.dll", - "ref/netcoreapp2.0/System.Reflection.Primitives.xml", - "ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll", - "ref/netcoreapp2.0/System.Reflection.TypeExtensions.xml", - "ref/netcoreapp2.0/System.Reflection.dll", - "ref/netcoreapp2.0/System.Reflection.xml", - "ref/netcoreapp2.0/System.Resources.Reader.dll", - "ref/netcoreapp2.0/System.Resources.Reader.xml", - "ref/netcoreapp2.0/System.Resources.ResourceManager.dll", - "ref/netcoreapp2.0/System.Resources.ResourceManager.xml", - "ref/netcoreapp2.0/System.Resources.Writer.dll", - "ref/netcoreapp2.0/System.Resources.Writer.xml", - "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll", - "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.xml", - "ref/netcoreapp2.0/System.Runtime.Extensions.dll", - "ref/netcoreapp2.0/System.Runtime.Extensions.xml", - "ref/netcoreapp2.0/System.Runtime.Handles.dll", - "ref/netcoreapp2.0/System.Runtime.Handles.xml", - "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.xml", - "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcoreapp2.0/System.Runtime.InteropServices.dll", - "ref/netcoreapp2.0/System.Runtime.InteropServices.xml", - "ref/netcoreapp2.0/System.Runtime.Loader.dll", - "ref/netcoreapp2.0/System.Runtime.Loader.xml", - "ref/netcoreapp2.0/System.Runtime.Numerics.dll", - "ref/netcoreapp2.0/System.Runtime.Numerics.xml", - "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll", - "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.xml", - "ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll", - "ref/netcoreapp2.0/System.Runtime.Serialization.Json.xml", - "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll", - "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.xml", - "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll", - "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.xml", - "ref/netcoreapp2.0/System.Runtime.Serialization.dll", - "ref/netcoreapp2.0/System.Runtime.dll", - "ref/netcoreapp2.0/System.Runtime.xml", - "ref/netcoreapp2.0/System.Security.Claims.dll", - "ref/netcoreapp2.0/System.Security.Claims.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Csp.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.xml", - "ref/netcoreapp2.0/System.Security.Principal.dll", - "ref/netcoreapp2.0/System.Security.Principal.xml", - "ref/netcoreapp2.0/System.Security.SecureString.dll", - "ref/netcoreapp2.0/System.Security.SecureString.xml", - "ref/netcoreapp2.0/System.Security.dll", - "ref/netcoreapp2.0/System.ServiceModel.Web.dll", - "ref/netcoreapp2.0/System.ServiceProcess.dll", - "ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll", - "ref/netcoreapp2.0/System.Text.Encoding.Extensions.xml", - "ref/netcoreapp2.0/System.Text.Encoding.dll", - "ref/netcoreapp2.0/System.Text.Encoding.xml", - "ref/netcoreapp2.0/System.Text.RegularExpressions.dll", - "ref/netcoreapp2.0/System.Text.RegularExpressions.xml", - "ref/netcoreapp2.0/System.Threading.Overlapped.dll", - "ref/netcoreapp2.0/System.Threading.Overlapped.xml", - "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll", - "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.xml", - "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll", - "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.xml", - "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll", - "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.xml", - "ref/netcoreapp2.0/System.Threading.Tasks.dll", - "ref/netcoreapp2.0/System.Threading.Tasks.xml", - "ref/netcoreapp2.0/System.Threading.Thread.dll", - "ref/netcoreapp2.0/System.Threading.Thread.xml", - "ref/netcoreapp2.0/System.Threading.ThreadPool.dll", - "ref/netcoreapp2.0/System.Threading.ThreadPool.xml", - "ref/netcoreapp2.0/System.Threading.Timer.dll", - "ref/netcoreapp2.0/System.Threading.Timer.xml", - "ref/netcoreapp2.0/System.Threading.dll", - "ref/netcoreapp2.0/System.Threading.xml", - "ref/netcoreapp2.0/System.Transactions.Local.dll", - "ref/netcoreapp2.0/System.Transactions.Local.xml", - "ref/netcoreapp2.0/System.Transactions.dll", - "ref/netcoreapp2.0/System.ValueTuple.dll", - "ref/netcoreapp2.0/System.ValueTuple.xml", - "ref/netcoreapp2.0/System.Web.HttpUtility.dll", - "ref/netcoreapp2.0/System.Web.HttpUtility.xml", - "ref/netcoreapp2.0/System.Web.dll", - "ref/netcoreapp2.0/System.Windows.dll", - "ref/netcoreapp2.0/System.Xml.Linq.dll", - "ref/netcoreapp2.0/System.Xml.ReaderWriter.dll", - "ref/netcoreapp2.0/System.Xml.ReaderWriter.xml", - "ref/netcoreapp2.0/System.Xml.Serialization.dll", - "ref/netcoreapp2.0/System.Xml.XDocument.dll", - "ref/netcoreapp2.0/System.Xml.XDocument.xml", - "ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll", - "ref/netcoreapp2.0/System.Xml.XPath.XDocument.xml", - "ref/netcoreapp2.0/System.Xml.XPath.dll", - "ref/netcoreapp2.0/System.Xml.XPath.xml", - "ref/netcoreapp2.0/System.Xml.XmlDocument.dll", - "ref/netcoreapp2.0/System.Xml.XmlDocument.xml", - "ref/netcoreapp2.0/System.Xml.XmlSerializer.dll", - "ref/netcoreapp2.0/System.Xml.XmlSerializer.xml", - "ref/netcoreapp2.0/System.Xml.dll", - "ref/netcoreapp2.0/System.dll", - "ref/netcoreapp2.0/WindowsBase.dll", - "ref/netcoreapp2.0/mscorlib.dll", - "ref/netcoreapp2.0/netstandard.dll", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetAppHost/2.0.0": { - "sha512": "YPFCzBe0Rh1wMZcJvbKfDMC2ARi7vPeeTcDcsf2m91Bs6NorZHiCQWznBcZqxnyq9WvkHDpgrS2yNiD5NkvLLQ==", - "type": "package", - "path": "microsoft.netcore.dotnetapphost/2.0.0", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnetapphost.2.0.0.nupkg.sha512", - "microsoft.netcore.dotnetapphost.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetHostPolicy/2.0.0": { - "sha512": "rm7mMn0A93fwyAwVhbyOCcPuu2hZNL0A0dAur9sNG9pEkONPfCEQeF7m2mC8KpqZO0Ol6tpV5J0AF3HTXT3GXA==", - "type": "package", - "path": "microsoft.netcore.dotnethostpolicy/2.0.0", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnethostpolicy.2.0.0.nupkg.sha512", - "microsoft.netcore.dotnethostpolicy.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetHostResolver/2.0.0": { - "sha512": "uBbjpeSrwsaTCADZCzRk+3aBzNnMqkC4zftJWBsL+Zk+8u+W+/lMb2thM5Y4hiVrv1YQg9t6dKldXzOKkY+pQw==", - "type": "package", - "path": "microsoft.netcore.dotnethostresolver/2.0.0", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnethostresolver.2.0.0.nupkg.sha512", - "microsoft.netcore.dotnethostresolver.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Platforms/2.0.0": { - "sha512": "uh69u8rko8LLHnhuBkDxIpsj/GR8VWJhCUK5WziNhrsGmOCfmuFyhjHnYXZL4w6HMHmkkE822K09GovUVpJkdQ==", - "type": "package", - "path": "microsoft.netcore.platforms/2.0.0", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.2.0.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.NETCore.Targets/1.1.0": { - "sha512": "u/lF4I9kZAuAF8+6QglH4th8+x8P+tTiEOnSmmPUT94LfeWY5OJ+DlKpU2rwL42Ewoq8g1XKDhfaUR2J+uJ79g==", - "type": "package", - "path": "microsoft.netcore.targets/1.1.0", - "files": [ - "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512", - "Microsoft.NETCore.Targets.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.json" - ] - }, - "Microsoft.TestPlatform.ObjectModel/15.3.0-preview-20170628-02": { - "sha512": "sHQinh69ZH2XjE6EBxolUiYKAGtdxd/XnVFVRiNNwaCury4dM26TxG1kzMRmrw4fXha1Z+y6usYUD73aZjSNYA==", - "type": "package", - "path": "microsoft.testplatform.objectmodel/15.3.0-preview-20170628-02", - "files": [ - "lib/net46/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net46/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net46/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net46/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net46/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net46/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net46/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net46/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net46/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net46/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net46/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net46/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net46/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net46/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net46/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net46/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net46/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net46/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net46/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net46/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net46/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net46/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net46/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net46/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net46/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net46/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net46/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net46/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net46/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard1.5/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "microsoft.testplatform.objectmodel.15.3.0-preview-20170628-02.nupkg.sha512", - "microsoft.testplatform.objectmodel.nuspec" - ] - }, - "Microsoft.TestPlatform.TestHost/15.3.0-preview-20170628-02": { - "sha512": "TxJWVRa+vctEzfhA9GQWGpzspi26a5A0krD5KcJYrZc8ymLMsgR1ChKeNuekUkEXn+5tTKyy4Qvg+nitb/uK/Q==", - "type": "package", - "path": "microsoft.testplatform.testhost/15.3.0-preview-20170628-02", - "files": [ - "ThirdPartyNotices.txt", - "lib/net45/_._", - "lib/netstandard1.5/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/netstandard1.5/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/netstandard1.5/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/testhost.deps.json", - "lib/netstandard1.5/testhost.dll", - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netstandard1.5/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "microsoft.testplatform.testhost.15.3.0-preview-20170628-02.nupkg.sha512", - "microsoft.testplatform.testhost.nuspec" - ] - }, - "Microsoft.Win32.Primitives/4.3.0": { - "sha512": "pYyB3Pg/rjEe0KqcOpphXccz25lg5nb7jd7ovmgVPQQO3vVTn5YDzqVcQ1kpvM+Y/u9pTzcTxEghYBXvucVzTw==", - "type": "package", - "path": "microsoft.win32.primitives/4.3.0", - "files": [ - "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512", - "Microsoft.Win32.Primitives.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "Microsoft.Win32.Registry/4.3.0": { - "sha512": "qMHGbnpj+Law3LGaj+YvhhuWvb4n0Lt3FtcFJ/yze6DRijZZWHOr16Ei6o6wQkn2P8REa+PZ9k/Q73okge9XaQ==", - "type": "package", - "path": "microsoft.win32.registry/4.3.0", - "files": [ - "Microsoft.Win32.Registry.4.3.0.nupkg.sha512", - "Microsoft.Win32.Registry.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/Microsoft.Win32.Registry.dll", - "ref/net46/Microsoft.Win32.Registry.dll", - "ref/netstandard1.3/Microsoft.Win32.Registry.dll", - "ref/netstandard1.3/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", - "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netcore50/_._", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll" - ] - }, - "NETStandard.Library/2.0.0": { - "sha512": "mXtiDxroMxIxZXC07aA40ZvsjLawxCUpcu8ap/TLE8RzzXaeamhNkinkPLf5JPio4TA2r3anFSpQ14ZmG5QdhA==", - "type": "package", - "path": "netstandard.library/2.0.0", - "files": [ - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "build/NETStandard.Library.targets", - "build/netstandard2.0/NETStandard.Library.targets", - "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", - "build/netstandard2.0/ref/System.AppContext.dll", - "build/netstandard2.0/ref/System.Collections.Concurrent.dll", - "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", - "build/netstandard2.0/ref/System.Collections.Specialized.dll", - "build/netstandard2.0/ref/System.Collections.dll", - "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", - "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", - "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", - "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", - "build/netstandard2.0/ref/System.ComponentModel.dll", - "build/netstandard2.0/ref/System.Console.dll", - "build/netstandard2.0/ref/System.Core.dll", - "build/netstandard2.0/ref/System.Data.Common.dll", - "build/netstandard2.0/ref/System.Data.dll", - "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", - "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", - "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", - "build/netstandard2.0/ref/System.Diagnostics.Process.dll", - "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", - "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", - "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", - "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", - "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", - "build/netstandard2.0/ref/System.Drawing.Primitives.dll", - "build/netstandard2.0/ref/System.Drawing.dll", - "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", - "build/netstandard2.0/ref/System.Globalization.Calendars.dll", - "build/netstandard2.0/ref/System.Globalization.Extensions.dll", - "build/netstandard2.0/ref/System.Globalization.dll", - "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", - "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", - "build/netstandard2.0/ref/System.IO.Compression.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.dll", - "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", - "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", - "build/netstandard2.0/ref/System.IO.Pipes.dll", - "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", - "build/netstandard2.0/ref/System.IO.dll", - "build/netstandard2.0/ref/System.Linq.Expressions.dll", - "build/netstandard2.0/ref/System.Linq.Parallel.dll", - "build/netstandard2.0/ref/System.Linq.Queryable.dll", - "build/netstandard2.0/ref/System.Linq.dll", - "build/netstandard2.0/ref/System.Net.Http.dll", - "build/netstandard2.0/ref/System.Net.NameResolution.dll", - "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", - "build/netstandard2.0/ref/System.Net.Ping.dll", - "build/netstandard2.0/ref/System.Net.Primitives.dll", - "build/netstandard2.0/ref/System.Net.Requests.dll", - "build/netstandard2.0/ref/System.Net.Security.dll", - "build/netstandard2.0/ref/System.Net.Sockets.dll", - "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", - "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", - "build/netstandard2.0/ref/System.Net.WebSockets.dll", - "build/netstandard2.0/ref/System.Net.dll", - "build/netstandard2.0/ref/System.Numerics.dll", - "build/netstandard2.0/ref/System.ObjectModel.dll", - "build/netstandard2.0/ref/System.Reflection.Extensions.dll", - "build/netstandard2.0/ref/System.Reflection.Primitives.dll", - "build/netstandard2.0/ref/System.Reflection.dll", - "build/netstandard2.0/ref/System.Resources.Reader.dll", - "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", - "build/netstandard2.0/ref/System.Resources.Writer.dll", - "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", - "build/netstandard2.0/ref/System.Runtime.Extensions.dll", - "build/netstandard2.0/ref/System.Runtime.Handles.dll", - "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", - "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", - "build/netstandard2.0/ref/System.Runtime.Numerics.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.dll", - "build/netstandard2.0/ref/System.Runtime.dll", - "build/netstandard2.0/ref/System.Security.Claims.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", - "build/netstandard2.0/ref/System.Security.Principal.dll", - "build/netstandard2.0/ref/System.Security.SecureString.dll", - "build/netstandard2.0/ref/System.ServiceModel.Web.dll", - "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", - "build/netstandard2.0/ref/System.Text.Encoding.dll", - "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", - "build/netstandard2.0/ref/System.Threading.Overlapped.dll", - "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", - "build/netstandard2.0/ref/System.Threading.Tasks.dll", - "build/netstandard2.0/ref/System.Threading.Thread.dll", - "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", - "build/netstandard2.0/ref/System.Threading.Timer.dll", - "build/netstandard2.0/ref/System.Threading.dll", - "build/netstandard2.0/ref/System.Transactions.dll", - "build/netstandard2.0/ref/System.ValueTuple.dll", - "build/netstandard2.0/ref/System.Web.dll", - "build/netstandard2.0/ref/System.Windows.dll", - "build/netstandard2.0/ref/System.Xml.Linq.dll", - "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", - "build/netstandard2.0/ref/System.Xml.Serialization.dll", - "build/netstandard2.0/ref/System.Xml.XDocument.dll", - "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", - "build/netstandard2.0/ref/System.Xml.XPath.dll", - "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", - "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", - "build/netstandard2.0/ref/System.Xml.dll", - "build/netstandard2.0/ref/System.dll", - "build/netstandard2.0/ref/mscorlib.dll", - "build/netstandard2.0/ref/netstandard.dll", - "build/netstandard2.0/ref/netstandard.xml", - "lib/netstandard1.0/_._", - "netstandard.library.2.0.0.nupkg.sha512", - "netstandard.library.nuspec" - ] - }, - "Newtonsoft.Json/9.0.1": { - "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==", - "type": "package", - "path": "newtonsoft.json/9.0.1", - "files": [ - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", - "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", - "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll", - "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml", - "newtonsoft.json.9.0.1.nupkg.sha512", - "newtonsoft.json.nuspec", - "tools/install.ps1" - ] - }, - "runtime.native.System/4.3.0": { - "sha512": "catARO44mcjyGUufOxanvv5eXDg06ewDGVR6VaViO3aPbiBh6bRs+ESwmrO01nRRyXBieLg12wX75MexeRZ7xA==", - "type": "package", - "path": "runtime.native.system/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.System.4.3.0.nupkg.sha512", - "runtime.native.System.nuspec" - ] - }, - "System.AppContext/4.1.0": { - "sha512": "9y0N8ZlBy8ikxXsumMHsoV3TrtozVecbcZ22JyVBWDj71YixZL7fIjXRaMSntzlcks3ueSqpZaCs2KSKtU/pTQ==", - "type": "package", - "path": "system.appcontext/4.1.0", - "files": [ - "System.AppContext.4.1.0.nupkg.sha512", - "System.AppContext.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/net463/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/netstandard1.6/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.AppContext.dll", - "ref/net463/System.AppContext.dll", - "ref/netstandard/_._", - "ref/netstandard1.3/System.AppContext.dll", - "ref/netstandard1.3/System.AppContext.xml", - "ref/netstandard1.3/de/System.AppContext.xml", - "ref/netstandard1.3/es/System.AppContext.xml", - "ref/netstandard1.3/fr/System.AppContext.xml", - "ref/netstandard1.3/it/System.AppContext.xml", - "ref/netstandard1.3/ja/System.AppContext.xml", - "ref/netstandard1.3/ko/System.AppContext.xml", - "ref/netstandard1.3/ru/System.AppContext.xml", - "ref/netstandard1.3/zh-hans/System.AppContext.xml", - "ref/netstandard1.3/zh-hant/System.AppContext.xml", - "ref/netstandard1.6/System.AppContext.dll", - "ref/netstandard1.6/System.AppContext.xml", - "ref/netstandard1.6/de/System.AppContext.xml", - "ref/netstandard1.6/es/System.AppContext.xml", - "ref/netstandard1.6/fr/System.AppContext.xml", - "ref/netstandard1.6/it/System.AppContext.xml", - "ref/netstandard1.6/ja/System.AppContext.xml", - "ref/netstandard1.6/ko/System.AppContext.xml", - "ref/netstandard1.6/ru/System.AppContext.xml", - "ref/netstandard1.6/zh-hans/System.AppContext.xml", - "ref/netstandard1.6/zh-hant/System.AppContext.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.AppContext.dll" - ] - }, - "System.Collections/4.3.0": { - "sha512": "YQ1B5vE49TzczJ0mik86Ypvb1JJrje+Pz4iYv1hYr2AMEOOT1oPds+KwjJ3kSjJlrxehyvw2ioa7L6jpprqihQ==", - "type": "package", - "path": "system.collections/4.3.0", - "files": [ - "System.Collections.4.3.0.nupkg.sha512", - "System.Collections.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "ref/netcore50/de/System.Collections.xml", - "ref/netcore50/es/System.Collections.xml", - "ref/netcore50/fr/System.Collections.xml", - "ref/netcore50/it/System.Collections.xml", - "ref/netcore50/ja/System.Collections.xml", - "ref/netcore50/ko/System.Collections.xml", - "ref/netcore50/ru/System.Collections.xml", - "ref/netcore50/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/netstandard1.0/System.Collections.dll", - "ref/netstandard1.0/System.Collections.xml", - "ref/netstandard1.0/de/System.Collections.xml", - "ref/netstandard1.0/es/System.Collections.xml", - "ref/netstandard1.0/fr/System.Collections.xml", - "ref/netstandard1.0/it/System.Collections.xml", - "ref/netstandard1.0/ja/System.Collections.xml", - "ref/netstandard1.0/ko/System.Collections.xml", - "ref/netstandard1.0/ru/System.Collections.xml", - "ref/netstandard1.0/zh-hans/System.Collections.xml", - "ref/netstandard1.0/zh-hant/System.Collections.xml", - "ref/netstandard1.3/System.Collections.dll", - "ref/netstandard1.3/System.Collections.xml", - "ref/netstandard1.3/de/System.Collections.xml", - "ref/netstandard1.3/es/System.Collections.xml", - "ref/netstandard1.3/fr/System.Collections.xml", - "ref/netstandard1.3/it/System.Collections.xml", - "ref/netstandard1.3/ja/System.Collections.xml", - "ref/netstandard1.3/ko/System.Collections.xml", - "ref/netstandard1.3/ru/System.Collections.xml", - "ref/netstandard1.3/zh-hans/System.Collections.xml", - "ref/netstandard1.3/zh-hant/System.Collections.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Collections.Concurrent/4.3.0": { - "sha512": "5gyplJVTtZ4jXBAgxR6AR6XNVWAWg9rWxOw9X75q5AAHtYJB/4Su+zU4wCH+Bru7lTbqsDvMzbi3vz5k0rSweg==", - "type": "package", - "path": "system.collections.concurrent/4.3.0", - "files": [ - "System.Collections.Concurrent.4.3.0.nupkg.sha512", - "System.Collections.Concurrent.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/netstandard1.3/System.Collections.Concurrent.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.1/System.Collections.Concurrent.dll", - "ref/netstandard1.1/System.Collections.Concurrent.xml", - "ref/netstandard1.1/de/System.Collections.Concurrent.xml", - "ref/netstandard1.1/es/System.Collections.Concurrent.xml", - "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.1/it/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.3/System.Collections.Concurrent.dll", - "ref/netstandard1.3/System.Collections.Concurrent.xml", - "ref/netstandard1.3/de/System.Collections.Concurrent.xml", - "ref/netstandard1.3/es/System.Collections.Concurrent.xml", - "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.3/it/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Collections.Immutable/1.2.0": { - "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==", - "type": "package", - "path": "system.collections.immutable/1.2.0", - "files": [ - "System.Collections.Immutable.1.2.0.nupkg.sha512", - "System.Collections.Immutable.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.0/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml" - ] - }, - "System.Collections.NonGeneric/4.3.0": { - "sha512": "1OqrwVzDNV6CkuaE5j/DqGeYLc6MTjdW+rGfpVVgfT4IRrvGzBsbzbClraI/47m3WgOxC5m10R6kdvxkjxplcQ==", - "type": "package", - "path": "system.collections.nongeneric/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.NonGeneric.dll", - "lib/netstandard1.3/System.Collections.NonGeneric.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.nongeneric.4.3.0.nupkg.sha512", - "system.collections.nongeneric.nuspec" - ] - }, - "System.Collections.Specialized/4.3.0": { - "sha512": "GWG1a+Wbi1ikpYZ99Fq4tNfqG7IhsDnDkNVzf5kBCDuT/cRjUzkQKq2xfHbqjow/mc8WV+M9yyGti95tiSpEtg==", - "type": "package", - "path": "system.collections.specialized/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.Specialized.dll", - "lib/netstandard1.3/System.Collections.Specialized.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.xml", - "ref/netstandard1.3/de/System.Collections.Specialized.xml", - "ref/netstandard1.3/es/System.Collections.Specialized.xml", - "ref/netstandard1.3/fr/System.Collections.Specialized.xml", - "ref/netstandard1.3/it/System.Collections.Specialized.xml", - "ref/netstandard1.3/ja/System.Collections.Specialized.xml", - "ref/netstandard1.3/ko/System.Collections.Specialized.xml", - "ref/netstandard1.3/ru/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.specialized.4.3.0.nupkg.sha512", - "system.collections.specialized.nuspec" - ] - }, - "System.ComponentModel/4.3.0": { - "sha512": "ydf+TG2BLEGVIuV5C8W8GC2lujn7vXycP/fcEJXGeaVsdpkQDDSmk2KyMIUT/FDKvUYV4ADhk895+YK8un1JHA==", - "type": "package", - "path": "system.componentmodel/4.3.0", - "files": [ - "System.ComponentModel.4.3.0.nupkg.sha512", - "System.ComponentModel.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/netstandard1.3/System.ComponentModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/netcore50/de/System.ComponentModel.xml", - "ref/netcore50/es/System.ComponentModel.xml", - "ref/netcore50/fr/System.ComponentModel.xml", - "ref/netcore50/it/System.ComponentModel.xml", - "ref/netcore50/ja/System.ComponentModel.xml", - "ref/netcore50/ko/System.ComponentModel.xml", - "ref/netcore50/ru/System.ComponentModel.xml", - "ref/netcore50/zh-hans/System.ComponentModel.xml", - "ref/netcore50/zh-hant/System.ComponentModel.xml", - "ref/netstandard1.0/System.ComponentModel.dll", - "ref/netstandard1.0/System.ComponentModel.xml", - "ref/netstandard1.0/de/System.ComponentModel.xml", - "ref/netstandard1.0/es/System.ComponentModel.xml", - "ref/netstandard1.0/fr/System.ComponentModel.xml", - "ref/netstandard1.0/it/System.ComponentModel.xml", - "ref/netstandard1.0/ja/System.ComponentModel.xml", - "ref/netstandard1.0/ko/System.ComponentModel.xml", - "ref/netstandard1.0/ru/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.ComponentModel.EventBasedAsync/4.3.0": { - "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==", - "type": "package", - "path": "system.componentmodel.eventbasedasync/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll", - "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll", - "ref/netcore50/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll", - "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512", - "system.componentmodel.eventbasedasync.nuspec" - ] - }, - "System.ComponentModel.Primitives/4.3.0": { - "sha512": "a6qryXisxsZy9/+HN/dlYvOPmeg6/cK7IF8zCMDzB+ceOoFMKOeUtIZm/AtuT8YDBfnqgzSt8CaSEq0ONGhowA==", - "type": "package", - "path": "system.componentmodel.primitives/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.Primitives.dll", - "lib/netstandard1.0/System.ComponentModel.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.primitives.4.3.0.nupkg.sha512", - "system.componentmodel.primitives.nuspec" - ] - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "sha512": "Fiv+edg14gLWBuXclCXQzPDzgcPnhfZHR/AsURM5d76CC/yxQykcDPJQixlUqDTa72vpEtzx5uJyF9CKxCQ2EQ==", - "type": "package", - "path": "system.componentmodel.typeconverter/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.TypeConverter.dll", - "lib/net462/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.TypeConverter.dll", - "ref/net462/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", - "system.componentmodel.typeconverter.nuspec" - ] - }, - "System.Diagnostics.Debug/4.3.0": { - "sha512": "3SgIFFKoOdlKBLklHi3mfVhHKvZaHx+MGoh5liGb9BxZg6+YBlwxmsZ8la0ubCWL3QdPsMy0VEds5nTmvLpmvQ==", - "type": "package", - "path": "system.diagnostics.debug/4.3.0", - "files": [ - "System.Diagnostics.Debug.4.3.0.nupkg.sha512", - "System.Diagnostics.Debug.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "ref/netcore50/de/System.Diagnostics.Debug.xml", - "ref/netcore50/es/System.Diagnostics.Debug.xml", - "ref/netcore50/fr/System.Diagnostics.Debug.xml", - "ref/netcore50/it/System.Diagnostics.Debug.xml", - "ref/netcore50/ja/System.Diagnostics.Debug.xml", - "ref/netcore50/ko/System.Diagnostics.Debug.xml", - "ref/netcore50/ru/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/System.Diagnostics.Debug.dll", - "ref/netstandard1.0/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/System.Diagnostics.Debug.dll", - "ref/netstandard1.3/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Diagnostics.Process/4.3.0": { - "sha512": "8fR+b8hi08MFrbA+XkBO6FVlIpoDl8MVxSWcKKBtl9CvLQcQvaN7jUny1Pmy64T/h92XKyU0piTEyxdM7XeCCw==", - "type": "package", - "path": "system.diagnostics.process/4.3.0", - "files": [ - "System.Diagnostics.Process.4.3.0.nupkg.sha512", - "System.Diagnostics.Process.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.Process.dll", - "lib/net461/System.Diagnostics.Process.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.Process.dll", - "ref/net461/System.Diagnostics.Process.dll", - "ref/netstandard1.3/System.Diagnostics.Process.dll", - "ref/netstandard1.3/System.Diagnostics.Process.xml", - "ref/netstandard1.3/de/System.Diagnostics.Process.xml", - "ref/netstandard1.3/es/System.Diagnostics.Process.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Process.xml", - "ref/netstandard1.3/it/System.Diagnostics.Process.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Process.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Process.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Process.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml", - "ref/netstandard1.4/System.Diagnostics.Process.dll", - "ref/netstandard1.4/System.Diagnostics.Process.xml", - "ref/netstandard1.4/de/System.Diagnostics.Process.xml", - "ref/netstandard1.4/es/System.Diagnostics.Process.xml", - "ref/netstandard1.4/fr/System.Diagnostics.Process.xml", - "ref/netstandard1.4/it/System.Diagnostics.Process.xml", - "ref/netstandard1.4/ja/System.Diagnostics.Process.xml", - "ref/netstandard1.4/ko/System.Diagnostics.Process.xml", - "ref/netstandard1.4/ru/System.Diagnostics.Process.xml", - "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml", - "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/win/lib/net46/System.Diagnostics.Process.dll", - "runtimes/win/lib/net461/System.Diagnostics.Process.dll", - "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", - "runtimes/win7/lib/netcore50/_._" - ] - }, - "System.Diagnostics.TextWriterTraceListener/4.3.0": { - "sha512": "F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==", - "type": "package", - "path": "system.diagnostics.textwritertracelistener/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.TextWriterTraceListener.dll", - "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.TextWriterTraceListener.dll", - "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll", - "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512", - "system.diagnostics.textwritertracelistener.nuspec" - ] - }, - "System.Diagnostics.Tools/4.3.0": { - "sha512": "Vwc6LFQtqsOY0cv6PuUE/hwZa2QpN3b4fj/60KlyISaoQ+qqHWMb88hWPi6wYKgT9MzXfB6+X2Hbu0vVP3Endg==", - "type": "package", - "path": "system.diagnostics.tools/4.3.0", - "files": [ - "System.Diagnostics.Tools.4.3.0.nupkg.sha512", - "System.Diagnostics.Tools.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/netcore50/de/System.Diagnostics.Tools.xml", - "ref/netcore50/es/System.Diagnostics.Tools.xml", - "ref/netcore50/fr/System.Diagnostics.Tools.xml", - "ref/netcore50/it/System.Diagnostics.Tools.xml", - "ref/netcore50/ja/System.Diagnostics.Tools.xml", - "ref/netcore50/ko/System.Diagnostics.Tools.xml", - "ref/netcore50/ru/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/System.Diagnostics.Tools.dll", - "ref/netstandard1.0/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Diagnostics.TraceSource/4.3.0": { - "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", - "type": "package", - "path": "system.diagnostics.tracesource/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.TraceSource.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.TraceSource.dll", - "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", - "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", - "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", - "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", - "system.diagnostics.tracesource.4.3.0.nupkg.sha512", - "system.diagnostics.tracesource.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.3.0": { - "sha512": "f9BrdsWCbQtt+DczMElDeELfBbj/2NGvODIQtzJdSfEed8dw40QYMAh0h10o0WkaJHBmiM4lpP7k72HPKtkxAg==", - "type": "package", - "path": "system.diagnostics.tracing/4.3.0", - "files": [ - "System.Diagnostics.Tracing.4.3.0.nupkg.sha512", - "System.Diagnostics.Tracing.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Diagnostics.Tracing.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.xml", - "ref/netcore50/de/System.Diagnostics.Tracing.xml", - "ref/netcore50/es/System.Diagnostics.Tracing.xml", - "ref/netcore50/fr/System.Diagnostics.Tracing.xml", - "ref/netcore50/it/System.Diagnostics.Tracing.xml", - "ref/netcore50/ja/System.Diagnostics.Tracing.xml", - "ref/netcore50/ko/System.Diagnostics.Tracing.xml", - "ref/netcore50/ru/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/System.Diagnostics.Tracing.dll", - "ref/netstandard1.1/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/System.Diagnostics.Tracing.dll", - "ref/netstandard1.2/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/System.Diagnostics.Tracing.dll", - "ref/netstandard1.3/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/System.Diagnostics.Tracing.dll", - "ref/netstandard1.5/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Dynamic.Runtime/4.0.11": { - "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", - "type": "package", - "path": "system.dynamic.runtime/4.0.11", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/netstandard1.3/System.Dynamic.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Dynamic.Runtime.dll", - "ref/netcore50/System.Dynamic.Runtime.xml", - "ref/netcore50/de/System.Dynamic.Runtime.xml", - "ref/netcore50/es/System.Dynamic.Runtime.xml", - "ref/netcore50/fr/System.Dynamic.Runtime.xml", - "ref/netcore50/it/System.Dynamic.Runtime.xml", - "ref/netcore50/ja/System.Dynamic.Runtime.xml", - "ref/netcore50/ko/System.Dynamic.Runtime.xml", - "ref/netcore50/ru/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/System.Dynamic.Runtime.dll", - "ref/netstandard1.0/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/System.Dynamic.Runtime.dll", - "ref/netstandard1.3/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", - "system.dynamic.runtime.4.0.11.nupkg.sha512", - "system.dynamic.runtime.nuspec" - ] - }, - "System.Globalization/4.3.0": { - "sha512": "rBOamFl6ZyhGAe1LXk7zJfZedRGU4udVVxOQGv5I3Bk5kkx1kSVc8qNyB1sLbDj3YBy8S2ZjpGcZRcsiSHKyhA==", - "type": "package", - "path": "system.globalization/4.3.0", - "files": [ - "System.Globalization.4.3.0.nupkg.sha512", - "System.Globalization.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Globalization.dll", - "ref/netcore50/System.Globalization.xml", - "ref/netcore50/de/System.Globalization.xml", - "ref/netcore50/es/System.Globalization.xml", - "ref/netcore50/fr/System.Globalization.xml", - "ref/netcore50/it/System.Globalization.xml", - "ref/netcore50/ja/System.Globalization.xml", - "ref/netcore50/ko/System.Globalization.xml", - "ref/netcore50/ru/System.Globalization.xml", - "ref/netcore50/zh-hans/System.Globalization.xml", - "ref/netcore50/zh-hant/System.Globalization.xml", - "ref/netstandard1.0/System.Globalization.dll", - "ref/netstandard1.0/System.Globalization.xml", - "ref/netstandard1.0/de/System.Globalization.xml", - "ref/netstandard1.0/es/System.Globalization.xml", - "ref/netstandard1.0/fr/System.Globalization.xml", - "ref/netstandard1.0/it/System.Globalization.xml", - "ref/netstandard1.0/ja/System.Globalization.xml", - "ref/netstandard1.0/ko/System.Globalization.xml", - "ref/netstandard1.0/ru/System.Globalization.xml", - "ref/netstandard1.0/zh-hans/System.Globalization.xml", - "ref/netstandard1.0/zh-hant/System.Globalization.xml", - "ref/netstandard1.3/System.Globalization.dll", - "ref/netstandard1.3/System.Globalization.xml", - "ref/netstandard1.3/de/System.Globalization.xml", - "ref/netstandard1.3/es/System.Globalization.xml", - "ref/netstandard1.3/fr/System.Globalization.xml", - "ref/netstandard1.3/it/System.Globalization.xml", - "ref/netstandard1.3/ja/System.Globalization.xml", - "ref/netstandard1.3/ko/System.Globalization.xml", - "ref/netstandard1.3/ru/System.Globalization.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Globalization.Extensions/4.3.0": { - "sha512": "YtUH4Fkd8FN2lLfbai8RIJbL5OSMU1Ihyn0Q9+4Dnu26X7JyQcrqF4I7rLR1+CkkVjItjGEt1z0WPqv7WPx+yw==", - "type": "package", - "path": "system.globalization.extensions/4.3.0", - "files": [ - "System.Globalization.Extensions.4.3.0.nupkg.sha512", - "System.Globalization.Extensions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.xml", - "ref/netstandard1.3/de/System.Globalization.Extensions.xml", - "ref/netstandard1.3/es/System.Globalization.Extensions.xml", - "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", - "ref/netstandard1.3/it/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", - "runtimes/win/lib/net46/System.Globalization.Extensions.dll", - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll" - ] - }, - "System.IO/4.3.0": { - "sha512": "mIdLe418rsu39bT8BCRT/MSF5kA478q8FEKK8RwJdr3F6bz7dqMKjW9i0mIGBH1gw+Jg6y4TcjDgaOVYruNTBQ==", - "type": "package", - "path": "system.io/4.3.0", - "files": [ - "System.IO.4.3.0.nupkg.sha512", - "System.IO.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.IO.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.IO.dll", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "ref/netcore50/de/System.IO.xml", - "ref/netcore50/es/System.IO.xml", - "ref/netcore50/fr/System.IO.xml", - "ref/netcore50/it/System.IO.xml", - "ref/netcore50/ja/System.IO.xml", - "ref/netcore50/ko/System.IO.xml", - "ref/netcore50/ru/System.IO.xml", - "ref/netcore50/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/netstandard1.0/System.IO.dll", - "ref/netstandard1.0/System.IO.xml", - "ref/netstandard1.0/de/System.IO.xml", - "ref/netstandard1.0/es/System.IO.xml", - "ref/netstandard1.0/fr/System.IO.xml", - "ref/netstandard1.0/it/System.IO.xml", - "ref/netstandard1.0/ja/System.IO.xml", - "ref/netstandard1.0/ko/System.IO.xml", - "ref/netstandard1.0/ru/System.IO.xml", - "ref/netstandard1.0/zh-hans/System.IO.xml", - "ref/netstandard1.0/zh-hant/System.IO.xml", - "ref/netstandard1.3/System.IO.dll", - "ref/netstandard1.3/System.IO.xml", - "ref/netstandard1.3/de/System.IO.xml", - "ref/netstandard1.3/es/System.IO.xml", - "ref/netstandard1.3/fr/System.IO.xml", - "ref/netstandard1.3/it/System.IO.xml", - "ref/netstandard1.3/ja/System.IO.xml", - "ref/netstandard1.3/ko/System.IO.xml", - "ref/netstandard1.3/ru/System.IO.xml", - "ref/netstandard1.3/zh-hans/System.IO.xml", - "ref/netstandard1.3/zh-hant/System.IO.xml", - "ref/netstandard1.5/System.IO.dll", - "ref/netstandard1.5/System.IO.xml", - "ref/netstandard1.5/de/System.IO.xml", - "ref/netstandard1.5/es/System.IO.xml", - "ref/netstandard1.5/fr/System.IO.xml", - "ref/netstandard1.5/it/System.IO.xml", - "ref/netstandard1.5/ja/System.IO.xml", - "ref/netstandard1.5/ko/System.IO.xml", - "ref/netstandard1.5/ru/System.IO.xml", - "ref/netstandard1.5/zh-hans/System.IO.xml", - "ref/netstandard1.5/zh-hant/System.IO.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.IO.FileSystem/4.3.0": { - "sha512": "XNIxzZ3O6QM7Ddte6ix0s05KtxOtKZPsbRArwxtjW7ESDWDZWe6iRLieOAp6hkdEcKN+BbQdCTy5lUWldaorLA==", - "type": "package", - "path": "system.io.filesystem/4.3.0", - "files": [ - "System.IO.FileSystem.4.3.0.nupkg.sha512", - "System.IO.FileSystem.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "sha512": "NOLqpMi0VJMbfLBnqjPbHNbgr5OM/BT8EBV5W1OAqWl08ICRtS2c4d0poCEjtcIoa+ZP3EuI1jBhrbUyX3rzvQ==", - "type": "package", - "path": "system.io.filesystem.primitives/4.3.0", - "files": [ - "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512", - "System.IO.FileSystem.Primitives.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Linq/4.3.0": { - "sha512": "zCipD1BC2DA18yZ9Qe6lBvwwbD2bN+PsOLB948sXqj00aS6UCWhd7a9tmL9sZ3hX0aWx/YZ0X4jqNyM3iNy+8Q==", - "type": "package", - "path": "system.linq/4.3.0", - "files": [ - "System.Linq.4.3.0.nupkg.sha512", - "System.Linq.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.dll", - "lib/netcore50/System.Linq.dll", - "lib/netstandard1.6/System.Linq.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.dll", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/netcore50/de/System.Linq.xml", - "ref/netcore50/es/System.Linq.xml", - "ref/netcore50/fr/System.Linq.xml", - "ref/netcore50/it/System.Linq.xml", - "ref/netcore50/ja/System.Linq.xml", - "ref/netcore50/ko/System.Linq.xml", - "ref/netcore50/ru/System.Linq.xml", - "ref/netcore50/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/netstandard1.0/System.Linq.dll", - "ref/netstandard1.0/System.Linq.xml", - "ref/netstandard1.0/de/System.Linq.xml", - "ref/netstandard1.0/es/System.Linq.xml", - "ref/netstandard1.0/fr/System.Linq.xml", - "ref/netstandard1.0/it/System.Linq.xml", - "ref/netstandard1.0/ja/System.Linq.xml", - "ref/netstandard1.0/ko/System.Linq.xml", - "ref/netstandard1.0/ru/System.Linq.xml", - "ref/netstandard1.0/zh-hans/System.Linq.xml", - "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.6/System.Linq.dll", - "ref/netstandard1.6/System.Linq.xml", - "ref/netstandard1.6/de/System.Linq.xml", - "ref/netstandard1.6/es/System.Linq.xml", - "ref/netstandard1.6/fr/System.Linq.xml", - "ref/netstandard1.6/it/System.Linq.xml", - "ref/netstandard1.6/ja/System.Linq.xml", - "ref/netstandard1.6/ko/System.Linq.xml", - "ref/netstandard1.6/ru/System.Linq.xml", - "ref/netstandard1.6/zh-hans/System.Linq.xml", - "ref/netstandard1.6/zh-hant/System.Linq.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Linq.Expressions/4.1.0": { - "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", - "type": "package", - "path": "system.linq.expressions/4.1.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", - "system.linq.expressions.4.1.0.nupkg.sha512", - "system.linq.expressions.nuspec" - ] - }, - "System.ObjectModel/4.0.12": { - "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", - "type": "package", - "path": "system.objectmodel/4.0.12", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.objectmodel.4.0.12.nupkg.sha512", - "system.objectmodel.nuspec" - ] - }, - "System.Private.DataContractSerialization/4.3.0": { - "sha512": "yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==", - "type": "package", - "path": "system.private.datacontractserialization/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.3/System.Private.DataContractSerialization.dll", - "ref/netstandard/_._", - "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll", - "system.private.datacontractserialization.4.3.0.nupkg.sha512", - "system.private.datacontractserialization.nuspec" - ] - }, - "System.Reflection/4.3.0": { - "sha512": "gGamr1E4EEPebmJ97PzWvrShxs84XekbUo/Y6GmWV5QFSCPtxHlrpfhA60RYK1xdp/UUk7Hfnwv5JgYHdriVsA==", - "type": "package", - "path": "system.reflection/4.3.0", - "files": [ - "System.Reflection.4.3.0.nupkg.sha512", - "System.Reflection.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Reflection.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Reflection.dll", - "ref/netcore50/System.Reflection.dll", - "ref/netcore50/System.Reflection.xml", - "ref/netcore50/de/System.Reflection.xml", - "ref/netcore50/es/System.Reflection.xml", - "ref/netcore50/fr/System.Reflection.xml", - "ref/netcore50/it/System.Reflection.xml", - "ref/netcore50/ja/System.Reflection.xml", - "ref/netcore50/ko/System.Reflection.xml", - "ref/netcore50/ru/System.Reflection.xml", - "ref/netcore50/zh-hans/System.Reflection.xml", - "ref/netcore50/zh-hant/System.Reflection.xml", - "ref/netstandard1.0/System.Reflection.dll", - "ref/netstandard1.0/System.Reflection.xml", - "ref/netstandard1.0/de/System.Reflection.xml", - "ref/netstandard1.0/es/System.Reflection.xml", - "ref/netstandard1.0/fr/System.Reflection.xml", - "ref/netstandard1.0/it/System.Reflection.xml", - "ref/netstandard1.0/ja/System.Reflection.xml", - "ref/netstandard1.0/ko/System.Reflection.xml", - "ref/netstandard1.0/ru/System.Reflection.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.xml", - "ref/netstandard1.3/System.Reflection.dll", - "ref/netstandard1.3/System.Reflection.xml", - "ref/netstandard1.3/de/System.Reflection.xml", - "ref/netstandard1.3/es/System.Reflection.xml", - "ref/netstandard1.3/fr/System.Reflection.xml", - "ref/netstandard1.3/it/System.Reflection.xml", - "ref/netstandard1.3/ja/System.Reflection.xml", - "ref/netstandard1.3/ko/System.Reflection.xml", - "ref/netstandard1.3/ru/System.Reflection.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.xml", - "ref/netstandard1.5/System.Reflection.dll", - "ref/netstandard1.5/System.Reflection.xml", - "ref/netstandard1.5/de/System.Reflection.xml", - "ref/netstandard1.5/es/System.Reflection.xml", - "ref/netstandard1.5/fr/System.Reflection.xml", - "ref/netstandard1.5/it/System.Reflection.xml", - "ref/netstandard1.5/ja/System.Reflection.xml", - "ref/netstandard1.5/ko/System.Reflection.xml", - "ref/netstandard1.5/ru/System.Reflection.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Reflection.Emit/4.3.0": { - "sha512": "+iMkBQSDryRUD4pZLYA/1GE635+Vcq0yzK5XmcoE2PIC+zPrQeQ3g8jL3ObGyMa92yW4il0SdGBJG594aRHoEQ==", - "type": "package", - "path": "system.reflection.emit/4.3.0", - "files": [ - "System.Reflection.Emit.4.3.0.nupkg.sha512", - "System.Reflection.Emit.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/netstandard1.3/System.Reflection.Emit.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/net45/_._", - "ref/netstandard1.1/System.Reflection.Emit.dll", - "ref/netstandard1.1/System.Reflection.Emit.xml", - "ref/netstandard1.1/de/System.Reflection.Emit.xml", - "ref/netstandard1.1/es/System.Reflection.Emit.xml", - "ref/netstandard1.1/fr/System.Reflection.Emit.xml", - "ref/netstandard1.1/it/System.Reflection.Emit.xml", - "ref/netstandard1.1/ja/System.Reflection.Emit.xml", - "ref/netstandard1.1/ko/System.Reflection.Emit.xml", - "ref/netstandard1.1/ru/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", - "ref/xamarinmac20/_._" - ] - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "sha512": "hWLhTM+4nHfwE2fWuG6a7zx4HsDuMHsy9yghS6lF28aVVfmdYJQzVpW0zyr2XgSikWpDQaLFXUXn5KFCHQIc/A==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "files": [ - "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512", - "System.Reflection.Emit.ILGeneration.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "sha512": "Z/CjAbXzacdDtM68j63sNYBdvFmw7xa5rTHaIosxOkqCsZtx9NljbXPUH1uZP7CSYaPUtCTqWoGMIRmfgzF28g==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.3.0", - "files": [ - "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512", - "System.Reflection.Emit.Lightweight.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "System.Reflection.Extensions/4.3.0": { - "sha512": "MDfXYjOpzBgjkTs9Qn8bKNwJPduzuKiQsPIASQXFCQdZ4N6cT+rcOzAg09GHqafBwBtD4Ie2/FIxrstx+x5BFA==", - "type": "package", - "path": "system.reflection.extensions/4.3.0", - "files": [ - "System.Reflection.Extensions.4.3.0.nupkg.sha512", - "System.Reflection.Extensions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Reflection.Metadata/1.3.0": { - "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==", - "type": "package", - "path": "system.reflection.metadata/1.3.0", - "files": [ - "System.Reflection.Metadata.1.3.0.nupkg.sha512", - "System.Reflection.Metadata.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.1/System.Reflection.Metadata.dll", - "lib/netstandard1.1/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml" - ] - }, - "System.Reflection.Primitives/4.3.0": { - "sha512": "cC3LNSN1O4HzaICX2X6E+5SzA8frBifE/P22OOJ2ZDcmackDnIEa/JbbS+ZJ17LO4rVMjNh2I9hnnmqyOtRlSA==", - "type": "package", - "path": "system.reflection.primitives/4.3.0", - "files": [ - "System.Reflection.Primitives.4.3.0.nupkg.sha512", - "System.Reflection.Primitives.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/netcore50/de/System.Reflection.Primitives.xml", - "ref/netcore50/es/System.Reflection.Primitives.xml", - "ref/netcore50/fr/System.Reflection.Primitives.xml", - "ref/netcore50/it/System.Reflection.Primitives.xml", - "ref/netcore50/ja/System.Reflection.Primitives.xml", - "ref/netcore50/ko/System.Reflection.Primitives.xml", - "ref/netcore50/ru/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", - "ref/netstandard1.0/System.Reflection.Primitives.dll", - "ref/netstandard1.0/System.Reflection.Primitives.xml", - "ref/netstandard1.0/de/System.Reflection.Primitives.xml", - "ref/netstandard1.0/es/System.Reflection.Primitives.xml", - "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", - "ref/netstandard1.0/it/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Reflection.TypeExtensions/4.3.0": { - "sha512": "3AxQaxLqVAJSDSEeGPVNX9TNX+Gx0/uUdtUrwSwGnVnMFXOvJM5DkARwA9sg5EuMr5zW/uOWvGuMlRRikFCoaw==", - "type": "package", - "path": "system.reflection.typeextensions/4.3.0", - "files": [ - "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512", - "System.Reflection.TypeExtensions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll" - ] - }, - "System.Resources.ResourceManager/4.3.0": { - "sha512": "uv2LeuHh1Egcny0vUeIPeAg7LiqHWfmcLfBpc4cdonWbdM8P59oFkfj8Z+km8US0uOzIfS7unVSboNK/aTN/XQ==", - "type": "package", - "path": "system.resources.resourcemanager/4.3.0", - "files": [ - "System.Resources.ResourceManager.4.3.0.nupkg.sha512", - "System.Resources.ResourceManager.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/netcore50/de/System.Resources.ResourceManager.xml", - "ref/netcore50/es/System.Resources.ResourceManager.xml", - "ref/netcore50/fr/System.Resources.ResourceManager.xml", - "ref/netcore50/it/System.Resources.ResourceManager.xml", - "ref/netcore50/ja/System.Resources.ResourceManager.xml", - "ref/netcore50/ko/System.Resources.ResourceManager.xml", - "ref/netcore50/ru/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/System.Resources.ResourceManager.dll", - "ref/netstandard1.0/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Runtime/4.3.0": { - "sha512": "x/uKk+KOWUH4Ywuw4vAVdBa0ToVF6HCy9gCG+loWNZZMCWGvEElnPAAD/NTXJXCApWEa6lNe2Jx7IQyahRX2ZA==", - "type": "package", - "path": "system.runtime/4.3.0", - "files": [ - "System.Runtime.4.3.0.nupkg.sha512", - "System.Runtime.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.dll", - "lib/portable-net45+win8+wp80+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.dll", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "ref/netcore50/de/System.Runtime.xml", - "ref/netcore50/es/System.Runtime.xml", - "ref/netcore50/fr/System.Runtime.xml", - "ref/netcore50/it/System.Runtime.xml", - "ref/netcore50/ja/System.Runtime.xml", - "ref/netcore50/ko/System.Runtime.xml", - "ref/netcore50/ru/System.Runtime.xml", - "ref/netcore50/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/netstandard1.0/System.Runtime.dll", - "ref/netstandard1.0/System.Runtime.xml", - "ref/netstandard1.0/de/System.Runtime.xml", - "ref/netstandard1.0/es/System.Runtime.xml", - "ref/netstandard1.0/fr/System.Runtime.xml", - "ref/netstandard1.0/it/System.Runtime.xml", - "ref/netstandard1.0/ja/System.Runtime.xml", - "ref/netstandard1.0/ko/System.Runtime.xml", - "ref/netstandard1.0/ru/System.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.xml", - "ref/netstandard1.2/System.Runtime.dll", - "ref/netstandard1.2/System.Runtime.xml", - "ref/netstandard1.2/de/System.Runtime.xml", - "ref/netstandard1.2/es/System.Runtime.xml", - "ref/netstandard1.2/fr/System.Runtime.xml", - "ref/netstandard1.2/it/System.Runtime.xml", - "ref/netstandard1.2/ja/System.Runtime.xml", - "ref/netstandard1.2/ko/System.Runtime.xml", - "ref/netstandard1.2/ru/System.Runtime.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.xml", - "ref/netstandard1.3/System.Runtime.dll", - "ref/netstandard1.3/System.Runtime.xml", - "ref/netstandard1.3/de/System.Runtime.xml", - "ref/netstandard1.3/es/System.Runtime.xml", - "ref/netstandard1.3/fr/System.Runtime.xml", - "ref/netstandard1.3/it/System.Runtime.xml", - "ref/netstandard1.3/ja/System.Runtime.xml", - "ref/netstandard1.3/ko/System.Runtime.xml", - "ref/netstandard1.3/ru/System.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.xml", - "ref/netstandard1.5/System.Runtime.dll", - "ref/netstandard1.5/System.Runtime.xml", - "ref/netstandard1.5/de/System.Runtime.xml", - "ref/netstandard1.5/es/System.Runtime.xml", - "ref/netstandard1.5/fr/System.Runtime.xml", - "ref/netstandard1.5/it/System.Runtime.xml", - "ref/netstandard1.5/ja/System.Runtime.xml", - "ref/netstandard1.5/ko/System.Runtime.xml", - "ref/netstandard1.5/ru/System.Runtime.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.xml", - "ref/portable-net45+win8+wp80+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Runtime.Extensions/4.3.0": { - "sha512": "kMwxdAkAoUCrOzV9+eoo6c9ReRRTU4GJ4uCW/U41CnO6Dau2G9906wQgq87ecsgKi1zPsWhS0MhPNtv+zOKXVg==", - "type": "package", - "path": "system.runtime.extensions/4.3.0", - "files": [ - "System.Runtime.Extensions.4.3.0.nupkg.sha512", - "System.Runtime.Extensions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "ref/netcore50/de/System.Runtime.Extensions.xml", - "ref/netcore50/es/System.Runtime.Extensions.xml", - "ref/netcore50/fr/System.Runtime.Extensions.xml", - "ref/netcore50/it/System.Runtime.Extensions.xml", - "ref/netcore50/ja/System.Runtime.Extensions.xml", - "ref/netcore50/ko/System.Runtime.Extensions.xml", - "ref/netcore50/ru/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.0/System.Runtime.Extensions.dll", - "ref/netstandard1.0/System.Runtime.Extensions.xml", - "ref/netstandard1.0/de/System.Runtime.Extensions.xml", - "ref/netstandard1.0/es/System.Runtime.Extensions.xml", - "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.0/it/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.3/System.Runtime.Extensions.dll", - "ref/netstandard1.3/System.Runtime.Extensions.xml", - "ref/netstandard1.3/de/System.Runtime.Extensions.xml", - "ref/netstandard1.3/es/System.Runtime.Extensions.xml", - "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.3/it/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.5/System.Runtime.Extensions.dll", - "ref/netstandard1.5/System.Runtime.Extensions.xml", - "ref/netstandard1.5/de/System.Runtime.Extensions.xml", - "ref/netstandard1.5/es/System.Runtime.Extensions.xml", - "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.5/it/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Runtime.Handles/4.3.0": { - "sha512": "BHcVBSdAhhFFiXbapRT3kYfGG2cGpTEVcSQWpjPEL1KlKhxz99gpKsAzFdQA4wxLI2OceEhsfcRnhGFoL1YlcA==", - "type": "package", - "path": "system.runtime.handles/4.3.0", - "files": [ - "System.Runtime.Handles.4.3.0.nupkg.sha512", - "System.Runtime.Handles.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/netstandard1.3/System.Runtime.Handles.dll", - "ref/netstandard1.3/System.Runtime.Handles.xml", - "ref/netstandard1.3/de/System.Runtime.Handles.xml", - "ref/netstandard1.3/es/System.Runtime.Handles.xml", - "ref/netstandard1.3/fr/System.Runtime.Handles.xml", - "ref/netstandard1.3/it/System.Runtime.Handles.xml", - "ref/netstandard1.3/ja/System.Runtime.Handles.xml", - "ref/netstandard1.3/ko/System.Runtime.Handles.xml", - "ref/netstandard1.3/ru/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Runtime.InteropServices/4.3.0": { - "sha512": "mLmD/9/pWxDGrpCU68r5hgBKGw8LXWOGvUcXl7YYm4EQMWhNHUuQuItA7uIX5MtlCK0z/0rLMI1lzdnqTnVf7Q==", - "type": "package", - "path": "system.runtime.interopservices/4.3.0", - "files": [ - "System.Runtime.InteropServices.4.3.0.nupkg.sha512", - "System.Runtime.InteropServices.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.InteropServices.dll", - "lib/net463/System.Runtime.InteropServices.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.InteropServices.dll", - "ref/net463/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.xml", - "ref/netcore50/de/System.Runtime.InteropServices.xml", - "ref/netcore50/es/System.Runtime.InteropServices.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.xml", - "ref/netcore50/it/System.Runtime.InteropServices.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/System.Runtime.InteropServices.dll", - "ref/netstandard1.2/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/System.Runtime.InteropServices.dll", - "ref/netstandard1.3/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/System.Runtime.InteropServices.dll", - "ref/netstandard1.5/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "sha512": "FtJ8+tL3wuisy+xGToxUZc1jUmK/EOmYchv/NYwDr0vKj02ySyEtvHB15V3H54rcPNmL5/TAUZct8V5kPyHCXA==", - "type": "package", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "files": [ - "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512", - "System.Runtime.InteropServices.RuntimeInformation.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll" - ] - }, - "System.Runtime.Loader/4.3.0": { - "sha512": "6sy0Im/gMm+y1zDgRYM+WB2mEEdw1Z6INUAsNnCfOi7HYWRaSAQeQkYNHqOq2QrDBYHt3yY8xb5OzAuRIhPxtg==", - "type": "package", - "path": "system.runtime.loader/4.3.0", - "files": [ - "System.Runtime.Loader.4.3.0.nupkg.sha512", - "System.Runtime.Loader.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net462/_._", - "lib/netstandard1.5/System.Runtime.Loader.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard1.5/System.Runtime.Loader.dll", - "ref/netstandard1.5/System.Runtime.Loader.xml", - "ref/netstandard1.5/de/System.Runtime.Loader.xml", - "ref/netstandard1.5/es/System.Runtime.Loader.xml", - "ref/netstandard1.5/fr/System.Runtime.Loader.xml", - "ref/netstandard1.5/it/System.Runtime.Loader.xml", - "ref/netstandard1.5/ja/System.Runtime.Loader.xml", - "ref/netstandard1.5/ko/System.Runtime.Loader.xml", - "ref/netstandard1.5/ru/System.Runtime.Loader.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml" - ] - }, - "System.Runtime.Serialization.Json/4.3.0": { - "sha512": "CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==", - "type": "package", - "path": "system.runtime.serialization.json/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Serialization.Json.dll", - "lib/netstandard1.3/System.Runtime.Serialization.Json.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Serialization.Json.dll", - "ref/netcore50/System.Runtime.Serialization.Json.xml", - "ref/netcore50/de/System.Runtime.Serialization.Json.xml", - "ref/netcore50/es/System.Runtime.Serialization.Json.xml", - "ref/netcore50/fr/System.Runtime.Serialization.Json.xml", - "ref/netcore50/it/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ja/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ko/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ru/System.Runtime.Serialization.Json.xml", - "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml", - "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/System.Runtime.Serialization.Json.dll", - "ref/netstandard1.0/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.serialization.json.4.3.0.nupkg.sha512", - "system.runtime.serialization.json.nuspec" - ] - }, - "System.Runtime.Serialization.Primitives/4.3.0": { - "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", - "type": "package", - "path": "system.runtime.serialization.primitives/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Runtime.Serialization.Primitives.dll", - "lib/netcore50/System.Runtime.Serialization.Primitives.dll", - "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Runtime.Serialization.Primitives.dll", - "ref/netcore50/System.Runtime.Serialization.Primitives.dll", - "ref/netcore50/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", - "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", - "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", - "system.runtime.serialization.primitives.nuspec" - ] - }, - "System.Text.Encoding/4.3.0": { - "sha512": "4Ov0HprPtGIGpK8pVIApj5PKWi2PTD2oJ9/UnB75+Hxu+Wzwwxtft48mY7ssnl5ZyArsGAP7P9rwNezuaj7TFg==", - "type": "package", - "path": "system.text.encoding/4.3.0", - "files": [ - "System.Text.Encoding.4.3.0.nupkg.sha512", - "System.Text.Encoding.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.dll", - "ref/netcore50/System.Text.Encoding.xml", - "ref/netcore50/de/System.Text.Encoding.xml", - "ref/netcore50/es/System.Text.Encoding.xml", - "ref/netcore50/fr/System.Text.Encoding.xml", - "ref/netcore50/it/System.Text.Encoding.xml", - "ref/netcore50/ja/System.Text.Encoding.xml", - "ref/netcore50/ko/System.Text.Encoding.xml", - "ref/netcore50/ru/System.Text.Encoding.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.0/System.Text.Encoding.dll", - "ref/netstandard1.0/System.Text.Encoding.xml", - "ref/netstandard1.0/de/System.Text.Encoding.xml", - "ref/netstandard1.0/es/System.Text.Encoding.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.xml", - "ref/netstandard1.0/it/System.Text.Encoding.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.3/System.Text.Encoding.dll", - "ref/netstandard1.3/System.Text.Encoding.xml", - "ref/netstandard1.3/de/System.Text.Encoding.xml", - "ref/netstandard1.3/es/System.Text.Encoding.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.xml", - "ref/netstandard1.3/it/System.Text.Encoding.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Text.Encoding.Extensions/4.3.0": { - "sha512": "54HDNiawKkxkbFR9Jgf/PK1kgRaX/6XEH1Mdj57d+z2iqS2qfXUiof2eOyU37z/5UI5uUxifKiQbYISUiX3EXg==", - "type": "package", - "path": "system.text.encoding.extensions/4.3.0", - "files": [ - "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512", - "System.Text.Encoding.Extensions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.Extensions.dll", - "ref/netcore50/System.Text.Encoding.Extensions.xml", - "ref/netcore50/de/System.Text.Encoding.Extensions.xml", - "ref/netcore50/es/System.Text.Encoding.Extensions.xml", - "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", - "ref/netcore50/it/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Text.RegularExpressions/4.3.0": { - "sha512": "KkErACEE/O5S3SVNb3cybtRBREao0P/m8avuyrVnI3sE5yUdg8B7R133p2cO6l4CO5VssmJ0florOeFOZs+j9g==", - "type": "package", - "path": "system.text.regularexpressions/4.3.0", - "files": [ - "System.Text.RegularExpressions.4.3.0.nupkg.sha512", - "System.Text.RegularExpressions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Text.RegularExpressions.dll", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/netstandard1.6/System.Text.RegularExpressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "ref/netcore50/de/System.Text.RegularExpressions.xml", - "ref/netcore50/es/System.Text.RegularExpressions.xml", - "ref/netcore50/fr/System.Text.RegularExpressions.xml", - "ref/netcore50/it/System.Text.RegularExpressions.xml", - "ref/netcore50/ja/System.Text.RegularExpressions.xml", - "ref/netcore50/ko/System.Text.RegularExpressions.xml", - "ref/netcore50/ru/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/System.Text.RegularExpressions.dll", - "ref/netstandard1.3/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/System.Text.RegularExpressions.dll", - "ref/netstandard1.6/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Threading/4.3.0": { - "sha512": "X2dm0CWNrecCe9KtnS6aG5aMSrQ0R9fcXEabUPo8mCZV516bECrI2NpLSgai8meK4C9VciyxdAs1U1DEoy8fTw==", - "type": "package", - "path": "system.threading/4.3.0", - "files": [ - "System.Threading.4.3.0.nupkg.sha512", - "System.Threading.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.dll", - "lib/netstandard1.3/System.Threading.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/netstandard1.0/System.Threading.dll", - "ref/netstandard1.0/System.Threading.xml", - "ref/netstandard1.0/de/System.Threading.xml", - "ref/netstandard1.0/es/System.Threading.xml", - "ref/netstandard1.0/fr/System.Threading.xml", - "ref/netstandard1.0/it/System.Threading.xml", - "ref/netstandard1.0/ja/System.Threading.xml", - "ref/netstandard1.0/ko/System.Threading.xml", - "ref/netstandard1.0/ru/System.Threading.xml", - "ref/netstandard1.0/zh-hans/System.Threading.xml", - "ref/netstandard1.0/zh-hant/System.Threading.xml", - "ref/netstandard1.3/System.Threading.dll", - "ref/netstandard1.3/System.Threading.xml", - "ref/netstandard1.3/de/System.Threading.xml", - "ref/netstandard1.3/es/System.Threading.xml", - "ref/netstandard1.3/fr/System.Threading.xml", - "ref/netstandard1.3/it/System.Threading.xml", - "ref/netstandard1.3/ja/System.Threading.xml", - "ref/netstandard1.3/ko/System.Threading.xml", - "ref/netstandard1.3/ru/System.Threading.xml", - "ref/netstandard1.3/zh-hans/System.Threading.xml", - "ref/netstandard1.3/zh-hant/System.Threading.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Threading.dll" - ] - }, - "System.Threading.Tasks/4.3.0": { - "sha512": "SuzCjdyZY1++6EWmel57slR75YTrYYOrYwMnIBmlSTd5khNE3K8OvE+wkgEgl2hLo9amIzEHlGUXmcdYhdLuwA==", - "type": "package", - "path": "system.threading.tasks/4.3.0", - "files": [ - "System.Threading.Tasks.4.3.0.nupkg.sha512", - "System.Threading.Tasks.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.dll", - "ref/netcore50/System.Threading.Tasks.xml", - "ref/netcore50/de/System.Threading.Tasks.xml", - "ref/netcore50/es/System.Threading.Tasks.xml", - "ref/netcore50/fr/System.Threading.Tasks.xml", - "ref/netcore50/it/System.Threading.Tasks.xml", - "ref/netcore50/ja/System.Threading.Tasks.xml", - "ref/netcore50/ko/System.Threading.Tasks.xml", - "ref/netcore50/ru/System.Threading.Tasks.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.0/System.Threading.Tasks.dll", - "ref/netstandard1.0/System.Threading.Tasks.xml", - "ref/netstandard1.0/de/System.Threading.Tasks.xml", - "ref/netstandard1.0/es/System.Threading.Tasks.xml", - "ref/netstandard1.0/fr/System.Threading.Tasks.xml", - "ref/netstandard1.0/it/System.Threading.Tasks.xml", - "ref/netstandard1.0/ja/System.Threading.Tasks.xml", - "ref/netstandard1.0/ko/System.Threading.Tasks.xml", - "ref/netstandard1.0/ru/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.3/System.Threading.Tasks.dll", - "ref/netstandard1.3/System.Threading.Tasks.xml", - "ref/netstandard1.3/de/System.Threading.Tasks.xml", - "ref/netstandard1.3/es/System.Threading.Tasks.xml", - "ref/netstandard1.3/fr/System.Threading.Tasks.xml", - "ref/netstandard1.3/it/System.Threading.Tasks.xml", - "ref/netstandard1.3/ja/System.Threading.Tasks.xml", - "ref/netstandard1.3/ko/System.Threading.Tasks.xml", - "ref/netstandard1.3/ru/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "sha512": "zxaGBe/5Z4llgwOFGlfuCV6h2P1vabcSP5NJ1kquBnqNgLAr2VPzFQ7MSfpojJVxNI9wXg8aQPtpLrPKZvzw/w==", - "type": "package", - "path": "system.threading.tasks.extensions/4.3.0", - "files": [ - "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512", - "System.Threading.Tasks.Extensions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml" - ] - }, - "System.Threading.Thread/4.3.0": { - "sha512": "ZVqA9KE6LDBxfLR0lQRdboT+mnKSZnS/d1/i5MPjkyuYvbfcUDfp5WUOx3OIK3yD1U5gNJ6dONieNRz+k2ikjA==", - "type": "package", - "path": "system.threading.thread/4.3.0", - "files": [ - "System.Threading.Thread.4.3.0.nupkg.sha512", - "System.Threading.Thread.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Threading.Thread.dll", - "lib/netcore50/_._", - "lib/netstandard1.3/System.Threading.Thread.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Threading.Thread.dll", - "ref/netstandard1.3/System.Threading.Thread.dll", - "ref/netstandard1.3/System.Threading.Thread.xml", - "ref/netstandard1.3/de/System.Threading.Thread.xml", - "ref/netstandard1.3/es/System.Threading.Thread.xml", - "ref/netstandard1.3/fr/System.Threading.Thread.xml", - "ref/netstandard1.3/it/System.Threading.Thread.xml", - "ref/netstandard1.3/ja/System.Threading.Thread.xml", - "ref/netstandard1.3/ko/System.Threading.Thread.xml", - "ref/netstandard1.3/ru/System.Threading.Thread.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Threading.ThreadPool/4.3.0": { - "sha512": "PXnCQ0n3Fw94SVTR4RPX54uiv6UtsO+E8wPw7ms7gHqj25QpHzV5j0VUUV4/VzNgN2DnzjuR6fWOqiFc6ju7Cg==", - "type": "package", - "path": "system.threading.threadpool/4.3.0", - "files": [ - "System.Threading.ThreadPool.4.3.0.nupkg.sha512", - "System.Threading.ThreadPool.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Threading.ThreadPool.dll", - "lib/netcore50/_._", - "lib/netstandard1.3/System.Threading.ThreadPool.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Threading.ThreadPool.dll", - "ref/netstandard1.3/System.Threading.ThreadPool.dll", - "ref/netstandard1.3/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Xml.ReaderWriter/4.3.0": { - "sha512": "nEhSftvdzfKEsHpZ3mh6qYC0YhUv9UncN0pzz6arBMvfZvUeHBjyDyQ/6s3H6hYyTWa31nq60QSIRGYIgmrCJA==", - "type": "package", - "path": "system.xml.readerwriter/4.3.0", - "files": [ - "System.Xml.ReaderWriter.4.3.0.nupkg.sha512", - "System.Xml.ReaderWriter.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Xml.ReaderWriter.dll", - "lib/netcore50/System.Xml.ReaderWriter.dll", - "lib/netstandard1.3/System.Xml.ReaderWriter.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.xml", - "ref/netcore50/de/System.Xml.ReaderWriter.xml", - "ref/netcore50/es/System.Xml.ReaderWriter.xml", - "ref/netcore50/fr/System.Xml.ReaderWriter.xml", - "ref/netcore50/it/System.Xml.ReaderWriter.xml", - "ref/netcore50/ja/System.Xml.ReaderWriter.xml", - "ref/netcore50/ko/System.Xml.ReaderWriter.xml", - "ref/netcore50/ru/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/System.Xml.ReaderWriter.dll", - "ref/netstandard1.0/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/System.Xml.ReaderWriter.dll", - "ref/netstandard1.3/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Xml.XDocument/4.3.0": { - "sha512": "yHtMrzLbOK0UzDdO5aV/58+TZ7MbDZ2pGnN9nY6cNShz93Wro4aRFpKIBErMipN8jOLudfPKaSmHZ0Jjc9gH/A==", - "type": "package", - "path": "system.xml.xdocument/4.3.0", - "files": [ - "System.Xml.XDocument.4.3.0.nupkg.sha512", - "System.Xml.XDocument.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Xml.XDocument.dll", - "lib/netstandard1.3/System.Xml.XDocument.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Xml.XDocument.dll", - "ref/netcore50/System.Xml.XDocument.xml", - "ref/netcore50/de/System.Xml.XDocument.xml", - "ref/netcore50/es/System.Xml.XDocument.xml", - "ref/netcore50/fr/System.Xml.XDocument.xml", - "ref/netcore50/it/System.Xml.XDocument.xml", - "ref/netcore50/ja/System.Xml.XDocument.xml", - "ref/netcore50/ko/System.Xml.XDocument.xml", - "ref/netcore50/ru/System.Xml.XDocument.xml", - "ref/netcore50/zh-hans/System.Xml.XDocument.xml", - "ref/netcore50/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.0/System.Xml.XDocument.dll", - "ref/netstandard1.0/System.Xml.XDocument.xml", - "ref/netstandard1.0/de/System.Xml.XDocument.xml", - "ref/netstandard1.0/es/System.Xml.XDocument.xml", - "ref/netstandard1.0/fr/System.Xml.XDocument.xml", - "ref/netstandard1.0/it/System.Xml.XDocument.xml", - "ref/netstandard1.0/ja/System.Xml.XDocument.xml", - "ref/netstandard1.0/ko/System.Xml.XDocument.xml", - "ref/netstandard1.0/ru/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.3/System.Xml.XDocument.dll", - "ref/netstandard1.3/System.Xml.XDocument.xml", - "ref/netstandard1.3/de/System.Xml.XDocument.xml", - "ref/netstandard1.3/es/System.Xml.XDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XDocument.xml", - "ref/netstandard1.3/it/System.Xml.XDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Xml.XmlDocument/4.3.0": { - "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "type": "package", - "path": "system.xml.xmldocument/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Xml.XmlDocument.dll", - "lib/netstandard1.3/System.Xml.XmlDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xmldocument.4.3.0.nupkg.sha512", - "system.xml.xmldocument.nuspec" - ] - }, - "System.Xml.XmlSerializer/4.3.0": { - "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==", - "type": "package", - "path": "system.xml.xmlserializer/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Xml.XmlSerializer.dll", - "lib/netstandard1.3/System.Xml.XmlSerializer.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Xml.XmlSerializer.dll", - "ref/netcore50/System.Xml.XmlSerializer.xml", - "ref/netcore50/de/System.Xml.XmlSerializer.xml", - "ref/netcore50/es/System.Xml.XmlSerializer.xml", - "ref/netcore50/fr/System.Xml.XmlSerializer.xml", - "ref/netcore50/it/System.Xml.XmlSerializer.xml", - "ref/netcore50/ja/System.Xml.XmlSerializer.xml", - "ref/netcore50/ko/System.Xml.XmlSerializer.xml", - "ref/netcore50/ru/System.Xml.XmlSerializer.xml", - "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", - "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/System.Xml.XmlSerializer.dll", - "ref/netstandard1.0/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/System.Xml.XmlSerializer.dll", - "ref/netstandard1.3/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", - "system.xml.xmlserializer.4.3.0.nupkg.sha512", - "system.xml.xmlserializer.nuspec" - ] - }, - "System.Xml.XPath/4.0.1": { - "sha512": "VQcoW7mBX543Oibk05pP+uaTTq6zLT+Cf+iwMhpxK5P6QROb+R3Jt65Q7RgNQzn1yovbioFl+LwAGkxtSPv9Dw==", - "type": "package", - "path": "system.xml.xpath/4.0.1", - "files": [ - "System.Xml.XPath.4.0.1.nupkg.sha512", - "System.Xml.XPath.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Xml.XPath.dll", - "lib/netstandard1.3/System.Xml.XPath.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Xml.XPath.dll", - "ref/netstandard1.3/System.Xml.XPath.dll", - "ref/netstandard1.3/System.Xml.XPath.xml", - "ref/netstandard1.3/de/System.Xml.XPath.xml", - "ref/netstandard1.3/es/System.Xml.XPath.xml", - "ref/netstandard1.3/fr/System.Xml.XPath.xml", - "ref/netstandard1.3/it/System.Xml.XPath.xml", - "ref/netstandard1.3/ja/System.Xml.XPath.xml", - "ref/netstandard1.3/ko/System.Xml.XPath.xml", - "ref/netstandard1.3/ru/System.Xml.XPath.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Xml.XPath.XmlDocument/4.0.1": { - "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==", - "type": "package", - "path": "system.xml.xpath.xmldocument/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512", - "system.xml.xpath.xmldocument.nuspec" - ] - }, - "xunit/2.2.0": { - "sha512": "DoB9o+x3erv1DGP+pSvrIC1pWg+23LeeG8nOGVldoF+qeWNqQbabc5jLfUWW4zLOsNZfvgHcmJIKuRcZMgoV+w==", - "type": "package", - "path": "xunit/2.2.0", - "files": [ - "xunit.2.2.0.nupkg.sha512", - "xunit.nuspec" - ] - }, - "xunit.abstractions/2.0.1": { - "sha512": "bDm/zdG5rnRDsobKuKwrvL4HccBdC0uvT12be6fG12P3d1U7u9Wkvfoq/PM2GeyIeb0Dtcmm/7k2oaawiqQ2Dg==", - "type": "package", - "path": "xunit.abstractions/2.0.1", - "files": [ - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/netstandard1.0/xunit.abstractions.dll", - "lib/netstandard1.0/xunit.abstractions.xml", - "xunit.abstractions.2.0.1.nupkg.sha512", - "xunit.abstractions.nuspec" - ] - }, - "xunit.assert/2.2.0": { - "sha512": "OZ1HADp3tv48wK+mPxdOr4kYPn3Y1RACYCWkX0IogKIyZ8fwLeLspVk9KdHfhqXGITnTvlMcOw6PmdRAwrUreQ==", - "type": "package", - "path": "xunit.assert/2.2.0", - "files": [ - "lib/netstandard1.1/xunit.assert.dll", - "lib/netstandard1.1/xunit.assert.xml", - "xunit.assert.2.2.0.nupkg.sha512", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.2.0": { - "sha512": "wuGOHofSt4sR/ros6N6S8FI2L9uuP5YsbcxM2kXpcRplMoY1pSgfEZaIRZm3NqDL/JJ/FHEksTEYkvxpc9H4Rw==", - "type": "package", - "path": "xunit.core/2.2.0", - "files": [ - "build/_desktop/xunit.execution.desktop.dll", - "build/netstandard1.0/_._", - "build/uap10.0/xunit.core.props", - "xunit.core.2.2.0.nupkg.sha512", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.2.0": { - "sha512": "2bT3sG8obWbRm45NewcV+Sr2K1whj88LnjQT7szJx1DcydgKR86ggV5rIZ5NccCWo2ctZMRb0QMYttVrhrG9Gw==", - "type": "package", - "path": "xunit.extensibility.core/2.2.0", - "files": [ - "lib/netstandard1.1/xunit.core.dll", - "lib/netstandard1.1/xunit.core.dll.tdnet", - "lib/netstandard1.1/xunit.core.xml", - "lib/netstandard1.1/xunit.runner.tdnet.dll", - "lib/netstandard1.1/xunit.runner.utility.net452.dll", - "xunit.extensibility.core.2.2.0.nupkg.sha512", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.2.0": { - "sha512": "4gjTrSUd/F6/pdsMsf+a1f1tcaUQnr59JvZQulmF8VwQbCh34ifie3iqriYyKyLmTQDUEJ/ZTPeZEDh0pxpTLA==", - "type": "package", - "path": "xunit.extensibility.execution/2.2.0", - "files": [ - "lib/net452/xunit.execution.desktop.dll", - "lib/net452/xunit.execution.desktop.xml", - "lib/netstandard1.1/xunit.execution.dotnet.dll", - "lib/netstandard1.1/xunit.execution.dotnet.xml", - "xunit.extensibility.execution.2.2.0.nupkg.sha512", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/2.2.0": { - "sha512": "CZimTpet23CeI2oXjDtICecAuEJ8Z4xSwNFY2tTKcGfm4IzKBrFmS3yzdqMMdAfiHYUgKlcyefflLOyO9ArKyQ==", - "type": "package", - "path": "xunit.runner.visualstudio/2.2.0", - "files": [ - "build/_common/xunit.abstractions.dll", - "build/_common/xunit.runner.reporters.net452.dll", - "build/_common/xunit.runner.utility.net35.dll", - "build/_common/xunit.runner.visualstudio.testadapter.dll", - "build/net20/xunit.runner.visualstudio.props", - "build/netcoreapp1.0/xunit.runner.reporters.netstandard15.dll", - "build/netcoreapp1.0/xunit.runner.utility.netstandard15.dll", - "build/netcoreapp1.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll", - "build/netcoreapp1.0/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.utility.netstandard11.dll", - "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", - "xunit.runner.visualstudio.2.2.0.nupkg.sha512", - "xunit.runner.visualstudio.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - ".NETCoreApp,Version=v2.0": [ - "Microsoft.NET.Test.Sdk >= 15.3.0-preview-20170628-02", - "Microsoft.NETCore.App >= 2.0.0", - "xunit >= 2.2.0", - "xunit.runner.visualstudio >= 2.2.0" - ] - }, - "packageFolders": { - "/Users/piotrp/code/github/piotrpMSFT/cli/.nuget/packages": {}, - "/usr/local/share/dotnet/sdk/NuGetFallbackFolder": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "/Users/piotrp/code/github/piotrpMSFT/omnisharp-vscode/test/integrationTests/testAssets/slnWithCsproj/test/test.csproj", - "projectName": "test", - "projectPath": "/Users/piotrp/code/github/piotrpMSFT/omnisharp-vscode/test/integrationTests/testAssets/slnWithCsproj/test/test.csproj", - "packagesPath": "/Users/piotrp/code/github/piotrpMSFT/cli/.nuget/packages", - "outputPath": "/Users/piotrp/code/github/piotrpMSFT/omnisharp-vscode/test/integrationTests/testAssets/slnWithCsproj/test/obj/", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "/usr/local/share/dotnet/sdk/NuGetFallbackFolder" - ], - "configFilePaths": [ - "/Users/piotrp/.nuget/NuGet/NuGet.Config" - ], - "originalTargetFrameworks": [ - "netcoreapp2.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp2.0": { - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp2.0": { - "dependencies": { - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[15.3.0-preview-20170628-02, )" - }, - "Microsoft.NETCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.0.0, )", - "autoReferenced": true - }, - "xunit": { - "target": "Package", - "version": "[2.2.0, )" - }, - "xunit.runner.visualstudio": { - "target": "Package", - "version": "[2.2.0, )" - } - }, - "imports": [ - "net461" - ], - "assetTargetFallback": true, - "warn": true - } - } - } -} \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/test/obj/test.csproj.nuget.cache b/test/integrationTests/testAssets/slnWithCsproj/test/obj/test.csproj.nuget.cache deleted file mode 100644 index 07bbf6240e..0000000000 --- a/test/integrationTests/testAssets/slnWithCsproj/test/obj/test.csproj.nuget.cache +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 1, - "dgSpecHash": "FiNYafjQARYJ5MFqcNAWBYkjbXAZGIJ8mclHfdlzLHwGKZAnN7INPNUVgoMPCrZT2ts042scBipz/HzEwD7lkA==", - "success": true -} \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/test/obj/test.csproj.nuget.g.props b/test/integrationTests/testAssets/slnWithCsproj/test/obj/test.csproj.nuget.g.props deleted file mode 100644 index ba7d85c247..0000000000 --- a/test/integrationTests/testAssets/slnWithCsproj/test/obj/test.csproj.nuget.g.props +++ /dev/null @@ -1,20 +0,0 @@ - - - - True - NuGet - /Users/piotrp/code/github/piotrpMSFT/omnisharp-vscode/test/integrationTests/testAssets/slnWithCsproj/test/obj/project.assets.json - /Users/piotrp/code/github/piotrpMSFT/cli/.nuget/packages - /Users/piotrp/code/github/piotrpMSFT/cli/.nuget/packages;/usr/local/share/dotnet/sdk/NuGetFallbackFolder - PackageReference - 4.5.0 - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - - \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/test/obj/test.csproj.nuget.g.targets b/test/integrationTests/testAssets/slnWithCsproj/test/obj/test.csproj.nuget.g.targets deleted file mode 100644 index bb3434e2cb..0000000000 --- a/test/integrationTests/testAssets/slnWithCsproj/test/obj/test.csproj.nuget.g.targets +++ /dev/null @@ -1,11 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - - \ No newline at end of file diff --git a/test/integrationTests/testAssets/slnWithCsproj/test/test.csproj b/test/integrationTests/testAssets/slnWithCsproj/test/test.csproj index edd8c463de..01fb2ee697 100644 --- a/test/integrationTests/testAssets/slnWithCsproj/test/test.csproj +++ b/test/integrationTests/testAssets/slnWithCsproj/test/test.csproj @@ -7,7 +7,7 @@ - + diff --git a/test/integrationTests/testAssets/spawnGit.ts b/test/integrationTests/testAssets/spawnGit.ts index cc4c1d4947..f407e6e183 100644 --- a/test/integrationTests/testAssets/spawnGit.ts +++ b/test/integrationTests/testAssets/spawnGit.ts @@ -25,8 +25,8 @@ export default async function spawnGit(args?: string[], options?: SpawnOptions): let spawned = spawn('git', args, optionsWithFullEnvironment); - spawned.stdout.on('data', (data) => console.log(data.toString())); - spawned.stderr.on('data', (data) => console.log(data.toString())); + //spawned.stdout.on('data', (data) => console.log(data.toString())); + //spawned.stderr.on('data', (data) => console.log(data.toString())); return join(spawned); } \ No newline at end of file diff --git a/test/integrationTests/testAssets/testAssets.ts b/test/integrationTests/testAssets/testAssets.ts index 2770069106..bec85518e1 100644 --- a/test/integrationTests/testAssets/testAssets.ts +++ b/test/integrationTests/testAssets/testAssets.ts @@ -7,17 +7,19 @@ import * as fs from 'async-file'; import * as path from 'path'; import * as vscode from 'vscode'; import spawnGit from './spawnGit'; +import { dotnetRestore } from '../../../src/features/commands'; +import { EventStream } from '../../../src/EventStream'; export class TestAssetProject { constructor(project: ITestAssetProject) { - this.relativePath = project.relativePath; + this.relativeFilePath = project.relativeFilePath; } - relativePath: string; + relativeFilePath: string; get projectDirectoryPath(): string { return path.join(vscode.workspace.workspaceFolders[0].uri.fsPath, - this.relativePath); + path.dirname(this.relativeFilePath)); } get binDirectoryPath(): string { @@ -33,8 +35,12 @@ export class TestAssetProject { await fs.rimraf(this.objDirectoryPath); } + async restore(): Promise { + await dotnetRestore(this.projectDirectoryPath, new EventStream()); + } + async addFileWithContents(fileName: string, contents: string): Promise { - let dir = path.dirname(this.projectDirectoryPath); + let dir = this.projectDirectoryPath; let loc = path.join(dir, fileName); await fs.writeTextFile(loc, contents); return vscode.Uri.file(loc); @@ -54,6 +60,10 @@ export class TestAssetWorkspace { this.projects.forEach(async p => await p.deleteBuildArtifacts()); } + async restore(): Promise { + this.projects.forEach(async p => await p.restore()); + } + get vsCodeDirectoryPath(): string { return path.join(vscode.workspace.rootPath, ".vscode"); } @@ -68,7 +78,7 @@ export class TestAssetWorkspace { async cleanupWorkspace(): Promise { for (let project of this.projects) { - let wd = path.dirname(project.projectDirectoryPath); + let wd = project.projectDirectoryPath; await spawnGit(["clean", "-xdf", "."], { cwd: wd }); await spawnGit(["checkout", "--", "."], { cwd: wd }); } @@ -80,7 +90,7 @@ export class TestAssetWorkspace { } export interface ITestAssetProject { - relativePath: string; + relativeFilePath: string; } export interface ITestAssetWorkspace { diff --git a/test/integrationTests/virtualDocumentTracker.integration.test.ts b/test/integrationTests/virtualDocumentTracker.integration.test.ts new file mode 100644 index 0000000000..6a467d4050 --- /dev/null +++ b/test/integrationTests/virtualDocumentTracker.integration.test.ts @@ -0,0 +1,61 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import * as vscode from 'vscode'; + +import { should, expect } from 'chai'; +import { activateCSharpExtension } from './integrationHelpers'; +import testAssetWorkspace from './testAssets/testAssetWorkspace'; +import { IDisposable } from '../../src/Disposable'; + +const chai = require('chai'); +chai.use(require('chai-arrays')); +chai.use(require('chai-fs')); + +suite(`Virtual Document Tracking ${testAssetWorkspace.description}`, function () { + let virtualScheme: string = "virtual"; + let virtualDocumentRegistration: IDisposable; + + suiteSetup(async function () { + should(); + await testAssetWorkspace.restore(); + await activateCSharpExtension(); + + let virtualCSharpDocumentProvider = new VirtualCSharpDocumentProvider(); + virtualDocumentRegistration = vscode.workspace.registerTextDocumentContentProvider(virtualScheme, virtualCSharpDocumentProvider); + }); + + suiteTeardown(async () => { + await testAssetWorkspace.cleanupWorkspace(); + virtualDocumentRegistration.dispose(); + }); + + test("Virtual documents are operated on.", async () => { + let virtualUri = vscode.Uri.parse(`${virtualScheme}://${testAssetWorkspace.projects[0].projectDirectoryPath}/_virtualFile.cs`); + await vscode.workspace.openTextDocument(virtualUri); + + let position = new vscode.Position(2, 4); + let completionItems = await vscode.commands.executeCommand("vscode.executeCompletionItemProvider", virtualUri, position); + + expect(completionItems.items).to.satisfy(() => { + let item = completionItems.items.find(item => { + return item.label === "while"; + }); + + return item; + }); + }); +}); + +class VirtualCSharpDocumentProvider implements vscode.TextDocumentContentProvider { + onDidChange?: vscode.Event; + + provideTextDocumentContent(uri: vscode.Uri, token: vscode.CancellationToken): vscode.ProviderResult { + return `namespace Test +{ + +}`; + } +} \ No newline at end of file diff --git a/test/unitTests/AbsolutePath.test.ts b/test/unitTests/AbsolutePath.test.ts new file mode 100644 index 0000000000..eb954e94ff --- /dev/null +++ b/test/unitTests/AbsolutePath.test.ts @@ -0,0 +1,30 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { expect } from "chai"; +import { AbsolutePath } from "../../src/packageManager/AbsolutePath"; +import { TmpAsset, CreateTmpFile } from "../../src/CreateTmpAsset"; +import { join } from "path"; + +suite(AbsolutePath.name, () => { + let tmpPath: TmpAsset; + + setup(async () => { + tmpPath = await CreateTmpFile(); + }); + + teardown(() => { + tmpPath.dispose(); + }); + + test('Throws error when the passed value is not an absolute path', () => { + expect(() => new AbsolutePath("somePath")).to.throw(Error); + }); + + test(`${AbsolutePath.getAbsolutePath.name}: Returns an absolute path based by resolving the path with the value to prepend`, () => { + let absolutePath = AbsolutePath.getAbsolutePath(tmpPath.name, "somePath"); + expect(absolutePath.value).to.be.equal(join(tmpPath.name, "somePath")); + }); +}); \ No newline at end of file diff --git a/test/unitTests/OmnisharpDownloader.test.ts b/test/unitTests/OmnisharpDownloader.test.ts new file mode 100644 index 0000000000..b510aa1e62 --- /dev/null +++ b/test/unitTests/OmnisharpDownloader.test.ts @@ -0,0 +1,83 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { OmnisharpDownloader } from "../../src/omnisharp/OmnisharpDownloader"; +import NetworkSettings from "../../src/NetworkSettings"; +import { EventStream } from "../../src/EventStream"; +import { PlatformInformation } from "../../src/platform"; +import { CreateTmpDir, TmpAsset } from "../../src/CreateTmpAsset"; +import * as util from '../../src/common'; +import * as path from 'path'; +import MockHttpsServer from "./testAssets/MockHttpsServer"; +import {expect} from 'chai'; +import TestZip from "./testAssets/TestZip"; +import { createTestFile } from "./testAssets/TestFile"; +import { PackageInstallation, LogPlatformInfo, DownloadStart, DownloadSizeObtained, DownloadProgress, DownloadSuccess, InstallationStart, InstallationSuccess } from "../../src/omnisharp/loggingEvents"; +import TestEventBus from "./testAssets/TestEventBus"; +import { testPackageJSON } from "./testAssets/testAssets"; + +suite('OmnisharpDownloader', () => { + const networkSettingsProvider = () => new NetworkSettings(undefined, false); + let eventStream : EventStream; + const installPath = "somePath"; + let platformInfo = new PlatformInformation("win32", "x86"); + let downloader: OmnisharpDownloader; + let server: MockHttpsServer; + let extensionPath: string; + const version = "1.2.3"; + let tmpDir: TmpAsset; + let testZip: TestZip; + let eventBus: TestEventBus; + + setup(async () => { + eventStream = new EventStream(); + eventBus = new TestEventBus(eventStream); + tmpDir = await CreateTmpDir(true); + extensionPath = tmpDir.name; + downloader = new OmnisharpDownloader(networkSettingsProvider, eventStream, testPackageJSON, platformInfo, extensionPath); + server = await MockHttpsServer.CreateMockHttpsServer(); + testZip = await TestZip.createTestZipAsync(createTestFile("Foo", "foo.txt")); + await server.start(); + server.addRequestHandler('GET', `/releases/${version}/omnisharp-win-x86.zip`, 200, { + "content-type": "application/zip", + "content-length": testZip.size + }, testZip.buffer); + }); + + test('Throws error if request is made for a version that doesnot exist on the server', () => { + expect(downloader.DownloadAndInstallOmnisharp("1.00000001.0000", server.baseUrl, installPath)).to.be.rejectedWith(Error); + }); + + test('Packages are downloaded and installed', async () => { + await downloader.DownloadAndInstallOmnisharp(version, server.baseUrl, installPath); + for (let elem of testZip.files) { + let filePath = path.join(extensionPath, installPath, version, elem.path); + expect(await util.fileExists(filePath)).to.be.true; + } + }); + + test('Events are created', async () => { + let expectedSequence = [ + new PackageInstallation('OmniSharp Version = 1.2.3'), + new LogPlatformInfo(new PlatformInformation("win32", "x86")), + new DownloadStart('OmniSharp for Windows (.NET 4.6 / x86), Version = 1.2.3'), + new DownloadSizeObtained(testZip.size), + new DownloadProgress(100, 'OmniSharp for Windows (.NET 4.6 / x86), Version = 1.2.3'), + new DownloadSuccess(' Done!'), + new InstallationStart('OmniSharp for Windows (.NET 4.6 / x86), Version = 1.2.3'), + new InstallationSuccess() + ]; + + expect(eventBus.getEvents()).to.be.empty; + await downloader.DownloadAndInstallOmnisharp(version, server.baseUrl, installPath); + expect(eventBus.getEvents()).to.be.deep.equal(expectedSequence); + }); + + teardown(async () => { + tmpDir.dispose(); + await server.stop(); + eventBus.dispose(); + }); +}); \ No newline at end of file diff --git a/test/unitTests/OmnisharpManager.test.ts b/test/unitTests/OmnisharpManager.test.ts new file mode 100644 index 0000000000..3c4a1b78c7 --- /dev/null +++ b/test/unitTests/OmnisharpManager.test.ts @@ -0,0 +1,155 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { OmnisharpManager } from "../../src/omnisharp/OmnisharpManager"; +import MockHttpsServer from "./testAssets/MockHttpsServer"; +import TestZip from "./testAssets/TestZip"; +import { createTestFile } from "./testAssets/TestFile"; +import { PlatformInformation } from "../../src/platform"; +import { OmnisharpDownloader } from "../../src/omnisharp/OmnisharpDownloader"; +import NetworkSettings from "../../src/NetworkSettings"; +import { EventStream } from "../../src/EventStream"; +import { testPackageJSON } from "./testAssets/testAssets"; +import { TmpAsset, CreateTmpDir, CreateTmpFile } from "../../src/CreateTmpAsset"; +import { expect } from 'chai'; +import * as path from 'path'; +import * as util from '../../src/common'; + +suite(OmnisharpManager.name, () => { + let server: MockHttpsServer; + const eventStream = new EventStream(); + let manager : OmnisharpManager; + const defaultVersion = "0.1.2"; + const testVersion = "1.2.3"; + const latestVersion = "2.3.4"; + const latestfilePath = "latestPath"; + const installPath = "somePath"; + let tmpInstallDir: TmpAsset; + let extensionPath: string; + let tmpFile: TmpAsset; + let testZip: TestZip; + + [ + { + platformInfo: new PlatformInformation("win32", "x86"), + executable: "OmniSharp.exe", + platformId: "win-x86" + }, + { + platformInfo: new PlatformInformation("win32", "x86_64"), + executable: "OmniSharp.exe", + platformId: "win-x64" + }, + { + platformInfo: new PlatformInformation("linux", "x86_64"), + executable: "run", + platformId: "linux-x64" + }, + { + platformInfo: new PlatformInformation("linux", "x86"), + executable: "run", + platformId: "linux-x86" + }, + { + platformInfo: new PlatformInformation("darwin", "x86"), + executable: "run", + platformId: "osx" + } + ].forEach((elem) => { + suite(elem.platformInfo.toString(), () => { + setup(async () => { + server = await MockHttpsServer.CreateMockHttpsServer(); + await server.start(); + tmpInstallDir = await CreateTmpDir(true); + extensionPath = tmpInstallDir.name; + manager = GetTestOmniSharpManager(elem.platformInfo, eventStream, extensionPath); + testZip = await TestZip.createTestZipAsync(createTestFile("Foo", "foo.txt")); + server.addRequestHandler('GET', `/releases/${testVersion}/omnisharp-${elem.platformId}.zip`, 200, { + "content-type": "application/zip", + "content-length": testZip.size + }, testZip.buffer); + + server.addRequestHandler('GET', `/${latestfilePath}`, 200, { + "content-type": "application/text", + }, latestVersion); + + server.addRequestHandler('GET', `/releases/${latestVersion}/omnisharp-${elem.platformId}.zip`, 200, { + "content-type": "application/zip", + "content-length": testZip.size + }, testZip.buffer); + }); + + test('Throws error if the path is neither an absolute path nor a valid semver, nor the string "latest"', async () => { + expect(manager.GetOmniSharpLaunchInfo(defaultVersion, "Some incorrect path", server.baseUrl, latestfilePath, installPath, extensionPath)).to.be.rejectedWith(Error); + }); + + test('Throws error when the specified path is an invalid semver', async () => { + expect(manager.GetOmniSharpLaunchInfo(defaultVersion, "a.b.c", server.baseUrl, latestfilePath, installPath, extensionPath)).to.be.rejectedWith(Error); + }); + + test('Returns the same path if absolute path to an existing file is passed', async () => { + tmpFile = await CreateTmpFile(); + let launchInfo = await manager.GetOmniSharpLaunchInfo(defaultVersion, tmpFile.name, server.baseUrl, latestfilePath, installPath, extensionPath); + expect(launchInfo.LaunchPath).to.be.equal(tmpFile.name); + }); + + test('Returns the default path if the omnisharp path is not set', async () => { + let launchInfo = await manager.GetOmniSharpLaunchInfo(defaultVersion, "", server.baseUrl, latestfilePath, installPath, extensionPath); + expect(launchInfo.LaunchPath).to.be.equal(path.join(extensionPath, ".omnisharp", defaultVersion, elem.executable)); + if (elem.platformInfo.isWindows()) { + expect(launchInfo.MonoLaunchPath).to.be.undefined; + } + else { + expect(launchInfo.MonoLaunchPath).to.be.equal(path.join(extensionPath, ".omnisharp", defaultVersion, "omnisharp", "OmniSharp.exe")); + } + }); + + test('Installs the latest version and returns the launch path ', async () => { + let launchInfo = await manager.GetOmniSharpLaunchInfo(defaultVersion, "latest", server.baseUrl, latestfilePath, installPath, extensionPath); + expect(launchInfo.LaunchPath).to.be.equal(path.join(extensionPath, installPath, latestVersion, elem.executable)); + if (elem.platformInfo.isWindows()) { + expect(launchInfo.MonoLaunchPath).to.be.undefined; + } + else { + expect(launchInfo.MonoLaunchPath).to.be.equal(path.join(extensionPath, installPath, latestVersion, "omnisharp", "OmniSharp.exe")); + } + }); + + test('Installs the test version and returns the launch path', async () => { + let launchInfo = await manager.GetOmniSharpLaunchInfo(defaultVersion, testVersion, server.baseUrl, latestfilePath, installPath, extensionPath); + expect(launchInfo.LaunchPath).to.be.equal(path.join(extensionPath, installPath, testVersion, elem.executable)); + if (elem.platformInfo.isWindows()) { + expect(launchInfo.MonoLaunchPath).to.be.undefined; + } + else { + expect(launchInfo.MonoLaunchPath).to.be.equal(path.join(extensionPath, installPath, testVersion, "omnisharp", "OmniSharp.exe")); + } + }); + + test('Downloads package from given url and installs them at the specified path', async () => { + await manager.GetOmniSharpLaunchInfo(defaultVersion, testVersion, server.baseUrl, latestfilePath, installPath, extensionPath); + for (let elem of testZip.files) { + let filePath = path.join(extensionPath, installPath, testVersion, elem.path); + expect(await util.fileExists(filePath)).to.be.true; + } + }); + }); + }); + + teardown(async () => { + await server.stop(); + if (tmpFile) { + tmpFile.dispose(); + tmpFile = undefined; + } + tmpInstallDir.dispose(); + extensionPath = undefined; + }); +}); + +function GetTestOmniSharpManager(platformInfo: PlatformInformation, eventStream: EventStream, extensionPath: string): OmnisharpManager { + let downloader = new OmnisharpDownloader(() => new NetworkSettings(undefined, false), eventStream, testPackageJSON, platformInfo, extensionPath); + return new OmnisharpManager(downloader, platformInfo); +} \ No newline at end of file diff --git a/test/featureTests/OmnisharpPackageCreator.test.ts b/test/unitTests/OmnisharpPackageCreator.test.ts similarity index 100% rename from test/featureTests/OmnisharpPackageCreator.test.ts rename to test/unitTests/OmnisharpPackageCreator.test.ts index 4fa10eda2e..5fa034211e 100644 --- a/test/featureTests/OmnisharpPackageCreator.test.ts +++ b/test/unitTests/OmnisharpPackageCreator.test.ts @@ -5,8 +5,8 @@ import { assert, should, expect } from "chai"; import { SetBinaryAndGetPackage, GetPackagesFromVersion } from "../../src/omnisharp/OmnisharpPackageCreator"; -import { testPackageJSON } from "./testAssets/testAssets"; import { Package } from "../../src/packageManager/Package"; +import { testPackageJSON } from "./testAssets/testAssets"; suite("GetOmnisharpPackage : Output package depends on the input package and other input parameters like serverUrl", () => { diff --git a/test/unitTests/OptionObserver/OptionChangeObserver.test.ts b/test/unitTests/OptionObserver/OptionChangeObserver.test.ts new file mode 100644 index 0000000000..0933f7e9e1 --- /dev/null +++ b/test/unitTests/OptionObserver/OptionChangeObserver.test.ts @@ -0,0 +1,127 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { use as chaiUse, expect, should } from 'chai'; +import { updateConfig, getVSCodeWithConfig } from '../testAssets/Fakes'; +import { Observable } from 'rxjs/Observable'; +import 'rxjs/add/observable/fromPromise'; +import 'rxjs/add/operator/timeout'; +import { vscode } from '../../../src/vscodeAdapter'; +import { ShowOmniSharpConfigChangePrompt } from '../../../src/observers/OptionChangeObserver'; +import { Subject } from 'rxjs/Subject'; +import { Options } from '../../../src/omnisharp/options'; +import { BehaviorSubject } from 'rxjs/BehaviorSubject'; + +chaiUse(require('chai-as-promised')); +chaiUse(require('chai-string')); + +suite("OmniSharpConfigChangeObserver", () => { + suiteSetup(() => should()); + + let doClickOk: () => void; + let doClickCancel: () => void; + let signalCommandDone: () => void; + let commandDone: Promise; + let vscode: vscode; + let infoMessage: string; + let invokedCommand: string; + let optionObservable: Subject; + + setup(() => { + vscode = getVSCode(); + optionObservable = new BehaviorSubject(Options.Read(vscode)); + ShowOmniSharpConfigChangePrompt(optionObservable, vscode); + commandDone = new Promise(resolve => { + signalCommandDone = () => { resolve(); }; + }); + }); + + [ + { config: "omnisharp", section: "path", value: "somePath" }, + { config: "omnisharp", section: "waitForDebugger", value: true }, + { config: "omnisharp", section: "useGlobalMono", value: "always" } + + ].forEach(elem => { + suite(`When the ${elem.config} ${elem.section} changes`, () => { + setup(() => { + expect(infoMessage).to.be.undefined; + expect(invokedCommand).to.be.undefined; + updateConfig(vscode, elem.config, elem.section, elem.value); + optionObservable.next(Options.Read(vscode)); + }); + + test(`The information message is shown`, async () => { + expect(infoMessage).to.be.equal("OmniSharp configuration has changed. Would you like to relaunch the OmniSharp server with your changes?"); + }); + + test('Given an information message if the user clicks cancel, the command is not executed', async () => { + doClickCancel(); + await expect(Observable.fromPromise(commandDone).timeout(1).toPromise()).to.be.rejected; + expect(invokedCommand).to.be.undefined; + }); + + test('Given an information message if the user clicks Restore, the command is executed', async () => { + doClickOk(); + await commandDone; + expect(invokedCommand).to.be.equal("o.restart"); + }); + }); + }); + + suite('Information Message is not shown on change in',() => { + [ + { config: "csharp", section: 'disableCodeActions', value: true }, + { config: "csharp", section: 'testsCodeLens.enabled', value: false }, + { config: "omnisharp", section: 'referencesCodeLens.enabled', value: false }, + { config: "csharp", section: 'format.enable', value: false }, + { config: "omnisharp", section: 'useEditorFormattingSettings', value: false }, + { config: "omnisharp", section: 'maxProjectResults', value: 1000 }, + { config: "omnisharp", section: 'projectLoadTimeout', value: 1000 }, + { config: "omnisharp", section: 'autoStart', value: false }, + { config: "omnisharp", section: 'loggingLevel', value: 'verbose' } + ].forEach(elem => { + test(`${elem.config} ${elem.section}`, async () => { + expect(infoMessage).to.be.undefined; + expect(invokedCommand).to.be.undefined; + updateConfig(vscode, elem.config, elem.section, elem.value); + optionObservable.next(Options.Read(vscode)); + expect(infoMessage).to.be.undefined; + }); + }); + }); + + teardown(() => { + infoMessage = undefined; + invokedCommand = undefined; + doClickCancel = undefined; + doClickOk = undefined; + signalCommandDone = undefined; + commandDone = undefined; + }); + + function getVSCode(): vscode { + let vscode = getVSCodeWithConfig(); + vscode.window.showInformationMessage = async (message: string, ...items: T[]) => { + infoMessage = message; + return new Promise(resolve => { + doClickCancel = () => { + resolve(undefined); + }; + + doClickOk = () => { + resolve(...items); + }; + }); + }; + + vscode.commands.executeCommand = (command: string, ...rest: any[]) => { + invokedCommand = command; + signalCommandDone(); + return undefined; + }; + + return vscode; + } +}); diff --git a/test/unitTests/OptionObserver/OptionProvider.test.ts b/test/unitTests/OptionObserver/OptionProvider.test.ts index e04a957a0c..46c041ec1e 100644 --- a/test/unitTests/OptionObserver/OptionProvider.test.ts +++ b/test/unitTests/OptionObserver/OptionProvider.test.ts @@ -5,71 +5,35 @@ import { should, expect } from 'chai'; import { getVSCodeWithConfig, updateConfig } from "../testAssets/Fakes"; -import OptionStream from "../../../src/observables/OptionStream"; -import { vscode, ConfigurationChangeEvent } from "../../../src/vscodeAdapter"; -import Disposable from "../../../src/Disposable"; +import { vscode } from "../../../src/vscodeAdapter"; import OptionProvider from '../../../src/observers/OptionProvider'; +import { Subject } from 'rxjs/Subject'; +import { Options } from '../../../src/omnisharp/options'; suite('OptionProvider', () => { suiteSetup(() => should()); let vscode: vscode; - let listenerFunction: Array<(e: ConfigurationChangeEvent) => any>; let optionProvider: OptionProvider; - + let optionObservable: Subject; + setup(() => { - listenerFunction = new Array<(e: ConfigurationChangeEvent) => any>(); - vscode = getVSCode(listenerFunction); - let optionStream = new OptionStream(vscode); - optionProvider = new OptionProvider(optionStream); + vscode = getVSCodeWithConfig(); + optionObservable = new Subject(); + optionProvider = new OptionProvider(optionObservable); }); - test("Gives the default options if there is no change", () => { - let options = optionProvider.GetLatestOptions(); - expect(options.path).to.be.null; - options.useGlobalMono.should.equal("auto"); - options.waitForDebugger.should.equal(false); - options.loggingLevel.should.equal("information"); - options.autoStart.should.equal(true); - options.projectLoadTimeout.should.equal(60); - options.maxProjectResults.should.equal(250); - options.useEditorFormattingSettings.should.equal(true); - options.useFormatting.should.equal(true); - options.showReferencesCodeLens.should.equal(true); - options.showTestsCodeLens.should.equal(true); - options.disableCodeActions.should.equal(false); - options.disableCodeActions.should.equal(false); + test("Throws exception when no options are pushed", () => { + expect(optionProvider.GetLatestOptions).to.throw(); }); - test("Gives the latest options if there are changes in omnisharp config", () => { + test("Gives the latest options when options are changed", () => { let changingConfig = "omnisharp"; updateConfig(vscode, changingConfig, 'path', "somePath"); - listenerFunction.forEach(listener => listener(getConfigChangeEvent(changingConfig))); - let options = optionProvider.GetLatestOptions(); - expect(options.path).to.be.equal("somePath"); - }); - - test("Gives the latest options if there are changes in csharp config", () => { - let changingConfig = 'csharp'; - updateConfig(vscode, changingConfig, 'disableCodeActions', true); - listenerFunction.forEach(listener => listener(getConfigChangeEvent(changingConfig))); + optionObservable.next(Options.Read(vscode)); + updateConfig(vscode, changingConfig, 'path', "anotherPath"); + optionObservable.next(Options.Read(vscode)); let options = optionProvider.GetLatestOptions(); - expect(options.disableCodeActions).to.be.equal(true); + expect(options.path).to.be.equal("anotherPath"); }); -}); - -function getVSCode(listenerFunction: Array<(e: ConfigurationChangeEvent) => any>): vscode { - let vscode = getVSCodeWithConfig(); - vscode.workspace.onDidChangeConfiguration = (listener: (e: ConfigurationChangeEvent) => any, thisArgs?: any, disposables?: Disposable[]) => { - listenerFunction.push(listener); - return new Disposable(() => { }); - }; - - return vscode; -} - -function getConfigChangeEvent(changingConfig: string): ConfigurationChangeEvent { - return { - affectsConfiguration: (section: string) => section == changingConfig - }; -} \ No newline at end of file +}); \ No newline at end of file diff --git a/test/unitTests/Packages/FileDownloader.test.ts b/test/unitTests/Packages/FileDownloader.test.ts index bd87b39710..2f84f08ae1 100644 --- a/test/unitTests/Packages/FileDownloader.test.ts +++ b/test/unitTests/Packages/FileDownloader.test.ts @@ -3,16 +3,14 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -import * as fs from 'async-file'; import * as chai from 'chai'; import { EventStream } from '../../../src/EventStream'; import { DownloadFile } from '../../../src/packageManager/FileDownloader'; import NetworkSettings from '../../../src/NetworkSettings'; -import { BaseEvent, DownloadStart, DownloadSizeObtained, DownloadProgress, DownloadSuccess, DownloadFallBack, DownloadFailure } from '../../../src/omnisharp/loggingEvents'; -import { getRequestHandler } from '../testAssets/MockHttpServerRequestHandler'; +import { DownloadStart, DownloadSizeObtained, DownloadProgress, DownloadSuccess, DownloadFallBack, DownloadFailure } from '../../../src/omnisharp/loggingEvents'; +import MockHttpsServer from '../testAssets/MockHttpsServer'; +import TestEventBus from '../testAssets/TestEventBus'; -const getPort = require('get-port'); -const ServerMock = require("mock-http-server"); chai.use(require("chai-as-promised")); chai.use(require('chai-arrays')); const expect = chai.expect; @@ -24,7 +22,7 @@ suite("FileDownloader", () => { const errorUrlPath = '/errorResource'; const networkSettingsProvider = () => new NetworkSettings(undefined, false); const eventStream = new EventStream(); - let eventBus: BaseEvent[]; + let eventBus: TestEventBus; const getPrimaryURLEvents = () => { return [ new DownloadStart(fileDescription), @@ -37,36 +35,21 @@ suite("FileDownloader", () => { return [ new DownloadStart(fileDescription), new DownloadFailure("failed (error code '404')"), - new DownloadFallBack(`${httpsServerUrl}${correctUrlPath}`), + new DownloadFallBack(`${server.baseUrl}${correctUrlPath}`), new DownloadSizeObtained(12), new DownloadProgress(100, fileDescription), new DownloadSuccess(' Done!')]; }; - eventStream.subscribe((event) => eventBus.push(event)); - - let server: any; - let httpsServerUrl: string; - - suiteSetup(async () => { - let port = await getPort(); - server = new ServerMock(null, - { - host: "localhost", - port: port, - key: await fs.readFile("test/unitTests/testAssets/private.pem"), - cert: await fs.readFile("test/unitTests/testAssets/public.pem") - }); - - httpsServerUrl = `https://127.0.0.1:${port}`; - }); + let server: MockHttpsServer; setup(async () => { - await new Promise(resolve => server.start(resolve)); - eventBus = []; - server.on(getRequestHandler('GET', correctUrlPath, 200, { "content-type": "text/plain" }, "Test content")); - server.on(getRequestHandler('GET', errorUrlPath, 404)); - server.on(getRequestHandler('GET', redirectUrlPath, 301, { "location": `${httpsServerUrl}${correctUrlPath}` })); + server = await MockHttpsServer.CreateMockHttpsServer(); + await server.start(); + eventBus = new TestEventBus(eventStream); + server.addRequestHandler('GET', correctUrlPath, 200, { "content-type": "text/plain" }, "Test content"); + server.addRequestHandler('GET', errorUrlPath, 404); + server.addRequestHandler('GET', redirectUrlPath, 301, { "location": `${server.baseUrl}${correctUrlPath}` }); }); suite('If the response status Code is 200, the download succeeds', () => { @@ -94,7 +77,7 @@ suite("FileDownloader", () => { test('Events are created in the correct order', async () => { await DownloadFile(fileDescription, eventStream, networkSettingsProvider, getURL(elem.urlPath), getURL(elem.fallBackUrlPath)); - expect(eventBus).to.be.deep.equal(elem.getEventSequence()); + expect(eventBus.getEvents()).to.be.deep.equal(elem.getEventSequence()); }); }); }); @@ -122,17 +105,18 @@ suite("FileDownloader", () => { await DownloadFile(fileDescription, eventStream, networkSettingsProvider, getURL(errorUrlPath)); } catch (error) { - expect(eventBus).to.be.deep.equal(eventsSequence); + expect(eventBus.getEvents()).to.be.deep.equal(eventsSequence); } }); }); teardown(async () => { - await new Promise((resolve, reject) => server.stop(resolve)); + await server.stop(); + eventBus.dispose(); }); function getURL(urlPath: string) { - return `${httpsServerUrl}${urlPath}`; + return `${server.baseUrl}${urlPath}`; } }); diff --git a/test/unitTests/Packages/PackageFilterer.test.ts b/test/unitTests/Packages/PackageFilterer.test.ts index d17e9024c4..cc26e8a56d 100644 --- a/test/unitTests/Packages/PackageFilterer.test.ts +++ b/test/unitTests/Packages/PackageFilterer.test.ts @@ -3,18 +3,19 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import * as chai from 'chai'; -import * as util from '../../../src/common'; import { CreateTmpFile, TmpAsset } from "../../../src/CreateTmpAsset"; import { PlatformInformation } from "../../../src/platform"; import { filterPackages } from "../../../src/packageManager/PackageFilterer"; -import { ResolveFilePaths } from "../../../src/packageManager/PackageFilePathResolver"; -import { Package } from "../../../src/packageManager/Package"; +import { Package } from '../../../src/packageManager/Package'; +import { AbsolutePathPackage } from '../../../src/packageManager/AbsolutePathPackage'; +import { AbsolutePath } from '../../../src/packageManager/AbsolutePath'; let expect = chai.expect; suite('PackageFilterer', () => { let tmpFile: TmpAsset; - const extensionPath = "ExtensionPath"; + let absolutePathPackage: AbsolutePathPackage[]; + const extensionPath = "/ExtensionPath"; const packages = [ { "description": "Platfrom1-Architecture1 uninstalled package", @@ -62,15 +63,13 @@ suite('PackageFilterer', () => { setup(async () => { tmpFile = await CreateTmpFile(); - packages[1].installTestPath = tmpFile.name; - util.setExtensionPath(extensionPath); - // we need to set the extension path because fileresolver uses it - packages.forEach(pkg => ResolveFilePaths(pkg)); + absolutePathPackage = packages.map(pkg => AbsolutePathPackage.getAbsolutePathPackage(pkg, extensionPath)); + absolutePathPackage[1].installTestPath = new AbsolutePath(tmpFile.name); }); test('Filters the packages based on Platform Information', async () => { let platformInfo = new PlatformInformation("platform2", "architecture2"); - let filteredPackages = await filterPackages(packages, platformInfo); + let filteredPackages = await filterPackages(absolutePathPackage, platformInfo); expect(filteredPackages.length).to.be.equal(1); expect(filteredPackages[0].description).to.be.equal("Platfrom2-Architecture2 uninstalled package"); expect(filteredPackages[0].platforms[0]).to.be.equal("platform2"); @@ -79,7 +78,7 @@ suite('PackageFilterer', () => { test('Returns only uninstalled packages', async () => { let platformInfo = new PlatformInformation("platform1", "architecture1"); - let filteredPackages = await filterPackages(packages, platformInfo); + let filteredPackages = await filterPackages(absolutePathPackage, platformInfo); expect(filteredPackages.length).to.be.equal(1); expect(filteredPackages[0].description).to.be.equal("Platfrom1-Architecture1 uninstalled package"); expect(filteredPackages[0].platforms[0]).to.be.equal("platform1"); @@ -88,7 +87,7 @@ suite('PackageFilterer', () => { test('Doesnot filter the package if install test path is not specified', async () => { let platformInfo = new PlatformInformation("platform3", "architecture3"); - let filteredPackages = await filterPackages(packages, platformInfo); + let filteredPackages = await filterPackages(absolutePathPackage, platformInfo); expect(filteredPackages.length).to.be.equal(1); expect(filteredPackages[0].description).to.be.equal("Platfrom3-Architecture3 with no installTestPath specified"); expect(filteredPackages[0].platforms[0]).to.be.equal("platform3"); diff --git a/test/unitTests/Packages/PackageManager.test.ts b/test/unitTests/Packages/PackageManager.test.ts index f6fa3887d2..ab9789a2ba 100644 --- a/test/unitTests/Packages/PackageManager.test.ts +++ b/test/unitTests/Packages/PackageManager.test.ts @@ -8,74 +8,62 @@ import * as path from 'path'; import * as chai from 'chai'; import * as util from '../../../src/common'; import { CreateTmpDir, TmpAsset } from '../../../src/CreateTmpAsset'; -import { Binaries, Files, createTestZipAsync } from '../testAssets/CreateTestZip'; -import { Package } from '../../../src/packageManager/Package'; +import TestZip from '../testAssets/TestZip'; import { DownloadAndInstallPackages } from '../../../src/packageManager/PackageManager'; import NetworkSettings from '../../../src/NetworkSettings'; import { PlatformInformation } from '../../../src/platform'; import { EventStream } from '../../../src/EventStream'; -import { BaseEvent, DownloadStart, DownloadSizeObtained, DownloadProgress, DownloadSuccess, InstallationStart } from '../../../src/omnisharp/loggingEvents'; -import { getRequestHandler } from '../testAssets/MockHttpServerRequestHandler'; +import { DownloadStart, DownloadSizeObtained, DownloadProgress, DownloadSuccess, InstallationStart } from '../../../src/omnisharp/loggingEvents'; +import MockHttpsServer from '../testAssets/MockHttpsServer'; +import { createTestFile } from '../testAssets/TestFile'; +import TestEventBus from '../testAssets/TestEventBus'; +import { Package } from '../../../src/packageManager/Package'; chai.use(require("chai-as-promised")); const expect = chai.expect; -const ServerMock = require("mock-http-server"); -const getPort = require('get-port'); suite("Package Manager", () => { let tmpInstallDir: TmpAsset; - let server: any; - let downloadUrl: string; - let allFiles: Array<{ content: string, path: string }>; - let installationPath: string; - let eventBus: Array; + let server: MockHttpsServer; + let testZip: TestZip; + let extensionPath: string; + let eventStream: EventStream; + let eventBus: TestEventBus; let packages: Package[]; const packageDescription = "Test Package"; - const eventStream = new EventStream(); - eventStream.subscribe(event => eventBus.push(event)); const windowsPlatformInfo = new PlatformInformation("win32", "x86"); const linuxPlatformInfo = new PlatformInformation("linux", "x86"); const networkSettingsProvider = () => new NetworkSettings(undefined, false); - suiteSetup(async () => { - let port = await getPort(); - downloadUrl = `https://localhost:${port}/package`; - server = new ServerMock(null, - { - host: "localhost", - port: port, - key: await fs.readFile("test/unitTests/testAssets/private.pem"), - cert: await fs.readFile("test/unitTests/testAssets/public.pem") - }); - }); - setup(async () => { - eventBus = []; + eventStream = new EventStream(); + server = await MockHttpsServer.CreateMockHttpsServer(); + eventBus = new TestEventBus(eventStream); tmpInstallDir = await CreateTmpDir(true); - installationPath = tmpInstallDir.name; + extensionPath = tmpInstallDir.name; packages = [ { - url: downloadUrl, + url: `${server.baseUrl}/package`, description: packageDescription, - installPath: installationPath, + installPath: "installPath", platforms: [windowsPlatformInfo.platform], architectures: [windowsPlatformInfo.architecture] }]; - allFiles = [...Files, ...Binaries]; - let buffer = await createTestZipAsync(allFiles); - await new Promise(resolve => server.start(resolve)); //start the server - server.on(getRequestHandler('GET', '/package', 200, { + + testZip = await TestZip.createTestZipAsync(createTestFile("Foo", "foo.txt")); + await server.start(); + server.addRequestHandler('GET', '/package', 200, { "content-type": "application/zip", - "content-length": buffer.length - }, buffer)); + "content-length": testZip.size + }, testZip.buffer); }); test("Downloads the package and installs at the specified path", async () => { - await DownloadAndInstallPackages(packages, networkSettingsProvider, windowsPlatformInfo, eventStream); - for (let elem of allFiles) { - let filePath = path.join(installationPath, elem.path); + await DownloadAndInstallPackages(packages, networkSettingsProvider, windowsPlatformInfo, eventStream, extensionPath); + for (let elem of testZip.files) { + let filePath = path.join(extensionPath, "installPath", elem.path); expect(await util.fileExists(filePath)).to.be.true; } }); @@ -83,19 +71,19 @@ suite("Package Manager", () => { test("Events are created in the correct order", async () => { let eventsSequence = [ new DownloadStart(packageDescription), - new DownloadSizeObtained(396), + new DownloadSizeObtained(testZip.size), new DownloadProgress(100, packageDescription), new DownloadSuccess(' Done!'), new InstallationStart(packageDescription) ]; - await DownloadAndInstallPackages(packages, networkSettingsProvider, windowsPlatformInfo, eventStream); - expect(eventBus).to.be.deep.equal(eventsSequence); + await DownloadAndInstallPackages(packages, networkSettingsProvider, windowsPlatformInfo, eventStream, extensionPath); + expect(eventBus.getEvents()).to.be.deep.equal(eventsSequence); }); test("Installs only the platform specific packages", async () => { //since there is no linux package specified no package should be installed - await DownloadAndInstallPackages(packages, networkSettingsProvider, linuxPlatformInfo, eventStream); + await DownloadAndInstallPackages(packages, networkSettingsProvider, linuxPlatformInfo, eventStream, extensionPath); let files = await fs.readdir(tmpInstallDir.name); expect(files.length).to.equal(0); }); @@ -105,6 +93,7 @@ suite("Package Manager", () => { tmpInstallDir.dispose(); } - await new Promise((resolve, reject) => server.stop(resolve)); + await server.stop(); + eventBus.dispose(); }); }); \ No newline at end of file diff --git a/test/unitTests/Packages/ZipInstaller.test.ts b/test/unitTests/Packages/ZipInstaller.test.ts index 371b82f551..f100213948 100644 --- a/test/unitTests/Packages/ZipInstaller.test.ts +++ b/test/unitTests/Packages/ZipInstaller.test.ts @@ -12,54 +12,64 @@ import { InstallZip } from '../../../src/packageManager/ZipInstaller'; import { EventStream } from '../../../src/EventStream'; import { PlatformInformation } from '../../../src/platform'; import { BaseEvent, InstallationStart, ZipError } from '../../../src/omnisharp/loggingEvents'; -import { Files, Binaries, createTestZipAsync } from '../testAssets/CreateTestZip'; +import { createTestFile } from '../testAssets/TestFile'; +import TestZip from '../testAssets/TestZip'; +import TestEventBus from '../testAssets/TestEventBus'; +import { AbsolutePath } from '../../../src/packageManager/AbsolutePath'; chai.use(require("chai-as-promised")); let expect = chai.expect; suite('ZipInstaller', () => { - let tmpInstallDir: TmpAsset; - let installationPath: string; - let testBuffer: Buffer; + const binaries = [ + createTestFile("binary1", "binary1.txt"), + createTestFile("binary2", "binary2.txt") + ]; + + const files = [ + createTestFile("file1", "file1.txt"), + createTestFile("file2", "folder/file2.txt") + ]; + let tmpInstallDir: TmpAsset; + let installationPath: AbsolutePath; + let testZip: TestZip; const fileDescription = "somefile"; - const eventStream = new EventStream(); - let eventBus: BaseEvent[]; - eventStream.subscribe((event) => eventBus.push(event)); - let allFiles: Array<{ content: string, path: string }>; + let eventStream: EventStream; + let eventBus: TestEventBus; setup(async () => { - eventBus = []; + eventStream = new EventStream(); + eventBus = new TestEventBus(eventStream); tmpInstallDir = await CreateTmpDir(true); - installationPath = tmpInstallDir.name; - allFiles = [...Files, ...Binaries]; - testBuffer = await createTestZipAsync(allFiles); + installationPath = new AbsolutePath(tmpInstallDir.name); + testZip = await TestZip.createTestZipAsync(...files, ...binaries); util.setExtensionPath(tmpInstallDir.name); }); test('The folder is unzipped and all the files are present at the expected paths', async () => { - await InstallZip(testBuffer, fileDescription, installationPath, [], eventStream); - for (let elem of allFiles) { - let filePath = path.join(installationPath, elem.path); + await InstallZip(testZip.buffer, fileDescription, installationPath, [], eventStream); + for (let elem of testZip.files) { + let filePath = path.join(installationPath.value, elem.path); expect(await util.fileExists(filePath)).to.be.true; } }); test('The folder is unzipped and all the expected events are created', async () => { - await InstallZip(testBuffer, fileDescription, installationPath, [], eventStream); + await InstallZip(testZip.buffer, fileDescription, installationPath, [], eventStream); let eventSequence: BaseEvent[] = [ new InstallationStart(fileDescription) ]; - expect(eventBus).to.be.deep.equal(eventSequence); + expect(eventBus.getEvents()).to.be.deep.equal(eventSequence); }); test('The folder is unzipped and the binaries have the expected permissions(except on Windows)', async () => { if (!((await PlatformInformation.GetCurrent()).isWindows())) { - let resolvedBinaryPaths = Binaries.map(binary => path.join(installationPath, binary.path)); - await InstallZip(testBuffer, fileDescription, installationPath, resolvedBinaryPaths, eventStream); - for (let binaryPath of resolvedBinaryPaths) { - expect(await util.fileExists(binaryPath)).to.be.true; - let mode = (await fs.stat(binaryPath)).mode; + let absoluteBinaries = binaries.map(binary => AbsolutePath.getAbsolutePath(installationPath.value, binary.path)); + await InstallZip(testZip.buffer, fileDescription, installationPath, absoluteBinaries, eventStream); + for (let binaryPath of absoluteBinaries) { + expect(await util.fileExists(binaryPath.value)).to.be.true; + let mode = (await fs.stat(binaryPath.value)).mode; expect(mode & 0o7777).to.be.equal(0o755, `Expected mode for path ${binaryPath}`); } } @@ -78,7 +88,7 @@ suite('ZipInstaller', () => { new InstallationStart("Text File"), new ZipError("C# Extension was unable to download its dependencies. Please check your internet connection. If you use a proxy server, please visit https://aka.ms/VsCodeCsharpNetworking") ]; - expect(eventBus).to.be.deep.equal(eventSequence); + expect(eventBus.getEvents()).to.be.deep.equal(eventSequence); } }); @@ -86,5 +96,6 @@ suite('ZipInstaller', () => { if (tmpInstallDir) { tmpInstallDir.dispose(); } + eventBus.dispose(); }); }); diff --git a/test/unitTests/ParsedEnvironmentFile.test.ts b/test/unitTests/ParsedEnvironmentFile.test.ts new file mode 100644 index 0000000000..c4ec16b920 --- /dev/null +++ b/test/unitTests/ParsedEnvironmentFile.test.ts @@ -0,0 +1,99 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { ParsedEnvironmentFile } from '../../src/coreclr-debug/ParsedEnvironmentFile'; +import { should, expect } from 'chai'; + +suite("ParsedEnvironmentFile", () => { + suiteSetup(() => should()); + + test("Add single variable", () => { + const content = `MyName=VALUE`; + const fakeConfig : { [key: string]: any } = {}; + const result = ParsedEnvironmentFile.CreateFromContent(content, "TestEnvFileName", fakeConfig["env"]); + + expect(result.Warning).to.be.null; + result.Env["MyName"].should.equal("VALUE"); + }); + + test("Handle quoted values", () => { + const content = `MyName="VALUE"`; + const fakeConfig : { [key: string]: any } = {}; + const result = ParsedEnvironmentFile.CreateFromContent(content, "TestEnvFileName", fakeConfig["env"]); + + expect(result.Warning).to.be.null; + result.Env["MyName"].should.equal("VALUE"); + }); + + test("Handle BOM", () => { + const content = "\uFEFFMyName=VALUE"; + const fakeConfig : { [key: string]: any } = {}; + const result = ParsedEnvironmentFile.CreateFromContent(content, "TestEnvFileName", fakeConfig["env"]); + + expect(result.Warning).to.be.null; + result.Env["MyName"].should.equal("VALUE"); + }); + + test("Add multiple variables", () => { + const content = ` +MyName1=Value1 +MyName2=Value2 + +`; + const fakeConfig : { [key: string]: any } = {}; + const result = ParsedEnvironmentFile.CreateFromContent(content, "TestEnvFileName", fakeConfig["env"]); + + expect(result.Warning).to.be.null; + result.Env["MyName1"].should.equal("Value1"); + result.Env["MyName2"].should.equal("Value2"); + }); + + test("Update variable", () => { + const content = ` +MyName1=Value1 +MyName2=Value2 + +`; + const initialEnv : { [key: string]: any } = { + "MyName1": "Value7", + "ThisShouldNotChange": "StillHere" + }; + const result = ParsedEnvironmentFile.CreateFromContent(content, "TestEnvFileName", initialEnv); + + expect(result.Warning).to.be.null; + result.Env["MyName1"].should.equal("Value1"); + result.Env["MyName2"].should.equal("Value2"); + result.Env["ThisShouldNotChange"].should.equal("StillHere"); + }); + + test("Handle comments", () => { + const content = `# This is an environment file +MyName1=Value1 +# This is a comment in the middle of the file +MyName2=Value2 +`; + const fakeConfig : { [key: string]: any } = {}; + const result = ParsedEnvironmentFile.CreateFromContent(content, "TestEnvFileName", fakeConfig["env"]); + + expect(result.Warning).to.be.null; + result.Env["MyName1"].should.equal("Value1"); + result.Env["MyName2"].should.equal("Value2"); + }); + + test("Handle invalid lines", () => { + const content = ` +This_Line_Is_Wrong +MyName1=Value1 +MyName2=Value2 + +`; + const fakeConfig : { [key: string]: any } = {}; + const result = ParsedEnvironmentFile.CreateFromContent(content, "TestEnvFileName", fakeConfig["env"]); + + result.Warning.should.startWith("Ignoring non-parseable lines in envFile TestEnvFileName"); + result.Env["MyName1"].should.equal("Value1"); + result.Env["MyName2"].should.equal("Value2"); + }); +}); diff --git a/test/unitTests/logging/DotnetTestChannelObserver.test.ts b/test/unitTests/logging/DotnetTestChannelObserver.test.ts new file mode 100644 index 0000000000..ee55824cd5 --- /dev/null +++ b/test/unitTests/logging/DotnetTestChannelObserver.test.ts @@ -0,0 +1,36 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { expect } from 'chai'; +import { getNullChannel } from '../testAssets/Fakes'; +import { BaseEvent, DotNetTestsInClassDebugStart, DotNetTestRunStart, DotNetTestRunFailure, DotNetTestsInClassRunStart, DotNetTestDebugStart } from '../../../src/omnisharp/loggingEvents'; +import DotnetTestChannelObserver from '../../../src/observers/DotnetTestChannelObserver'; + +suite("DotnetTestChannelObserver", () => { + let hasShown: boolean; + + let observer = new DotnetTestChannelObserver({ + ...getNullChannel(), + show: () => { hasShown = true; } + }); + + setup(() => { + hasShown = false; + }); + + [ + new DotNetTestRunStart("foo"), + new DotNetTestRunFailure("some failure"), + new DotNetTestsInClassRunStart("someclass"), + new DotNetTestDebugStart("foo"), + new DotNetTestsInClassDebugStart("someclass") + ].forEach((event: BaseEvent) => { + test(`${event.constructor.name}: Channel is shown`, () => { + expect(hasShown).to.be.false; + observer.post(event); + expect(hasShown).to.be.true; + }); + }); +}); diff --git a/test/unitTests/logging/DotnetTestLoggerObserver.test.ts b/test/unitTests/logging/DotnetTestLoggerObserver.test.ts new file mode 100644 index 0000000000..d113b23162 --- /dev/null +++ b/test/unitTests/logging/DotnetTestLoggerObserver.test.ts @@ -0,0 +1,122 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import * as chai from 'chai'; +import { getNullChannel } from '../testAssets/Fakes'; +import { EventWithMessage, DotNetTestDebugWarning, DotNetTestDebugStart, BaseEvent, DotNetTestRunStart, DotNetTestDebugProcessStart, DotNetTestMessage, DotNetTestDebugComplete, ReportDotNetTestResults, DotNetTestsInClassDebugStart, DotNetTestsInClassRunStart } from '../../../src/omnisharp/loggingEvents'; +import DotNetTestLoggerObserver from '../../../src/observers/DotnetTestLoggerObserver'; +import * as protocol from '../../../src/omnisharp/protocol'; + +const expect = chai.expect; +chai.use(require('chai-string')); + +suite(`${DotNetTestLoggerObserver.name}`, () => { + let appendedMessage: string; + let observer = new DotNetTestLoggerObserver({ + ...getNullChannel(), + append: (text: string) => { appendedMessage += text; }, + }); + + setup(() => { + appendedMessage = ""; + }); + + [ + new DotNetTestDebugWarning("some warning"), + new DotNetTestMessage("some message") + ].forEach((event: EventWithMessage) => { + test(`${event.constructor.name}: Message is logged`, () => { + observer.post(event); + expect(appendedMessage).to.contain(event.message); + }); + }); + + [ + new DotNetTestDebugStart("foo"), + new DotNetTestRunStart("foo") + ].forEach((event: BaseEvent) => { + test(`${event.constructor.name}: Test method is logged`, () => { + expect(appendedMessage).to.be.empty; + observer.post(event); + expect(appendedMessage).to.contain("foo"); + }); + }); + + [ + new DotNetTestsInClassDebugStart("foo"), + new DotNetTestsInClassRunStart("foo") + ].forEach((event: BaseEvent) => { + test(`${event.constructor.name}: Class name is logged`, () => { + expect(appendedMessage).to.be.empty; + observer.post(event); + expect(appendedMessage).to.contain("foo"); + }); + }); + + test(`${DotNetTestDebugProcessStart.name}: Target process id is logged`, () => { + let event = new DotNetTestDebugProcessStart(111); + observer.post(event); + expect(appendedMessage).to.contain(event.targetProcessId); + }); + + test(`${DotNetTestDebugComplete.name}: Message is logged`, () => { + let event = new DotNetTestDebugComplete(); + observer.post(event); + expect(appendedMessage).to.not.be.empty; + }); + + suite(`${ReportDotNetTestResults.name}`, () => { + let event = new ReportDotNetTestResults( + [ + getDotNetTestResults("foo", "failed", "assertion failed", "stacktrace1" , ["message1", "message2"], ["errorMessage1"]), + getDotNetTestResults("failinator", "failed", "error occured", "stacktrace2", [], []), + getDotNetTestResults("bar", "skipped", "", "", ["message3", "message4"], []), + getDotNetTestResults("passinator", "passed", "", "", [], []), + ]); + + test(`Displays the outcome of each test`, () => { + observer.post(event); + event.results.forEach(result => { + expect(appendedMessage).to.containIgnoreCase(`${result.MethodName}:\n Outcome: ${result.Outcome}`); + }); + }); + + test(`Displays the total outcome`, () => { + observer.post(event); + expect(appendedMessage).to.contain(`Total tests: 4. Passed: 1. Failed: 2. Skipped: 1`); + }); + + test('Displays the error message and error stack trace if any is present', () => { + observer.post(event); + expect(appendedMessage).to.contain("foo:\n Outcome: Failed\n Error Message:\n assertion failed\n Stack Trace:\n stacktrace1"); + expect(appendedMessage).to.contain("failinator:\n Outcome: Failed\n Error Message:\n error occured\n Stack Trace:\n stacktrace2"); + }); + + test(`Displays the standard output messages if any`, () => { + observer.post(event); + event.results.forEach(result => { + result.StandardOutput.forEach(message => expect(appendedMessage).to.contain(message)); + }); + }); + + test(`Displays the standard error messages if any`, () => { + observer.post(event); + event.results.forEach(result => { + result.StandardError.forEach(message => expect(appendedMessage).to.contain(message)); + }); + }); + }); +}); + +function getDotNetTestResults(methodname: string, outcome: string, errorMessage: string, errorStackTrace: string, stdoutMessages: string[], stdErrorMessages: string[]): protocol.V2.DotNetTestResult { + return { + MethodName: methodname, + Outcome: outcome, + ErrorMessage: errorMessage, + ErrorStackTrace: errorStackTrace, + StandardOutput : stdoutMessages, + StandardError: stdErrorMessages + }; +} \ No newline at end of file diff --git a/test/unitTests/logging/ErrorMessageObserver.test.ts b/test/unitTests/logging/ErrorMessageObserver.test.ts index 23ddfa0af4..be570d2131 100644 --- a/test/unitTests/logging/ErrorMessageObserver.test.ts +++ b/test/unitTests/logging/ErrorMessageObserver.test.ts @@ -9,7 +9,7 @@ import { getFakeVsCode } from '../testAssets/Fakes'; import 'rxjs/add/observable/fromPromise'; import 'rxjs/add/operator/timeout'; import { ErrorMessageObserver } from '../../../src/observers/ErrorMessageObserver'; -import { ZipError } from '../../../src/omnisharp/loggingEvents'; +import { ZipError, DotNetTestRunFailure, DotNetTestDebugStartFailure, EventWithMessage } from '../../../src/omnisharp/loggingEvents'; chaiUse(require('chai-as-promised')); chaiUse(require('chai-string')); @@ -30,9 +30,14 @@ suite("ErrorMessageObserver", () => { errorMessage = undefined; }); - test('ZipError: Error message is shown', () => { - let event = new ZipError("This is an error"); + [ + new ZipError("This is an error"), + new DotNetTestRunFailure("This is a failure message"), + new DotNetTestDebugStartFailure("Start failure") + ].forEach((event: EventWithMessage) => { + test(`${event.constructor.name}: Error message is shown`, () => { observer.post(event); - expect(errorMessage).to.be.equal("This is an error"); - }); + expect(errorMessage).to.be.contain(event.message); + }); + }); }); \ No newline at end of file diff --git a/test/unitTests/logging/InformationMessageObserver.test.ts b/test/unitTests/logging/InformationMessageObserver.test.ts index a3b33de86b..47e0dc2d70 100644 --- a/test/unitTests/logging/InformationMessageObserver.test.ts +++ b/test/unitTests/logging/InformationMessageObserver.test.ts @@ -19,19 +19,17 @@ suite("InformationMessageObserver", () => { let doClickOk: () => void; let doClickCancel: () => void; let signalCommandDone: () => void; - let commandDone = new Promise(resolve => { - signalCommandDone = () => { resolve(); }; - }); + let commandDone: Promise; let vscode = getVsCode(); let infoMessage: string; - let relativePath: string; let invokedCommand: string; let observer: InformationMessageObserver = new InformationMessageObserver(vscode); setup(() => { infoMessage = undefined; - relativePath = undefined; invokedCommand = undefined; + doClickCancel = undefined; + doClickOk = undefined; commandDone = new Promise(resolve => { signalCommandDone = () => { resolve(); }; }); @@ -40,7 +38,7 @@ suite("InformationMessageObserver", () => { [ { event: getUnresolvedDependenices("someFile"), - expectedCommand: "dotnet.restore" + expectedCommand: "dotnet.restore.all" } ].forEach((elem) => { suite(elem.event.constructor.name, () => { @@ -58,7 +56,6 @@ suite("InformationMessageObserver", () => { test('The information message is shown', async () => { observer.post(elem.event); - expect(relativePath).to.not.be.empty; expect(infoMessage).to.not.be.empty; doClickOk(); await commandDone; @@ -80,19 +77,23 @@ suite("InformationMessageObserver", () => { }); }); }); + }); + + teardown(() => { + commandDone = undefined; }); function getVsCode() { let vscode = getVSCodeWithConfig(); - vscode.window.showInformationMessage = async (message: string, ...items: string[]) => { + vscode.window.showInformationMessage = async (message: string, ...items: T[]) => { infoMessage = message; - return new Promise(resolve => { + return new Promise(resolve => { doClickCancel = () => { resolve(undefined); }; doClickOk = () => { - resolve(message); + resolve(...items); }; }); }; @@ -103,11 +104,6 @@ suite("InformationMessageObserver", () => { return undefined; }; - vscode.workspace.asRelativePath = (pathOrUri?: string, includeWorspaceFolder?: boolean) => { - relativePath = pathOrUri; - return relativePath; - }; - return vscode; } }); \ No newline at end of file diff --git a/test/unitTests/logging/OmnisharpChannelObserver.test.ts b/test/unitTests/logging/OmnisharpChannelObserver.test.ts index 3776058b73..e940e111b8 100644 --- a/test/unitTests/logging/OmnisharpChannelObserver.test.ts +++ b/test/unitTests/logging/OmnisharpChannelObserver.test.ts @@ -2,22 +2,46 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -import { should, expect } from 'chai'; +import { expect } from 'chai'; import { getNullChannel } from '../testAssets/Fakes'; import { OmnisharpChannelObserver } from '../../../src/observers/OmnisharpChannelObserver'; -import { OmnisharpFailure } from '../../../src/omnisharp/loggingEvents'; +import { OmnisharpFailure, ShowOmniSharpChannel, BaseEvent, OmnisharpRestart, OmnisharpServerOnStdErr } from '../../../src/omnisharp/loggingEvents'; suite("OmnisharpChannelObserver", () => { - suiteSetup(() => should()); - test(`OmnisharpFailure: Shows the channel`, () => { - let event = new OmnisharpFailure("errorMessage", new Error("error")); - let hasShown = false; - let observer = new OmnisharpChannelObserver({ + + let hasShown: boolean; + let hasCleared: boolean; + let observer: OmnisharpChannelObserver; + + setup(() => { + hasShown = false; + hasCleared = false; + observer = new OmnisharpChannelObserver({ ...getNullChannel(), - show: () => { hasShown = true; } + show: () => { hasShown = true; }, + clear: () => { hasCleared = true; } }); + }); - observer.post(event); - expect(hasShown).to.be.true; + [ + new OmnisharpFailure("errorMessage", new Error("error")), + new ShowOmniSharpChannel(), + new OmnisharpServerOnStdErr("std err") + ].forEach((event: BaseEvent) => { + test(`${event.constructor.name}: Channel is shown`, () => { + expect(hasShown).to.be.false; + observer.post(event); + expect(hasShown).to.be.true; + }); + }); + + [ + new OmnisharpRestart() + ].forEach((event: BaseEvent) => { + test(`${event.constructor.name}: Channel is cleared`, () => { + expect(hasCleared).to.be.false; + observer.post(event); + expect(hasCleared).to.be.true; + }); }); }); \ No newline at end of file diff --git a/test/unitTests/logging/OmnisharpLoggerObserver.test.ts b/test/unitTests/logging/OmnisharpLoggerObserver.test.ts index 25a6012684..8a63370b5a 100644 --- a/test/unitTests/logging/OmnisharpLoggerObserver.test.ts +++ b/test/unitTests/logging/OmnisharpLoggerObserver.test.ts @@ -135,9 +135,12 @@ suite("OmnisharpLoggerObserver", () => { suite('OmnisharpLaunch', () => { [ - new OmnisharpLaunch("5.8.0", "someCommand", 4), - new OmnisharpLaunch(undefined, "someCommand", 4) - ].forEach((event: OmnisharpLaunch) => { + { 'event': new OmnisharpLaunch("5.8.0", undefined, "someCommand", 4), 'expected': "OmniSharp server started with Mono 5.8.0." }, + { 'event': new OmnisharpLaunch(undefined, undefined, "someCommand", 4), 'expected': "OmniSharp server started." }, + { 'event': new OmnisharpLaunch("5.8.0", "path to mono", "someCommand", 4), 'expected': "OmniSharp server started with Mono 5.8.0 (path to mono)." }, + { 'event': new OmnisharpLaunch(undefined, "path to mono", "someCommand", 4), 'expected': "OmniSharp server started." }, + ].forEach((data: { event: OmnisharpLaunch, expected: string }) => { + const event = data.event; test(`Command and Pid are displayed`, () => { observer.post(event); @@ -145,14 +148,9 @@ suite("OmnisharpLoggerObserver", () => { expect(logOutput).to.contain(event.pid); }); - test(`Message is displayed depending on usingMono value`, () => { + test(`Message is displayed depending on monoVersion and monoPath value`, () => { observer.post(event); - if (event.monoVersion) { - expect(logOutput).to.contain("OmniSharp server started with Mono 5.8.0"); - } - else { - expect(logOutput).to.contain("OmniSharp server started"); - } + expect(logOutput).to.contain(data.expected); }); }); }); diff --git a/test/unitTests/logging/OmnisharpStatusBarObserver.test.ts b/test/unitTests/logging/OmnisharpStatusBarObserver.test.ts index a46536d0ff..ca91e60632 100644 --- a/test/unitTests/logging/OmnisharpStatusBarObserver.test.ts +++ b/test/unitTests/logging/OmnisharpStatusBarObserver.test.ts @@ -4,9 +4,9 @@ *--------------------------------------------------------------------------------------------*/ import { StatusBarItem } from '../../../src/vscodeAdapter'; -import { OmnisharpOnBeforeServerInstall, OmnisharpOnBeforeServerStart, OmnisharpServerOnServerError, OmnisharpServerOnStart, OmnisharpServerOnStop, DownloadStart, InstallationStart, DownloadProgress } from '../../../src/omnisharp/loggingEvents'; +import { OmnisharpOnBeforeServerInstall, OmnisharpOnBeforeServerStart, OmnisharpServerOnServerError, OmnisharpServerOnStart, OmnisharpServerOnStop, DownloadStart, InstallationStart, DownloadProgress, OmnisharpServerOnStdErr, BaseEvent } from '../../../src/omnisharp/loggingEvents'; import { expect, should } from 'chai'; -import { OmnisharpStatusBarObserver } from '../../../src/observers/OmnisharpStatusBarObserver'; +import { OmnisharpStatusBarObserver, StatusBarColors } from '../../../src/observers/OmnisharpStatusBarObserver'; suite('OmnisharpStatusBarObserver', () => { suiteSetup(() => should()); @@ -27,17 +27,32 @@ suite('OmnisharpStatusBarObserver', () => { hide: () => { hideCalled = true; } }; - let observer = new OmnisharpStatusBarObserver( statusBarItem); + let observer = new OmnisharpStatusBarObserver(statusBarItem); - test('OnServerError: Status bar is shown with the error text', () => { - let event = new OmnisharpServerOnServerError("someError"); + [ + new OmnisharpServerOnServerError("someError"), + ].forEach((event: BaseEvent) => { + test(`${event.constructor.name}: Status bar is shown with the error text`, () => { + observer.post(event); + expect(showCalled).to.be.true; + expect(statusBarItem.text).to.equal(`$(flame)`); + expect(statusBarItem.command).to.equal('o.showOutput'); + expect(statusBarItem.tooltip).to.equal('Error starting OmniSharp'); + expect(statusBarItem.color).to.equal(StatusBarColors.Red); + }); + }); + + test(`${OmnisharpServerOnStdErr.name}: Status bar is shown with the error text`, () => { + let event = new OmnisharpServerOnStdErr("std error"); observer.post(event); expect(showCalled).to.be.true; + expect(statusBarItem.color).to.equal(StatusBarColors.Red); expect(statusBarItem.text).to.equal(`$(flame)`); expect(statusBarItem.command).to.equal('o.showOutput'); - expect(statusBarItem.tooltip).to.equal('Error starting OmniSharp'); + expect(statusBarItem.tooltip).to.contain(event.message); }); + test('OnBeforeServerInstall: Status bar is shown with the installation text', () => { let event = new OmnisharpOnBeforeServerInstall(); observer.post(event); @@ -50,6 +65,7 @@ suite('OmnisharpStatusBarObserver', () => { let event = new OmnisharpOnBeforeServerStart(); observer.post(event); expect(showCalled).to.be.true; + expect(statusBarItem.color).to.equal(StatusBarColors.Yellow); expect(statusBarItem.text).to.be.equal('$(flame)'); expect(statusBarItem.command).to.equal('o.showOutput'); expect(statusBarItem.tooltip).to.equal('Starting OmniSharp server'); @@ -62,6 +78,7 @@ suite('OmnisharpStatusBarObserver', () => { expect(statusBarItem.text).to.be.equal('$(flame)'); expect(statusBarItem.command).to.equal('o.showOutput'); expect(statusBarItem.tooltip).to.be.equal('OmniSharp server is running'); + expect(statusBarItem.color).to.be.equal(StatusBarColors.Green); }); test('OnServerStop: Status bar is hidden and the attributes are set to undefined', () => { diff --git a/test/unitTests/optionStream.test.ts b/test/unitTests/optionStream.test.ts new file mode 100644 index 0000000000..01478fccd6 --- /dev/null +++ b/test/unitTests/optionStream.test.ts @@ -0,0 +1,101 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { should, expect } from 'chai'; +import { ConfigurationChangeEvent, vscode } from "../../src/vscodeAdapter"; +import { getVSCodeWithConfig, updateConfig } from "./testAssets/Fakes"; +import Disposable from "../../src/Disposable"; +import { Observable } from "rxjs/Observable"; +import { Options } from "../../src/omnisharp/options"; +import { GetConfigChangeEvent } from './testAssets/GetConfigChangeEvent'; +import { Subscription } from 'rxjs/Subscription'; +import createOptionStream from '../../src/observables/CreateOptionStream'; + +suite('OptionStream', () => { + suiteSetup(() => should()); + + let listenerFunction: Array<(e: ConfigurationChangeEvent) => any>; + let vscode: vscode; + let optionStream: Observable; + let disposeCalled: boolean; + + setup(() => { + listenerFunction = new Array<(e: ConfigurationChangeEvent) => any>(); + vscode = getVSCode(listenerFunction); + optionStream = createOptionStream(vscode); + disposeCalled = false; + }); + + suite('Returns the recent options to the subscriber', () => { + let subscription: Subscription; + let options: Options; + + setup(() => { + subscription = optionStream.subscribe(newOptions => options = newOptions); + }); + + test('Returns the default options if there is no change', () => { + expect(options.path).to.be.null; + options.useGlobalMono.should.equal("auto"); + options.waitForDebugger.should.equal(false); + options.loggingLevel.should.equal("information"); + options.autoStart.should.equal(true); + options.projectLoadTimeout.should.equal(60); + options.maxProjectResults.should.equal(250); + options.useEditorFormattingSettings.should.equal(true); + options.useFormatting.should.equal(true); + options.showReferencesCodeLens.should.equal(true); + options.showTestsCodeLens.should.equal(true); + options.disableCodeActions.should.equal(false); + expect(options.defaultLaunchSolution).to.be.undefined; + }); + + test('Gives the changed option when the omnisharp config changes', () => { + expect(options.path).to.be.null; + let changingConfig = "omnisharp"; + updateConfig(vscode, changingConfig, 'path', "somePath"); + listenerFunction.forEach(listener => listener(GetConfigChangeEvent(changingConfig))); + options.path.should.equal("somePath"); + }); + + test('Gives the changed option when the csharp config changes', () => { + options.disableCodeActions.should.equal(false); + let changingConfig = "csharp"; + updateConfig(vscode, changingConfig, 'disableCodeActions', true); + listenerFunction.forEach(listener => listener(GetConfigChangeEvent(changingConfig))); + options.disableCodeActions.should.equal(true); + }); + + teardown(() => { + options = undefined; + listenerFunction = undefined; + subscription.unsubscribe(); + subscription = undefined; + }); + }); + + test('Dispose is called when the last subscriber unsubscribes', () => { + disposeCalled.should.equal(false); + let subscription1 = optionStream.subscribe(_ => { }); + let subscription2 = optionStream.subscribe(_ => { }); + let subscription3 = optionStream.subscribe(_ => { }); + subscription1.unsubscribe(); + disposeCalled.should.equal(false); + subscription2.unsubscribe(); + disposeCalled.should.equal(false); + subscription3.unsubscribe(); + disposeCalled.should.equal(true); + }); + + function getVSCode(listenerFunction: Array<(e: ConfigurationChangeEvent) => any>): vscode { + let vscode = getVSCodeWithConfig(); + vscode.workspace.onDidChangeConfiguration = (listener: (e: ConfigurationChangeEvent) => any, thisArgs?: any, disposables?: Disposable[]) => { + listenerFunction.push(listener); + return new Disposable(() => disposeCalled = true); + }; + + return vscode; + } +}); \ No newline at end of file diff --git a/test/unitTests/options.test.ts b/test/unitTests/options.test.ts index cae363f161..dd2166dcab 100644 --- a/test/unitTests/options.test.ts +++ b/test/unitTests/options.test.ts @@ -16,6 +16,7 @@ suite("Options tests", () => { const options = Options.Read(vscode); expect(options.path).to.be.null; options.useGlobalMono.should.equal("auto"); + expect(options.monoPath).to.be.undefined; options.waitForDebugger.should.equal(false); options.loggingLevel.should.equal("information"); options.autoStart.should.equal(true); @@ -27,6 +28,7 @@ suite("Options tests", () => { options.showTestsCodeLens.should.equal(true); options.disableCodeActions.should.equal(false); options.disableCodeActions.should.equal(false); + expect(options.defaultLaunchSolution).to.be.undefined; }); test('BACK-COMPAT: "omnisharp.loggingLevel": "verbose" == "omnisharp.loggingLevel": "debug"', () => @@ -99,4 +101,14 @@ suite("Options tests", () => { options.path.should.equal("NewPath"); }); + + test('"omnisharp.defaultLaunchSolution" is used if set', () => + { + const vscode = getVSCodeWithConfig(); + updateConfig(vscode, 'omnisharp', 'defaultLaunchSolution', 'some_valid_solution.sln'); + + const options = Options.Read(vscode); + + options.defaultLaunchSolution.should.equal("some_valid_solution.sln"); + }); }); diff --git a/test/unitTests/testAssets/CreateTestZip.ts b/test/unitTests/testAssets/CreateTestZip.ts deleted file mode 100644 index 1d1bdb6b39..0000000000 --- a/test/unitTests/testAssets/CreateTestZip.ts +++ /dev/null @@ -1,46 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ - -import * as archiver from 'archiver'; - -export const Files = [ - { - content: "File 1", - path: "file1.txt", - - }, - { - content: "File 2", - path: "folder/file2.txt" - } -]; - -export const Binaries = [ - { - content: "Binary 1", - path: "binary1.txt" - }, -]; - - -export async function createTestZipAsync(filesToAdd: Array<{ content: string, path: string }>): Promise { - let buffers: any[] = []; - return new Promise((resolve, reject) => { - let archive = archiver('zip'); - archive.on('warning', function (err: any) { - if (err.code === 'ENOENT') { - console.log(err); - } else { - // throw error - reject(err); - } - }); - archive.on('data', data => buffers.push(data)); - archive.on('error', reject); - archive.on('end', () => resolve(Buffer.concat(buffers))); - filesToAdd.forEach(elem => archive.append(elem.content, { name: elem.path })); - archive.finalize(); - }); -} \ No newline at end of file diff --git a/test/unitTests/testAssets/Fakes.ts b/test/unitTests/testAssets/Fakes.ts index a123b3cb13..bd0aa03eec 100644 --- a/test/unitTests/testAssets/Fakes.ts +++ b/test/unitTests/testAssets/Fakes.ts @@ -110,7 +110,7 @@ export function getFakeVsCode(): vscode.vscode { }, window: { activeTextEditor: undefined, - showInformationMessage: (message: string, ...items: string[]) => { + showInformationMessage: (message: string, ...items: T[]) => { throw new Error("Not Implemented"); }, showWarningMessage: (message: string, ...items: T[]) => { diff --git a/test/unitTests/testAssets/GetConfigChangeEvent.ts b/test/unitTests/testAssets/GetConfigChangeEvent.ts new file mode 100644 index 0000000000..3994d484ec --- /dev/null +++ b/test/unitTests/testAssets/GetConfigChangeEvent.ts @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { ConfigurationChangeEvent } from "../../../src/vscodeAdapter"; + +export function GetConfigChangeEvent(changingConfig: string): ConfigurationChangeEvent { + return { + affectsConfiguration: (section: string) => section == changingConfig + }; +} \ No newline at end of file diff --git a/test/unitTests/testAssets/MockHttpServerRequestHandler.ts b/test/unitTests/testAssets/MockHttpServerRequestHandler.ts deleted file mode 100644 index 97b81054d1..0000000000 --- a/test/unitTests/testAssets/MockHttpServerRequestHandler.ts +++ /dev/null @@ -1,27 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ - -export interface MockHttpServerRequestHandler { - method: string; - path: string; - reply: { - status: number; - headers?: any; - body: any; - }; - -} - -export function getRequestHandler(method: string, path: string, reply_status: number, reply_headers?: any, reply_body?: any): MockHttpServerRequestHandler { - return { - method, - path, - reply: { - status: reply_status, - headers: reply_headers, - body: reply_body - } - }; -} \ No newline at end of file diff --git a/test/unitTests/testAssets/MockHttpsServer.ts b/test/unitTests/testAssets/MockHttpsServer.ts new file mode 100644 index 0000000000..7f5246cfe3 --- /dev/null +++ b/test/unitTests/testAssets/MockHttpsServer.ts @@ -0,0 +1,50 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + + +import * as fs from 'async-file'; + +const getPort = require('get-port'); +const ServerMock = require("mock-http-server"); + +export default class MockHttpsServer { + + constructor(private server: any, public readonly baseUrl: string){ + } + + public addRequestHandler(method: string, path: string, reply_status: number, reply_headers?: any, reply_body?: any){ + this.server.on({ + method, + path, + reply: { + status: reply_status, + headers: reply_headers, + body: reply_body + } + }); + } + + public async start(){ + return new Promise(resolve => this.server.start(resolve)); + } + + public async stop(){ + return new Promise((resolve, reject) => this.server.stop(resolve)); + } + + public static async CreateMockHttpsServer(): Promise { + let port = await getPort(); + let server = new ServerMock(null, + { + host: "localhost", + port: port, + key: await fs.readFile("test/unitTests/testAssets/private.pem"), + cert: await fs.readFile("test/unitTests/testAssets/public.pem") + }); + + return new MockHttpsServer(server, `https://localhost:${port}`); + } +} + diff --git a/test/unitTests/testAssets/TestEventBus.ts b/test/unitTests/testAssets/TestEventBus.ts new file mode 100644 index 0000000000..75d6a3834a --- /dev/null +++ b/test/unitTests/testAssets/TestEventBus.ts @@ -0,0 +1,26 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import { EventStream } from "../../../src/EventStream"; +import { BaseEvent } from "../../../src/omnisharp/loggingEvents"; +import Disposable, { IDisposable } from "../../../src/Disposable"; + +export default class TestEventBus { + private eventBus: Array; + private disposable: IDisposable; + + constructor(eventStream: EventStream){ + this.eventBus = []; + this.disposable = new Disposable(eventStream.subscribe(event => this.eventBus.push(event))); + } + + public getEvents(): Array{ + return this.eventBus; + } + + public dispose(){ + this.disposable.dispose(); + } +} \ No newline at end of file diff --git a/test/unitTests/testAssets/TestFile.ts b/test/unitTests/testAssets/TestFile.ts new file mode 100644 index 0000000000..3a315afe7f --- /dev/null +++ b/test/unitTests/testAssets/TestFile.ts @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +export interface TestFile { + content: string; + path: string; +} + +export function createTestFile(content: string, path: string): TestFile{ + return { + content, + path + }; +} diff --git a/test/unitTests/testAssets/TestZip.ts b/test/unitTests/testAssets/TestZip.ts new file mode 100644 index 0000000000..05c45413a0 --- /dev/null +++ b/test/unitTests/testAssets/TestZip.ts @@ -0,0 +1,47 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + +import * as archiver from 'archiver'; +import { TestFile } from './TestFile'; + +export default class TestZip { + constructor(private readonly _buffer: Buffer, private readonly _files : TestFile[]){ + } + + get buffer(): Buffer{ + return this._buffer; + } + + get size(): number{ + return this._buffer.length; + } + + get files(): TestFile[]{ + return this._files; + } + + public static async createTestZipAsync(...filesToAdd: TestFile[]): Promise { + let buffers: any[] = []; + let finalBuffer = await new Promise((resolve, reject) => { + let archive = archiver('zip'); + archive.on('warning', function (err: any) { + if (err.code === 'ENOENT') { + console.log(err); + } else { + // throw error + reject(err); + } + }); + archive.on('data', data => buffers.push(data)); + archive.on('error', reject); + archive.on('end', () => resolve(Buffer.concat(buffers))); + filesToAdd.forEach(elem => archive.append(elem.content, { name: elem.path })); + archive.finalize(); + }); + + return new TestZip(finalBuffer, filesToAdd); + } +} + diff --git a/test/featureTests/testAssets/testAssets.ts b/test/unitTests/testAssets/testAssets.ts similarity index 89% rename from test/featureTests/testAssets/testAssets.ts rename to test/unitTests/testAssets/testAssets.ts index 64ec562ae6..e2d5d5b70b 100644 --- a/test/featureTests/testAssets/testAssets.ts +++ b/test/unitTests/testAssets/testAssets.ts @@ -4,17 +4,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -import { EventStream } from "../../../src/EventStream"; -import { PlatformInformation } from "../../../src/platform"; -import { OmnisharpDownloader } from "../../../src/omnisharp/OmnisharpDownloader"; -import NetworkSettings from "../../../src/NetworkSettings"; - -export function GetTestOmnisharpDownloader(sink: EventStream, platformInfo: PlatformInformation): OmnisharpDownloader { - return new OmnisharpDownloader(() => new NetworkSettings(undefined, undefined), sink, testPackageJSON, platformInfo); -} - -//Since we need only the runtime dependencies of packageJSON for the downloader create a testPackageJSON -//with just that export let testPackageJSON = { "runtimeDependencies": [ {