From 792d70953d0713ed53707a88c78f3faf06c66efe Mon Sep 17 00:00:00 2001 From: Larry Golding Date: Mon, 14 Mar 2016 13:59:02 -0700 Subject: [PATCH] ProcessWatchdog: Add CommandLineParser NuGet package --- src/Tools/ProcessWatchdog/Options.cs | 8 + .../ProcessWatchdog/ProcessWatchdog.csproj | 1 + src/Tools/ProcessWatchdog/Program.cs | 25 ++ src/Tools/ProcessWatchdog/project.json | 13 +- src/Tools/ProcessWatchdog/project.lock.json | 279 +++++++++--------- 5 files changed, 185 insertions(+), 141 deletions(-) create mode 100644 src/Tools/ProcessWatchdog/Options.cs diff --git a/src/Tools/ProcessWatchdog/Options.cs b/src/Tools/ProcessWatchdog/Options.cs new file mode 100644 index 00000000000..b4f59ea299b --- /dev/null +++ b/src/Tools/ProcessWatchdog/Options.cs @@ -0,0 +1,8 @@ +// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +namespace ProcessWatchdog +{ + internal class Options + { + } +} \ No newline at end of file diff --git a/src/Tools/ProcessWatchdog/ProcessWatchdog.csproj b/src/Tools/ProcessWatchdog/ProcessWatchdog.csproj index ad384319d04..4157c613bf4 100644 --- a/src/Tools/ProcessWatchdog/ProcessWatchdog.csproj +++ b/src/Tools/ProcessWatchdog/ProcessWatchdog.csproj @@ -26,6 +26,7 @@ + True diff --git a/src/Tools/ProcessWatchdog/Program.cs b/src/Tools/ProcessWatchdog/Program.cs index b1709d3c99f..68c1c53f501 100644 --- a/src/Tools/ProcessWatchdog/Program.cs +++ b/src/Tools/ProcessWatchdog/Program.cs @@ -5,14 +5,39 @@ using System.Globalization; using System.Linq; using System.Reflection; +using CommandLine; + namespace ProcessWatchdog { internal sealed class Program { + private Options _options; + + public Program(Options options) + { + _options = options; + } + + private int Run() + { + return 0; + } + private static void Main(string[] args) { Banner(); + + Parser.Default.ParseArguments(args) + .MapResult( + options => Run(options), + err => 1); + } + + private static int Run(Options options) + { + var program = new Program(options); + return program.Run(); } private static void Banner() diff --git a/src/Tools/ProcessWatchdog/project.json b/src/Tools/ProcessWatchdog/project.json index fd39e735567..db17ffb6fbd 100644 --- a/src/Tools/ProcessWatchdog/project.json +++ b/src/Tools/ProcessWatchdog/project.json @@ -1,13 +1,14 @@ -{ - "dependencies": { +{ + "dependencies": { + "CommandLineParser": "2.0.273-beta", "System.Collections.Immutable": "1.1.37", "System.Reflection.Metadata": "1.2.0-rc2-23826" }, "frameworks": { - "net45": { } + "net45": {} }, "runtimes": { - "win7": { }, - "win7-anycpu": { } + "win7": {}, + "win7-anycpu": {} } -} +} \ No newline at end of file diff --git a/src/Tools/ProcessWatchdog/project.lock.json b/src/Tools/ProcessWatchdog/project.lock.json index 62ea293b6ae..2f090ee1620 100644 --- a/src/Tools/ProcessWatchdog/project.lock.json +++ b/src/Tools/ProcessWatchdog/project.lock.json @@ -1,10 +1,17 @@ { "locked": false, - "version": 2, + "version": 1, "targets": { ".NETFramework,Version=v4.5": { + "CommandLineParser/2.0.273-beta": { + "compile": { + "lib/net45/CommandLine.dll": {} + }, + "runtime": { + "lib/net45/CommandLine.dll": {} + } + }, "System.Collections/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -13,16 +20,15 @@ } }, "System.Collections.Immutable/1.1.37": { - "type": "package", "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Collections.Immutable.dll": {} @@ -32,7 +38,6 @@ } }, "System.Diagnostics.Debug/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -41,7 +46,6 @@ } }, "System.Globalization/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -50,7 +54,6 @@ } }, "System.Linq/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -59,9 +62,8 @@ } }, "System.Reflection.Metadata/1.2.0-rc2-23826": { - "type": "package", "dependencies": { - "System.Collections.Immutable": "1.1.37" + "System.Collections.Immutable": "[1.1.37, )" }, "compile": { "lib/dotnet5.2/System.Reflection.Metadata.dll": {} @@ -71,7 +73,6 @@ } }, "System.Resources.ResourceManager/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -80,7 +81,6 @@ } }, "System.Runtime/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -89,7 +89,6 @@ } }, "System.Runtime.Extensions/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -98,7 +97,6 @@ } }, "System.Threading/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -108,8 +106,15 @@ } }, ".NETFramework,Version=v4.5/win7": { + "CommandLineParser/2.0.273-beta": { + "compile": { + "lib/net45/CommandLine.dll": {} + }, + "runtime": { + "lib/net45/CommandLine.dll": {} + } + }, "System.Collections/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -118,16 +123,15 @@ } }, "System.Collections.Immutable/1.1.37": { - "type": "package", "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Collections.Immutable.dll": {} @@ -137,7 +141,6 @@ } }, "System.Diagnostics.Debug/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -146,7 +149,6 @@ } }, "System.Globalization/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -155,7 +157,6 @@ } }, "System.Linq/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -164,9 +165,8 @@ } }, "System.Reflection.Metadata/1.2.0-rc2-23826": { - "type": "package", "dependencies": { - "System.Collections.Immutable": "1.1.37" + "System.Collections.Immutable": "[1.1.37, )" }, "compile": { "lib/dotnet5.2/System.Reflection.Metadata.dll": {} @@ -176,7 +176,6 @@ } }, "System.Resources.ResourceManager/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -185,7 +184,6 @@ } }, "System.Runtime/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -194,7 +192,6 @@ } }, "System.Runtime.Extensions/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -203,7 +200,6 @@ } }, "System.Threading/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -213,8 +209,15 @@ } }, ".NETFramework,Version=v4.5/win7-anycpu": { + "CommandLineParser/2.0.273-beta": { + "compile": { + "lib/net45/CommandLine.dll": {} + }, + "runtime": { + "lib/net45/CommandLine.dll": {} + } + }, "System.Collections/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -223,16 +226,15 @@ } }, "System.Collections.Immutable/1.1.37": { - "type": "package", "dependencies": { - "System.Collections": "4.0.0", - "System.Diagnostics.Debug": "4.0.0", - "System.Globalization": "4.0.0", - "System.Linq": "4.0.0", - "System.Resources.ResourceManager": "4.0.0", - "System.Runtime": "4.0.0", - "System.Runtime.Extensions": "4.0.0", - "System.Threading": "4.0.0" + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )" }, "compile": { "lib/dotnet/System.Collections.Immutable.dll": {} @@ -242,7 +244,6 @@ } }, "System.Diagnostics.Debug/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -251,7 +252,6 @@ } }, "System.Globalization/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -260,7 +260,6 @@ } }, "System.Linq/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -269,9 +268,8 @@ } }, "System.Reflection.Metadata/1.2.0-rc2-23826": { - "type": "package", "dependencies": { - "System.Collections.Immutable": "1.1.37" + "System.Collections.Immutable": "[1.1.37, )" }, "compile": { "lib/dotnet5.2/System.Reflection.Metadata.dll": {} @@ -281,7 +279,6 @@ } }, "System.Resources.ResourceManager/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -290,7 +287,6 @@ } }, "System.Runtime/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -299,7 +295,6 @@ } }, "System.Runtime.Extensions/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -308,7 +303,6 @@ } }, "System.Threading/4.0.0": { - "type": "package", "compile": { "ref/net45/_._": {} }, @@ -319,13 +313,24 @@ } }, "libraries": { + "CommandLineParser/2.0.273-beta": { + "sha512": "EBYRuYk9kZoDnpZNL9gQFuothWo62akT9YL7d/vYFXpylt6AMJYnHBAgVZ+bGfcKPqioynH8izzMJYdraFtZnA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "CommandLineParser.nuspec", + "lib/net40/CommandLine.dll", + "lib/net40/CommandLine.XML", + "lib/net45/CommandLine.dll", + "lib/net45/CommandLine.XML", + "package/services/metadata/core-properties/d01dfbbc96674ad28b3296654dac82a3.psmdcp" + ] + }, "System.Collections/4.0.0": { "sha512": "i2vsGDIEbWdHcUSNDPKZP/ZWod6o740el7mGTCy0dqbCxQh74W4QoC+klUwPEtGEFuvzJ7bJgvwJqscosVNyZQ==", "type": "package", "files": [ - "License.rtf", - "System.Collections.4.0.0.nupkg.sha512", - "System.Collections.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", @@ -334,10 +339,7 @@ "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Collections.dll", - "ref/dotnet/System.Collections.xml", + "License.rtf", "ref/dotnet/de/System.Collections.xml", "ref/dotnet/es/System.Collections.xml", "ref/dotnet/fr/System.Collections.xml", @@ -345,11 +347,13 @@ "ref/dotnet/ja/System.Collections.xml", "ref/dotnet/ko/System.Collections.xml", "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", "ref/dotnet/zh-hans/System.Collections.xml", "ref/dotnet/zh-hant/System.Collections.xml", + "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", @@ -357,34 +361,35 @@ "ref/netcore50/ja/System.Collections.xml", "ref/netcore50/ko/System.Collections.xml", "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", "ref/netcore50/zh-hans/System.Collections.xml", "ref/netcore50/zh-hant/System.Collections.xml", "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "System.Collections.4.0.0.nupkg.sha512", + "System.Collections.nuspec" ] }, "System.Collections.Immutable/1.1.37": { "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", "type": "package", "files": [ - "System.Collections.Immutable.1.1.37.nupkg.sha512", - "System.Collections.Immutable.nuspec", "lib/dotnet/System.Collections.Immutable.dll", "lib/dotnet/System.Collections.Immutable.xml", "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml" + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37.nupkg.sha512", + "System.Collections.Immutable.nuspec" ] }, "System.Diagnostics.Debug/4.0.0": { "sha512": "AYJsLLGDVTC/nyURjgAo7Lpye0+HuSkcQujUf+NgQVdC/C/ky5NyamQHCforHJzgqspitMMtBe8B4UBdGXy1zQ==", "type": "package", "files": [ - "License.rtf", - "System.Diagnostics.Debug.4.0.0.nupkg.sha512", - "System.Diagnostics.Debug.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", @@ -393,10 +398,7 @@ "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Diagnostics.Debug.dll", - "ref/dotnet/System.Diagnostics.Debug.xml", + "License.rtf", "ref/dotnet/de/System.Diagnostics.Debug.xml", "ref/dotnet/es/System.Diagnostics.Debug.xml", "ref/dotnet/fr/System.Diagnostics.Debug.xml", @@ -404,11 +406,13 @@ "ref/dotnet/ja/System.Diagnostics.Debug.xml", "ref/dotnet/ko/System.Diagnostics.Debug.xml", "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "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", @@ -416,22 +420,23 @@ "ref/netcore50/ja/System.Diagnostics.Debug.xml", "ref/netcore50/ko/System.Diagnostics.Debug.xml", "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "System.Diagnostics.Debug.4.0.0.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" ] }, "System.Globalization/4.0.0": { "sha512": "IBJyTo1y7ZtzzoJUA60T1XPvNTyw/wfFmjFoBFtlYfkekIOtD/AzDDIg0YdUa7eNtFEfliED2R7HdppTdU4t5A==", "type": "package", "files": [ - "License.rtf", - "System.Globalization.4.0.0.nupkg.sha512", - "System.Globalization.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", @@ -440,10 +445,7 @@ "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Globalization.dll", - "ref/dotnet/System.Globalization.xml", + "License.rtf", "ref/dotnet/de/System.Globalization.xml", "ref/dotnet/es/System.Globalization.xml", "ref/dotnet/fr/System.Globalization.xml", @@ -451,11 +453,13 @@ "ref/dotnet/ja/System.Globalization.xml", "ref/dotnet/ko/System.Globalization.xml", "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", "ref/dotnet/zh-hans/System.Globalization.xml", "ref/dotnet/zh-hant/System.Globalization.xml", + "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", @@ -463,29 +467,29 @@ "ref/netcore50/ja/System.Globalization.xml", "ref/netcore50/ko/System.Globalization.xml", "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", "ref/netcore50/zh-hans/System.Globalization.xml", "ref/netcore50/zh-hant/System.Globalization.xml", "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "System.Globalization.4.0.0.nupkg.sha512", + "System.Globalization.nuspec" ] }, "System.Linq/4.0.0": { "sha512": "r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==", "type": "package", "files": [ - "System.Linq.4.0.0.nupkg.sha512", - "System.Linq.nuspec", "lib/dotnet/System.Linq.dll", "lib/net45/_._", "lib/netcore50/System.Linq.dll", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", - "ref/dotnet/System.Linq.dll", - "ref/dotnet/System.Linq.xml", "ref/dotnet/de/System.Linq.xml", "ref/dotnet/es/System.Linq.xml", "ref/dotnet/fr/System.Linq.xml", @@ -493,6 +497,8 @@ "ref/dotnet/ja/System.Linq.xml", "ref/dotnet/ko/System.Linq.xml", "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", "ref/dotnet/zh-hans/System.Linq.xml", "ref/dotnet/zh-hant/System.Linq.xml", "ref/net45/_._", @@ -500,37 +506,35 @@ "ref/netcore50/System.Linq.xml", "ref/win8/_._", "ref/wp80/_._", - "ref/wpa81/_._" + "ref/wpa81/_._", + "System.Linq.4.0.0.nupkg.sha512", + "System.Linq.nuspec" ] }, "System.Reflection.Metadata/1.2.0-rc2-23826": { "sha512": "iaq5zpluF7mUMd5hFyhmZGyCSzF6glZjvNI2VAhLFQEp8sGA/tROj6NoZL42q6HhoHxi1XyGeoIXPi5hyw0+5w==", "type": "package", "files": [ - "System.Reflection.Metadata.1.2.0-rc2-23826.nupkg.sha512", - "System.Reflection.Metadata.nuspec", - "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/dotnet5.2/System.Reflection.Metadata.dll", "lib/dotnet5.2/System.Reflection.Metadata.xml", "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml" + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "System.Reflection.Metadata.1.2.0-rc2-23826.nupkg.sha512", + "System.Reflection.Metadata.nuspec", + "ThirdPartyNotices.txt" ] }, "System.Resources.ResourceManager/4.0.0": { "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", "type": "package", "files": [ - "System.Resources.ResourceManager.4.0.0.nupkg.sha512", - "System.Resources.ResourceManager.nuspec", "lib/DNXCore50/System.Resources.ResourceManager.dll", "lib/net45/_._", "lib/netcore50/System.Resources.ResourceManager.dll", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", - "ref/dotnet/System.Resources.ResourceManager.dll", - "ref/dotnet/System.Resources.ResourceManager.xml", "ref/dotnet/de/System.Resources.ResourceManager.xml", "ref/dotnet/es/System.Resources.ResourceManager.xml", "ref/dotnet/fr/System.Resources.ResourceManager.xml", @@ -538,6 +542,8 @@ "ref/dotnet/ja/System.Resources.ResourceManager.xml", "ref/dotnet/ko/System.Resources.ResourceManager.xml", "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", "ref/net45/_._", @@ -546,16 +552,15 @@ "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" ] }, "System.Runtime/4.0.0": { "sha512": "Uq9epame8hEqJlj4KaWb67dDJvj4IM37jRFGVeFbugRdPz48bR0voyBhrbf3iSa2tAmlkg4lsa6BUOL9iwlMew==", "type": "package", "files": [ - "License.rtf", - "System.Runtime.4.0.0.nupkg.sha512", - "System.Runtime.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", @@ -564,10 +569,7 @@ "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Runtime.dll", - "ref/dotnet/System.Runtime.xml", + "License.rtf", "ref/dotnet/de/System.Runtime.xml", "ref/dotnet/es/System.Runtime.xml", "ref/dotnet/fr/System.Runtime.xml", @@ -575,11 +577,13 @@ "ref/dotnet/ja/System.Runtime.xml", "ref/dotnet/ko/System.Runtime.xml", "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", "ref/dotnet/zh-hans/System.Runtime.xml", "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", "ref/net45/_._", - "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", @@ -587,22 +591,23 @@ "ref/netcore50/ja/System.Runtime.xml", "ref/netcore50/ko/System.Runtime.xml", "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", "ref/netcore50/zh-hans/System.Runtime.xml", "ref/netcore50/zh-hant/System.Runtime.xml", "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "System.Runtime.4.0.0.nupkg.sha512", + "System.Runtime.nuspec" ] }, "System.Runtime.Extensions/4.0.0": { "sha512": "zPzwoJcA7qar/b5Ihhzfcdr3vBOR8FIg7u//Qc5mqyAriasXuMFVraBZ5vOQq5asfun9ryNEL8Z2BOlUK5QRqA==", "type": "package", "files": [ - "License.rtf", - "System.Runtime.Extensions.4.0.0.nupkg.sha512", - "System.Runtime.Extensions.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", @@ -611,10 +616,7 @@ "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Runtime.Extensions.dll", - "ref/dotnet/System.Runtime.Extensions.xml", + "License.rtf", "ref/dotnet/de/System.Runtime.Extensions.xml", "ref/dotnet/es/System.Runtime.Extensions.xml", "ref/dotnet/fr/System.Runtime.Extensions.xml", @@ -622,11 +624,13 @@ "ref/dotnet/ja/System.Runtime.Extensions.xml", "ref/dotnet/ko/System.Runtime.Extensions.xml", "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", "ref/net45/_._", - "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", @@ -634,22 +638,23 @@ "ref/netcore50/ja/System.Runtime.Extensions.xml", "ref/netcore50/ko/System.Runtime.Extensions.xml", "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "System.Runtime.Extensions.4.0.0.nupkg.sha512", + "System.Runtime.Extensions.nuspec" ] }, "System.Threading/4.0.0": { "sha512": "H6O/9gUrjPDNYanh/7OFGAZHjVXvEuITD0RcnjfvIV04HOGrOPqUBU0kmz9RIX/7YGgCQn1o1S2DX6Cuv8kVGQ==", "type": "package", "files": [ - "License.rtf", - "System.Threading.4.0.0.nupkg.sha512", - "System.Threading.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", @@ -658,10 +663,7 @@ "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/dotnet/System.Threading.dll", - "ref/dotnet/System.Threading.xml", + "License.rtf", "ref/dotnet/de/System.Threading.xml", "ref/dotnet/es/System.Threading.xml", "ref/dotnet/fr/System.Threading.xml", @@ -669,11 +671,13 @@ "ref/dotnet/ja/System.Threading.xml", "ref/dotnet/ko/System.Threading.xml", "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", "ref/dotnet/zh-hans/System.Threading.xml", "ref/dotnet/zh-hant/System.Threading.xml", + "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", @@ -681,18 +685,23 @@ "ref/netcore50/ja/System.Threading.xml", "ref/netcore50/ko/System.Threading.xml", "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", "ref/netcore50/zh-hans/System.Threading.xml", "ref/netcore50/zh-hant/System.Threading.xml", "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "System.Threading.4.0.0.nupkg.sha512", + "System.Threading.nuspec" ] } }, "projectFileDependencyGroups": { "": [ + "CommandLineParser >= 2.0.273-beta", "System.Collections.Immutable >= 1.1.37", "System.Reflection.Metadata >= 1.2.0-rc2-23826" ], -- GitLab