From 4710eea6792c60943fdb6f53edcb508ea626092c Mon Sep 17 00:00:00 2001 From: Nikrybkin Date: Fri, 10 Sep 2021 19:21:18 +0300 Subject: [PATCH 1/8] first commit --- CourseApp.Tests/MyProgTests.cs | 20 ++++++++++++++++++++ CourseApp/MyProg.cs | 10 ++++++++++ 2 files changed, 30 insertions(+) create mode 100644 CourseApp.Tests/MyProgTests.cs create mode 100644 CourseApp/MyProg.cs diff --git a/CourseApp.Tests/MyProgTests.cs b/CourseApp.Tests/MyProgTests.cs new file mode 100644 index 00000000..0eaef01e --- /dev/null +++ b/CourseApp.Tests/MyProgTests.cs @@ -0,0 +1,20 @@ +namespace CourseApp.Tests +{ + using Xunit; + + public class MyProgTests + { + [Fact] + public void Sum1_And2_Returned3() + { + int x = 1; + int y = 2; + int expected = 3; + + MyProg c = new MyProg(); + int actual = c.Sum(x, y); + + Assert.Equal(expected, actual); + } + } +} diff --git a/CourseApp/MyProg.cs b/CourseApp/MyProg.cs new file mode 100644 index 00000000..0ba1b64d --- /dev/null +++ b/CourseApp/MyProg.cs @@ -0,0 +1,10 @@ +namespace CourseApp +{ + public class MyProg + { + public int Sum(int x, int y) + { + return x + y; + } + } +} From a5111a5c61ac7dcb5e52d90b2caee52c9af6a12b Mon Sep 17 00:00:00 2001 From: Nikrybkin Date: Fri, 24 Sep 2021 22:54:05 +0300 Subject: [PATCH 2/8] without tests --- CourseApp.Tests/DemoTest.cs | 53 +++++++++++++++++++++++++- CourseApp/Calculator.cs | 25 ++++++++++++ CourseApp/Function.cs | 42 ++++++++++++++++++++ CourseApp/PigAndSalo.cs | 76 +++++++++++++++++++++++++++++++++++++ 4 files changed, 194 insertions(+), 2 deletions(-) create mode 100644 CourseApp/Calculator.cs create mode 100644 CourseApp/Function.cs create mode 100644 CourseApp/PigAndSalo.cs diff --git a/CourseApp.Tests/DemoTest.cs b/CourseApp.Tests/DemoTest.cs index cf7cbb14..99cd7448 100644 --- a/CourseApp.Tests/DemoTest.cs +++ b/CourseApp.Tests/DemoTest.cs @@ -5,9 +5,58 @@ namespace CourseApp.Tests public class DemoTest { [Fact] - public void Test1() + public void Test() { Assert.True(true); } + + [Fact] + public void TestIntSum() + { + int firstNumber = 2; + int secondNumber = 3; + int expected = 5; + var calc = new Calculator(); + var actual = calc.GetSum(firstNumber, secondNumber); + + Assert.Equal(expected, actual); + } + + [Fact] + public void TestIntProduct() + { + int firstNumber = 2; + int secondNumber = 3; + int expected = 6; + var calc = new Calculator(); + var actual = calc.GetProduct(firstNumber, secondNumber); + + Assert.Equal(expected, actual); + } + + [Fact] + public void TestDoubleQuotient() + { + double firstNumber = 5; + double secondNumber = 2; + double expected = 2.5; + var calc = new Calculator(); + var actual = calc.GetQuotient(firstNumber, secondNumber); + + Assert.Equal(expected, actual); + } + + [Fact] + public void TestDoubleQuotientNull() + { + var calc = new Calculator(); + double firstNumber = 5; + double secondNumber = 0; + double expected = double.PositiveInfinity; + + var actual = calc.GetQuotient(firstNumber, secondNumber); + + Assert.Equal(expected, actual); + } } -} +} \ No newline at end of file diff --git a/CourseApp/Calculator.cs b/CourseApp/Calculator.cs new file mode 100644 index 00000000..aec26da0 --- /dev/null +++ b/CourseApp/Calculator.cs @@ -0,0 +1,25 @@ +namespace CourseApp +{ + public class Calculator + { + public int GetSum(int a, int b) + { + return a + b; + } + + public double GeSum(double a, double b) + { + return a + b; + } + + public int GetProduct(int a, int b) + { + return a * b; + } + + public double GetQuotient(double a, double b) + { + return a / b; + } + } +} \ No newline at end of file diff --git a/CourseApp/Function.cs b/CourseApp/Function.cs new file mode 100644 index 00000000..1435b1d8 --- /dev/null +++ b/CourseApp/Function.cs @@ -0,0 +1,42 @@ +namespace CourseApp +{ + using System; + + public class Function + { + public double MathFunction(double x = 0) + { + double arcSin = Math.Asin(x); + double arcCos = Math.Acos(x); + return Math.Pow((arcSin * arcSin * arcSin * arcSin) + (arcCos * arcCos * arcCos * arcCos * arcCos * arcCos), 1 / 7); + } + + public double[] TaskA(double xn, double xk, double dx) + { + int g = (int)(((xk - xn) / dx) + 1); + double[] results = new double[g]; + int i = 0; + while (xn <= xk) + { + results[i] = MathFunction(xn); + i++; + xn = xn + dx; + } + + return results; + } + + public double[] TaskB(double[] numbers) + { + double[] results = new double[numbers.Length]; + int g = 0; + foreach (double i in numbers) + { + results[g] = MathFunction(i); + g++; + } + + return results; + } + } +} \ No newline at end of file diff --git a/CourseApp/PigAndSalo.cs b/CourseApp/PigAndSalo.cs new file mode 100644 index 00000000..1acb582b --- /dev/null +++ b/CourseApp/PigAndSalo.cs @@ -0,0 +1,76 @@ +namespace CourseApp +{ + public class PigAndSalo + { + private string pig; + private string salo; + private int age; + private int dateOfDeath; + + public PigAndSalo(string pig, string salo, string color, int age, int dateOfDeath) + { + Pig = pig; + Salo = salo; + Age = age; + DateOfDeath = dateOfDeath; + } + + public string Pig + { + get + { + return pig; + } + + set + { + pig = value; + } + } + + public string Salo + { + get + { + return salo; + } + + set + { + salo = value; + } + } + + public int Age + { + get + { + return age; + } + + set + { + if (age > 20) + { + age = value; + } + } + } + + public int DateOfDeath + { + get + { + return age; + } + + set + { + if (dateOfDeath > 30) + { + dateOfDeath = value; + } + } + } + } +} From bfbc072c149236b9c52507337096dc84a08b2beb Mon Sep 17 00:00:00 2001 From: Nikrybkin <71150246+Nikrybkin@users.noreply.github.com> Date: Tue, 7 Dec 2021 21:52:03 +0300 Subject: [PATCH 3/8] Add files via upload --- .../CourseApp.Tests/AnimalsTest.cs | 54 + .../CourseApp.Tests/CourseApp.Tests.csproj | 29 + .../CourseApp.Tests/DemoTest.cs | 62 + .../CourseApp.Tests/MyProgTests.cs | 20 + .../CourseApp.Tests.csproj.nuget.dgspec.json | 150 + .../obj/CourseApp.Tests.csproj.nuget.g.props | 30 + .../CourseApp.Tests.csproj.nuget.g.targets | 13 + .../CourseApp.Tests.AssemblyInfo.cs | 23 + .../CourseApp.Tests.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 3 + .../netcoreapp2.1/CourseApp.Tests.Program.cs | Bin 0 -> 436 bytes .../CourseApp.Tests.assets.cache | Bin 0 -> 82235 bytes ...seApp.Tests.csproj.AssemblyReference.cache | Bin 0 -> 11 bytes .../CourseApp.Tests.AssemblyInfo.cs | 23 + .../CourseApp.Tests.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 3 + .../CourseApp.Tests/obj/project.assets.json | 6029 +++++++++++++++++ .../CourseApp.Tests/obj/project.nuget.cache | 93 + .../CourseApp/Animals.cs | 117 + .../CourseApp/Bull.cs | 44 + .../CourseApp/Calculator.cs | 25 + .../CourseApp/CourseApp.csproj | 22 + .../CourseApp/CourseApp.sln | 31 + .../CourseApp/Function.cs | 42 + .../CourseApp/MyProg.cs | 10 + .../CourseApp/Pig.cs | 49 + .../CourseApp/PigAndSalo.cs | 76 + .../CourseApp/Program.cs | 27 + .../Debug/netcoreapp2.1/CourseApp.deps.json | 34 + .../bin/Debug/netcoreapp2.1/CourseApp.dll | Bin 0 -> 8704 bytes .../bin/Debug/netcoreapp2.1/CourseApp.pdb | Bin 0 -> 11988 bytes .../CourseApp.runtimeconfig.dev.json | 8 + .../CourseApp.runtimeconfig.json | 9 + .../obj/CourseApp.csproj.nuget.dgspec.json | 71 + .../obj/CourseApp.csproj.nuget.g.props | 24 + .../obj/CourseApp.csproj.nuget.g.targets | 10 + .../netcoreapp2.1/CourseApp.AssemblyInfo.cs | 23 + .../CourseApp.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 3 + .../netcoreapp2.1/CourseApp.assets.cache | Bin 0 -> 26599 bytes .../CourseApp.csproj.AssemblyReference.cache | Bin 0 -> 11 bytes .../CourseApp.csproj.CoreCompileInputs.cache | 1 + .../CourseApp.csproj.FileListAbsolute.txt | 13 + .../obj/Debug/netcoreapp2.1/CourseApp.dll | Bin 0 -> 8704 bytes .../CourseApp.genruntimeconfig.cache | 1 + .../obj/Debug/netcoreapp2.1/CourseApp.pdb | Bin 0 -> 11988 bytes .../netcoreapp2.1/CourseApp.AssemblyInfo.cs | 23 + .../CourseApp.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 3 + .../netcoreapp2.1/CourseApp.assets.cache | Bin 0 -> 26599 bytes .../CourseApp/obj/project.assets.json | 786 +++ .../CourseApp/obj/project.nuget.cache | 17 + Tprogramming_2021-Nikita_Rybkin/Dockerfile | 17 + Tprogramming_2021-Nikita_Rybkin/README.md | 3 + .../_stylecop/stylecop.json | 12 + .../_stylecop/stylecop.ruleset | 13 + .../courseworkspace.code-workspace | 15 + .../docker-compose.yml | 7 + 58 files changed, 8072 insertions(+) create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/AnimalsTest.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/CourseApp.Tests.csproj create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/DemoTest.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/MyProgTests.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.dgspec.json create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.props create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.targets create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.Program.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.assets.cache create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.csproj.AssemblyReference.cache create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.assets.json create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.nuget.cache create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/Animals.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/Bull.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/Calculator.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.csproj create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.sln create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/Function.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/MyProg.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/Pig.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/PigAndSalo.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/Program.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.deps.json create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.dll create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.pdb create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.dev.json create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.json create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.dgspec.json create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.props create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.targets create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfo.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.assets.cache create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.csproj.AssemblyReference.cache create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.csproj.CoreCompileInputs.cache create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.csproj.FileListAbsolute.txt create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.dll create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.genruntimeconfig.cache create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.pdb create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfo.cs create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.assets.cache create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/project.assets.json create mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/project.nuget.cache create mode 100644 Tprogramming_2021-Nikita_Rybkin/Dockerfile create mode 100644 Tprogramming_2021-Nikita_Rybkin/README.md create mode 100644 Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.json create mode 100644 Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.ruleset create mode 100644 Tprogramming_2021-Nikita_Rybkin/courseworkspace.code-workspace create mode 100644 Tprogramming_2021-Nikita_Rybkin/docker-compose.yml diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/AnimalsTest.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/AnimalsTest.cs new file mode 100644 index 00000000..0790c476 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/AnimalsTest.cs @@ -0,0 +1,54 @@ +namespace CourseApp.Tests +{ + using Xunit; + + public class AnimalsTest + { + [Theory] + [InlineData("Animals", "Animals")] + [InlineData("Бычок", "Бычок")] + public void TestName(string a, string exp) + { + Pig actualResult = new Pig(a, 1); + Assert.Equal(exp, actualResult.Name); + } + + [Theory] + [InlineData(88, 88)] + [InlineData(-20, 0)] + public void TestWeight(int a, int exp) + { + Pig actual = new Pig(" ", a); + Assert.Equal(exp, actual.Weight); + } + + [Theory] + [InlineData(0, 0)] + [InlineData(-1, 0)] + [InlineData(88, 88)] + public void TestFat(int a, int expected) + { + Pig actual = new Pig(" ", 0, a); + Assert.Equal(expected, actual.Lard); + } + + [Theory] + [InlineData(0, 0)] + [InlineData(-1, 0)] + [InlineData(8, 8)] + public void TestAge(int a, int expected) + { + Pig actual = new Pig(" ", 0, a, 88); + Assert.Equal(expected, actual.Age); + } + + [Theory] + [InlineData("Бычок", 5, "Из Бычок можно получить 5 сала\n")] + [InlineData("Бычок", 0, "Бычок Без сала\n")] + public void TestToString(string n, int a, string expected) + { + Bull actual = new Bull(n, 8, a); + Assert.Equal(expected, actual.ToString()); + } + } +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/CourseApp.Tests.csproj b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/CourseApp.Tests.csproj new file mode 100644 index 00000000..8dc39cc2 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/CourseApp.Tests.csproj @@ -0,0 +1,29 @@ + + + + netcoreapp2.1 + True + false + + + + + + + + + + + + + + + ../_stylecop/stylecop.ruleset + true + + + + + + + diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/DemoTest.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/DemoTest.cs new file mode 100644 index 00000000..99cd7448 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/DemoTest.cs @@ -0,0 +1,62 @@ +namespace CourseApp.Tests +{ + using Xunit; + + public class DemoTest + { + [Fact] + public void Test() + { + Assert.True(true); + } + + [Fact] + public void TestIntSum() + { + int firstNumber = 2; + int secondNumber = 3; + int expected = 5; + var calc = new Calculator(); + var actual = calc.GetSum(firstNumber, secondNumber); + + Assert.Equal(expected, actual); + } + + [Fact] + public void TestIntProduct() + { + int firstNumber = 2; + int secondNumber = 3; + int expected = 6; + var calc = new Calculator(); + var actual = calc.GetProduct(firstNumber, secondNumber); + + Assert.Equal(expected, actual); + } + + [Fact] + public void TestDoubleQuotient() + { + double firstNumber = 5; + double secondNumber = 2; + double expected = 2.5; + var calc = new Calculator(); + var actual = calc.GetQuotient(firstNumber, secondNumber); + + Assert.Equal(expected, actual); + } + + [Fact] + public void TestDoubleQuotientNull() + { + var calc = new Calculator(); + double firstNumber = 5; + double secondNumber = 0; + double expected = double.PositiveInfinity; + + var actual = calc.GetQuotient(firstNumber, secondNumber); + + Assert.Equal(expected, actual); + } + } +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/MyProgTests.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/MyProgTests.cs new file mode 100644 index 00000000..0eaef01e --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/MyProgTests.cs @@ -0,0 +1,20 @@ +namespace CourseApp.Tests +{ + using Xunit; + + public class MyProgTests + { + [Fact] + public void Sum1_And2_Returned3() + { + int x = 1; + int y = 2; + int expected = 3; + + MyProg c = new MyProg(); + int actual = c.Sum(x, y); + + Assert.Equal(expected, actual); + } + } +} diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.dgspec.json b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.dgspec.json new file mode 100644 index 00000000..812d374e --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.dgspec.json @@ -0,0 +1,150 @@ +{ + "format": 1, + "restore": { + "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\CourseApp.Tests.csproj": {} + }, + "projects": { + "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\CourseApp.Tests.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\CourseApp.Tests.csproj", + "projectName": "CourseApp.Tests", + "projectPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\CourseApp.Tests.csproj", + "packagesPath": "C:\\Users\\USER\\.nuget\\packages\\", + "outputPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\USER\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp2.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", + "projectReferences": { + "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj": { + "projectPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj" + } + } + } + }, + "warningProperties": { + "allWarningsAsErrors": true, + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[15.9.0, )" + }, + "Microsoft.NETCore.App": { + "suppressParent": "All", + "target": "Package", + "version": "[2.1.0, )", + "autoReferenced": true + }, + "StyleCop.Analyzers": { + "suppressParent": "All", + "target": "Package", + "version": "[1.1.118, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.0, )" + }, + "xunit.runner.visualstudio": { + "target": "Package", + "version": "[2.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj", + "projectName": "CourseApp", + "projectPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj", + "packagesPath": "C:\\Users\\USER\\.nuget\\packages\\", + "outputPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\USER\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp2.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", + "projectReferences": {} + } + }, + "warningProperties": { + "allWarningsAsErrors": true, + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", + "dependencies": { + "Microsoft.NETCore.App": { + "suppressParent": "All", + "target": "Package", + "version": "[2.1.0, )", + "autoReferenced": true + }, + "StyleCop.Analyzers": { + "suppressParent": "All", + "target": "Package", + "version": "[1.1.118, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.props b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.props new file mode 100644 index 00000000..83e60fc6 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.props @@ -0,0 +1,30 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\USER\.nuget\packages\ + PackageReference + 5.11.0 + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + + + C:\Users\USER\.nuget\packages\newtonsoft.json\9.0.1 + C:\Users\USER\.nuget\packages\xunit.analyzers\0.10.0 + C:\Users\USER\.nuget\packages\stylecop.analyzers\1.1.118 + + \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.targets b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.targets new file mode 100644 index 00000000..7f76d851 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.targets @@ -0,0 +1,13 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + + \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs new file mode 100644 index 00000000..e2edc7cd --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("CourseApp.Tests")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("CourseApp.Tests")] +[assembly: System.Reflection.AssemblyTitleAttribute("CourseApp.Tests")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Создано классом WriteCodeFragment MSBuild. + diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache new file mode 100644 index 00000000..7a2883a6 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +acbd1a742416509077db5443708113a32a589d67 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 00000000..12d6c2cf --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = CourseApp.Tests +build_property.ProjectDir = D:\Study\2-1\Programming\Tprogramming_2021-Nikita_Rybkin\CourseApp.Tests\ diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.Program.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.Program.cs new file mode 100644 index 0000000000000000000000000000000000000000..17a78ecdc18c8c14ca3d73539f54eb9db83b1701 GIT binary patch literal 436 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 F{Xc#4r&<62 literal 0 HcmV?d00001 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.csproj.AssemblyReference.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..f5e894aea93a73e58fa9d4feab241bc197ee1a40 GIT binary patch literal 11 QcmeZu3JP{+WMlvW01Ze1dH?_b literal 0 HcmV?d00001 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs new file mode 100644 index 00000000..7686d888 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("CourseApp.Tests")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("CourseApp.Tests")] +[assembly: System.Reflection.AssemblyTitleAttribute("CourseApp.Tests")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Создано классом WriteCodeFragment MSBuild. + diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache new file mode 100644 index 00000000..d16458cd --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3386984aff786eb07a993b29d95dd0d1fad630aa diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 00000000..12d6c2cf --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = CourseApp.Tests +build_property.ProjectDir = D:\Study\2-1\Programming\Tprogramming_2021-Nikita_Rybkin\CourseApp.Tests\ diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.assets.json b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.assets.json new file mode 100644 index 00000000..43734ea9 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.assets.json @@ -0,0 +1,6029 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v2.1": { + "Microsoft.CodeCoverage/15.9.0": { + "type": "package", + "compile": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} + } + }, + "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.0.3": { + "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.0.3": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.PlatformAbstractions": "1.0.3", + "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.9.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "15.9.0", + "Microsoft.TestPlatform.TestHost": "15.9.0" + }, + "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.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.DotNetHostPolicy": "2.1.0", + "Microsoft.NETCore.Platforms": "2.1.0", + "Microsoft.NETCore.Targets": "2.1.0", + "NETStandard.Library": "2.0.3" + }, + "compile": { + "ref/netcoreapp2.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp2.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp2.1/System.AppContext.dll": {}, + "ref/netcoreapp2.1/System.Buffers.dll": {}, + "ref/netcoreapp2.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp2.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp2.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp2.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp2.1/System.Collections.dll": {}, + "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp2.1/System.ComponentModel.dll": {}, + "ref/netcoreapp2.1/System.Configuration.dll": {}, + "ref/netcoreapp2.1/System.Console.dll": {}, + "ref/netcoreapp2.1/System.Core.dll": {}, + "ref/netcoreapp2.1/System.Data.Common.dll": {}, + "ref/netcoreapp2.1/System.Data.dll": {}, + "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp2.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp2.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp2.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp2.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp2.1/System.Drawing.dll": {}, + "ref/netcoreapp2.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp2.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp2.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp2.1/System.Globalization.dll": {}, + "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp2.1/System.IO.Compression.dll": {}, + "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp2.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp2.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp2.1/System.IO.dll": {}, + "ref/netcoreapp2.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp2.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp2.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp2.1/System.Linq.dll": {}, + "ref/netcoreapp2.1/System.Memory.dll": {}, + "ref/netcoreapp2.1/System.Net.Http.dll": {}, + "ref/netcoreapp2.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp2.1/System.Net.Mail.dll": {}, + "ref/netcoreapp2.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp2.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp2.1/System.Net.Ping.dll": {}, + "ref/netcoreapp2.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp2.1/System.Net.Requests.dll": {}, + "ref/netcoreapp2.1/System.Net.Security.dll": {}, + "ref/netcoreapp2.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp2.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp2.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp2.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp2.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp2.1/System.Net.dll": {}, + "ref/netcoreapp2.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp2.1/System.Numerics.dll": {}, + "ref/netcoreapp2.1/System.ObjectModel.dll": {}, + "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp2.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp2.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp2.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp2.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp2.1/System.Reflection.dll": {}, + "ref/netcoreapp2.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp2.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp2.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp2.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp2.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp2.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp2.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp2.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp2.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp2.1/System.Runtime.dll": {}, + "ref/netcoreapp2.1/System.Security.Claims.dll": {}, + "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp2.1/System.Security.Principal.dll": {}, + "ref/netcoreapp2.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp2.1/System.Security.dll": {}, + "ref/netcoreapp2.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp2.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp2.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp2.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp2.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp2.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp2.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp2.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp2.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp2.1/System.Threading.dll": {}, + "ref/netcoreapp2.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp2.1/System.Transactions.dll": {}, + "ref/netcoreapp2.1/System.ValueTuple.dll": {}, + "ref/netcoreapp2.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp2.1/System.Web.dll": {}, + "ref/netcoreapp2.1/System.Windows.dll": {}, + "ref/netcoreapp2.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp2.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp2.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp2.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp2.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp2.1/System.Xml.dll": {}, + "ref/netcoreapp2.1/System.dll": {}, + "ref/netcoreapp2.1/WindowsBase.dll": {}, + "ref/netcoreapp2.1/mscorlib.dll": {}, + "ref/netcoreapp2.1/netstandard.dll": {} + }, + "build": { + "build/netcoreapp2.1/Microsoft.NETCore.App.props": {}, + "build/netcoreapp2.1/Microsoft.NETCore.App.targets": {} + } + }, + "Microsoft.NETCore.DotNetAppHost/2.1.0": { + "type": "package" + }, + "Microsoft.NETCore.DotNetHostPolicy/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.DotNetHostResolver": "2.1.0" + } + }, + "Microsoft.NETCore.DotNetHostResolver/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.DotNetAppHost": "2.1.0" + } + }, + "Microsoft.NETCore.Platforms/2.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/2.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.TestPlatform.ObjectModel/15.9.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.ComponentModel.TypeConverter": "4.1.0", + "System.Diagnostics.Process": "4.1.0", + "System.Diagnostics.TextWriterTraceListener": "4.0.0", + "System.Diagnostics.TraceSource": "4.0.0", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Runtime.Loader": "4.0.0", + "System.Runtime.Serialization.Json": "4.0.2", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Threading.Thread": "4.0.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.9.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyModel": "1.0.3", + "Microsoft.TestPlatform.ObjectModel": "15.9.0", + "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.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "Microsoft.Win32.Registry/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.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.3": { + "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.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "StyleCop.Analyzers/1.1.118": { + "type": "package" + }, + "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.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Reflection": "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.Threading.Tasks": "4.0.11" + }, + "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.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "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.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.1", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "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/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.ComponentModel.Primitives/4.1.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.NonGeneric": "4.0.1", + "System.Collections.Specialized": "4.0.1", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Primitives": "4.1.0", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "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.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "Microsoft.Win32.Registry": "4.0.0", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.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.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.TraceSource": "4.0.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.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.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.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.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.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.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.1.0": { + "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.Runtime.Extensions": "4.1.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.1.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "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.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.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Reflection/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.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.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/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.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.2": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Private.DataContractSerialization": "4.1.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "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.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Thread/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "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.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.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.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/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.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "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.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XmlDocument": "4.0.1" + }, + "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.4.0": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.0]", + "xunit.core": "[2.4.0]" + } + }, + "xunit.abstractions/2.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard2.0/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.0": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.0]", + "xunit.extensibility.execution": "[2.4.0]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.0": { + "type": "package", + "dependencies": { + "xunit.abstractions": "2.0.2" + }, + "compile": { + "lib/netstandard2.0/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.0": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.0]" + }, + "compile": { + "lib/netstandard2.0/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard2.0/xunit.execution.dotnet.dll": {} + } + }, + "xunit.runner.visualstudio/2.4.0": { + "type": "package", + "dependencies": { + "Microsoft.NET.Test.Sdk": "15.0.0" + }, + "build": { + "build/netcoreapp1.0/xunit.runner.visualstudio.props": {} + } + }, + "CourseApp/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v2.1", + "compile": { + "bin/placeholder/CourseApp.dll": {} + }, + "runtime": { + "bin/placeholder/CourseApp.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeCoverage/15.9.0": { + "sha512": "oherNadUtHKqFQbtdRKXgPvZVWyGkOeS83pFWT864587npS7JIFWIJ/LJV0c25cWNkCytn2S9XGSSkKscnNFAQ==", + "type": "package", + "path": "microsoft.codecoverage/15.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard1.0/CodeCoverage/CodeCoverage.config", + "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard1.0/CodeCoverage/covrun32.dll", + "build/netstandard1.0/CodeCoverage/msdia140.dll", + "build/netstandard1.0/Microsoft.CodeCoverage.props", + "build/netstandard1.0/Microsoft.CodeCoverage.targets", + "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.15.9.0.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "Microsoft.CSharp/4.0.1": { + "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", + "type": "package", + "path": "microsoft.csharp/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.3": { + "sha512": "rF92Gp5L2asYrFNf0cKNBxzzGLh1krHuj6TRDk9wdjN2qdvJLaNYOn1s9oYkMlptYX436KiEFqxhLB+I5veXvQ==", + "type": "package", + "path": "microsoft.dotnet.platformabstractions/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/.DS_Store", + "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll", + "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll", + "microsoft.dotnet.platformabstractions.1.0.3.nupkg.sha512", + "microsoft.dotnet.platformabstractions.nuspec" + ] + }, + "Microsoft.Extensions.DependencyModel/1.0.3": { + "sha512": "Z3o19EnheuegmvgpCzwoSlnCWxYA6qIUhvKJ7ifKHHvU7U+oYR/gliLiL3LVYOOeGMEEzkpJ5W67sOcXizGtlw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/.DS_Store", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "microsoft.extensions.dependencymodel.1.0.3.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec" + ] + }, + "Microsoft.NET.Test.Sdk/15.9.0": { + "sha512": "sGDhl1lTcyC4nbMA6vta+nADm50IEGnm9SW9+JNaie1zjtSmUdOPHu02+WK2SJND+3vbr9DWvgfi9qlSPfUAyw==", + "type": "package", + "path": "microsoft.net.test.sdk/15.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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", + "build/uap10.0/Microsoft.Net.Test.Sdk.props", + "buildMultiTargeting/Microsoft.Net.Test.Sdk.props", + "microsoft.net.test.sdk.15.9.0.nupkg.sha512", + "microsoft.net.test.sdk.nuspec" + ] + }, + "Microsoft.NETCore.App/2.1.0": { + "sha512": "JNHhG+j5eIhG26+H721IDmwswGUznTwwSuJMFe/08h0X2YarHvA15sVAvUkA/2Sp3W0ENNm48t+J7KTPRqEpfA==", + "type": "package", + "path": "microsoft.netcore.app/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "Microsoft.NETCore.App.versions.txt", + "THIRD-PARTY-NOTICES.TXT", + "build/netcoreapp2.1/Microsoft.NETCore.App.PlatformManifest.txt", + "build/netcoreapp2.1/Microsoft.NETCore.App.props", + "build/netcoreapp2.1/Microsoft.NETCore.App.targets", + "microsoft.netcore.app.2.1.0.nupkg.sha512", + "microsoft.netcore.app.nuspec", + "ref/netcoreapp/_._", + "ref/netcoreapp2.1/Microsoft.CSharp.dll", + "ref/netcoreapp2.1/Microsoft.CSharp.xml", + "ref/netcoreapp2.1/Microsoft.VisualBasic.dll", + "ref/netcoreapp2.1/Microsoft.VisualBasic.xml", + "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll", + "ref/netcoreapp2.1/Microsoft.Win32.Primitives.xml", + "ref/netcoreapp2.1/System.AppContext.dll", + "ref/netcoreapp2.1/System.Buffers.dll", + "ref/netcoreapp2.1/System.Buffers.xml", + "ref/netcoreapp2.1/System.Collections.Concurrent.dll", + "ref/netcoreapp2.1/System.Collections.Concurrent.xml", + "ref/netcoreapp2.1/System.Collections.Immutable.dll", + "ref/netcoreapp2.1/System.Collections.Immutable.xml", + "ref/netcoreapp2.1/System.Collections.NonGeneric.dll", + "ref/netcoreapp2.1/System.Collections.NonGeneric.xml", + "ref/netcoreapp2.1/System.Collections.Specialized.dll", + "ref/netcoreapp2.1/System.Collections.Specialized.xml", + "ref/netcoreapp2.1/System.Collections.dll", + "ref/netcoreapp2.1/System.Collections.xml", + "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll", + "ref/netcoreapp2.1/System.ComponentModel.Annotations.xml", + "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll", + "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll", + "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.xml", + "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll", + "ref/netcoreapp2.1/System.ComponentModel.Primitives.xml", + "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll", + "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.xml", + "ref/netcoreapp2.1/System.ComponentModel.dll", + "ref/netcoreapp2.1/System.ComponentModel.xml", + "ref/netcoreapp2.1/System.Configuration.dll", + "ref/netcoreapp2.1/System.Console.dll", + "ref/netcoreapp2.1/System.Console.xml", + "ref/netcoreapp2.1/System.Core.dll", + "ref/netcoreapp2.1/System.Data.Common.dll", + "ref/netcoreapp2.1/System.Data.Common.xml", + "ref/netcoreapp2.1/System.Data.dll", + "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll", + "ref/netcoreapp2.1/System.Diagnostics.Contracts.xml", + "ref/netcoreapp2.1/System.Diagnostics.Debug.dll", + "ref/netcoreapp2.1/System.Diagnostics.Debug.xml", + "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll", + "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.xml", + "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll", + "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.xml", + "ref/netcoreapp2.1/System.Diagnostics.Process.dll", + "ref/netcoreapp2.1/System.Diagnostics.Process.xml", + "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll", + "ref/netcoreapp2.1/System.Diagnostics.StackTrace.xml", + "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll", + "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netcoreapp2.1/System.Diagnostics.Tools.dll", + "ref/netcoreapp2.1/System.Diagnostics.Tools.xml", + "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll", + "ref/netcoreapp2.1/System.Diagnostics.TraceSource.xml", + "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll", + "ref/netcoreapp2.1/System.Diagnostics.Tracing.xml", + "ref/netcoreapp2.1/System.Drawing.Primitives.dll", + "ref/netcoreapp2.1/System.Drawing.Primitives.xml", + "ref/netcoreapp2.1/System.Drawing.dll", + "ref/netcoreapp2.1/System.Dynamic.Runtime.dll", + "ref/netcoreapp2.1/System.Globalization.Calendars.dll", + "ref/netcoreapp2.1/System.Globalization.Extensions.dll", + "ref/netcoreapp2.1/System.Globalization.dll", + "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll", + "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll", + "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll", + "ref/netcoreapp2.1/System.IO.Compression.ZipFile.xml", + "ref/netcoreapp2.1/System.IO.Compression.dll", + "ref/netcoreapp2.1/System.IO.Compression.xml", + "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll", + "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.xml", + "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll", + "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll", + "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.xml", + "ref/netcoreapp2.1/System.IO.FileSystem.dll", + "ref/netcoreapp2.1/System.IO.FileSystem.xml", + "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll", + "ref/netcoreapp2.1/System.IO.IsolatedStorage.xml", + "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll", + "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.xml", + "ref/netcoreapp2.1/System.IO.Pipes.dll", + "ref/netcoreapp2.1/System.IO.Pipes.xml", + "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll", + "ref/netcoreapp2.1/System.IO.dll", + "ref/netcoreapp2.1/System.Linq.Expressions.dll", + "ref/netcoreapp2.1/System.Linq.Expressions.xml", + "ref/netcoreapp2.1/System.Linq.Parallel.dll", + "ref/netcoreapp2.1/System.Linq.Parallel.xml", + "ref/netcoreapp2.1/System.Linq.Queryable.dll", + "ref/netcoreapp2.1/System.Linq.Queryable.xml", + "ref/netcoreapp2.1/System.Linq.dll", + "ref/netcoreapp2.1/System.Linq.xml", + "ref/netcoreapp2.1/System.Memory.dll", + "ref/netcoreapp2.1/System.Memory.xml", + "ref/netcoreapp2.1/System.Net.Http.dll", + "ref/netcoreapp2.1/System.Net.Http.xml", + "ref/netcoreapp2.1/System.Net.HttpListener.dll", + "ref/netcoreapp2.1/System.Net.HttpListener.xml", + "ref/netcoreapp2.1/System.Net.Mail.dll", + "ref/netcoreapp2.1/System.Net.Mail.xml", + "ref/netcoreapp2.1/System.Net.NameResolution.dll", + "ref/netcoreapp2.1/System.Net.NameResolution.xml", + "ref/netcoreapp2.1/System.Net.NetworkInformation.dll", + "ref/netcoreapp2.1/System.Net.NetworkInformation.xml", + "ref/netcoreapp2.1/System.Net.Ping.dll", + "ref/netcoreapp2.1/System.Net.Ping.xml", + "ref/netcoreapp2.1/System.Net.Primitives.dll", + "ref/netcoreapp2.1/System.Net.Primitives.xml", + "ref/netcoreapp2.1/System.Net.Requests.dll", + "ref/netcoreapp2.1/System.Net.Requests.xml", + "ref/netcoreapp2.1/System.Net.Security.dll", + "ref/netcoreapp2.1/System.Net.Security.xml", + "ref/netcoreapp2.1/System.Net.ServicePoint.dll", + "ref/netcoreapp2.1/System.Net.ServicePoint.xml", + "ref/netcoreapp2.1/System.Net.Sockets.dll", + "ref/netcoreapp2.1/System.Net.Sockets.xml", + "ref/netcoreapp2.1/System.Net.WebClient.dll", + "ref/netcoreapp2.1/System.Net.WebClient.xml", + "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll", + "ref/netcoreapp2.1/System.Net.WebHeaderCollection.xml", + "ref/netcoreapp2.1/System.Net.WebProxy.dll", + "ref/netcoreapp2.1/System.Net.WebProxy.xml", + "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll", + "ref/netcoreapp2.1/System.Net.WebSockets.Client.xml", + "ref/netcoreapp2.1/System.Net.WebSockets.dll", + "ref/netcoreapp2.1/System.Net.WebSockets.xml", + "ref/netcoreapp2.1/System.Net.dll", + "ref/netcoreapp2.1/System.Numerics.Vectors.dll", + "ref/netcoreapp2.1/System.Numerics.Vectors.xml", + "ref/netcoreapp2.1/System.Numerics.dll", + "ref/netcoreapp2.1/System.ObjectModel.dll", + "ref/netcoreapp2.1/System.ObjectModel.xml", + "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll", + "ref/netcoreapp2.1/System.Reflection.DispatchProxy.xml", + "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll", + "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.xml", + "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll", + "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.xml", + "ref/netcoreapp2.1/System.Reflection.Emit.dll", + "ref/netcoreapp2.1/System.Reflection.Emit.xml", + "ref/netcoreapp2.1/System.Reflection.Extensions.dll", + "ref/netcoreapp2.1/System.Reflection.Metadata.dll", + "ref/netcoreapp2.1/System.Reflection.Metadata.xml", + "ref/netcoreapp2.1/System.Reflection.Primitives.dll", + "ref/netcoreapp2.1/System.Reflection.Primitives.xml", + "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll", + "ref/netcoreapp2.1/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp2.1/System.Reflection.dll", + "ref/netcoreapp2.1/System.Resources.Reader.dll", + "ref/netcoreapp2.1/System.Resources.ResourceManager.dll", + "ref/netcoreapp2.1/System.Resources.ResourceManager.xml", + "ref/netcoreapp2.1/System.Resources.Writer.dll", + "ref/netcoreapp2.1/System.Resources.Writer.xml", + "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll", + "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.xml", + "ref/netcoreapp2.1/System.Runtime.Extensions.dll", + "ref/netcoreapp2.1/System.Runtime.Extensions.xml", + "ref/netcoreapp2.1/System.Runtime.Handles.dll", + "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.xml", + "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll", + "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netcoreapp2.1/System.Runtime.InteropServices.dll", + "ref/netcoreapp2.1/System.Runtime.InteropServices.xml", + "ref/netcoreapp2.1/System.Runtime.Loader.dll", + "ref/netcoreapp2.1/System.Runtime.Loader.xml", + "ref/netcoreapp2.1/System.Runtime.Numerics.dll", + "ref/netcoreapp2.1/System.Runtime.Numerics.xml", + "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll", + "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.xml", + "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll", + "ref/netcoreapp2.1/System.Runtime.Serialization.Json.xml", + "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll", + "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.xml", + "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll", + "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.xml", + "ref/netcoreapp2.1/System.Runtime.Serialization.dll", + "ref/netcoreapp2.1/System.Runtime.dll", + "ref/netcoreapp2.1/System.Runtime.xml", + "ref/netcoreapp2.1/System.Security.Claims.dll", + "ref/netcoreapp2.1/System.Security.Claims.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Csp.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.xml", + "ref/netcoreapp2.1/System.Security.Principal.dll", + "ref/netcoreapp2.1/System.Security.Principal.xml", + "ref/netcoreapp2.1/System.Security.SecureString.dll", + "ref/netcoreapp2.1/System.Security.dll", + "ref/netcoreapp2.1/System.ServiceModel.Web.dll", + "ref/netcoreapp2.1/System.ServiceProcess.dll", + "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll", + "ref/netcoreapp2.1/System.Text.Encoding.Extensions.xml", + "ref/netcoreapp2.1/System.Text.Encoding.dll", + "ref/netcoreapp2.1/System.Text.RegularExpressions.dll", + "ref/netcoreapp2.1/System.Text.RegularExpressions.xml", + "ref/netcoreapp2.1/System.Threading.Overlapped.dll", + "ref/netcoreapp2.1/System.Threading.Overlapped.xml", + "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll", + "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.xml", + "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll", + "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.xml", + "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll", + "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.xml", + "ref/netcoreapp2.1/System.Threading.Tasks.dll", + "ref/netcoreapp2.1/System.Threading.Tasks.xml", + "ref/netcoreapp2.1/System.Threading.Thread.dll", + "ref/netcoreapp2.1/System.Threading.Thread.xml", + "ref/netcoreapp2.1/System.Threading.ThreadPool.dll", + "ref/netcoreapp2.1/System.Threading.ThreadPool.xml", + "ref/netcoreapp2.1/System.Threading.Timer.dll", + "ref/netcoreapp2.1/System.Threading.Timer.xml", + "ref/netcoreapp2.1/System.Threading.dll", + "ref/netcoreapp2.1/System.Threading.xml", + "ref/netcoreapp2.1/System.Transactions.Local.dll", + "ref/netcoreapp2.1/System.Transactions.Local.xml", + "ref/netcoreapp2.1/System.Transactions.dll", + "ref/netcoreapp2.1/System.ValueTuple.dll", + "ref/netcoreapp2.1/System.Web.HttpUtility.dll", + "ref/netcoreapp2.1/System.Web.HttpUtility.xml", + "ref/netcoreapp2.1/System.Web.dll", + "ref/netcoreapp2.1/System.Windows.dll", + "ref/netcoreapp2.1/System.Xml.Linq.dll", + "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll", + "ref/netcoreapp2.1/System.Xml.ReaderWriter.xml", + "ref/netcoreapp2.1/System.Xml.Serialization.dll", + "ref/netcoreapp2.1/System.Xml.XDocument.dll", + "ref/netcoreapp2.1/System.Xml.XDocument.xml", + "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll", + "ref/netcoreapp2.1/System.Xml.XPath.XDocument.xml", + "ref/netcoreapp2.1/System.Xml.XPath.dll", + "ref/netcoreapp2.1/System.Xml.XPath.xml", + "ref/netcoreapp2.1/System.Xml.XmlDocument.dll", + "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll", + "ref/netcoreapp2.1/System.Xml.XmlSerializer.xml", + "ref/netcoreapp2.1/System.Xml.dll", + "ref/netcoreapp2.1/System.dll", + "ref/netcoreapp2.1/WindowsBase.dll", + "ref/netcoreapp2.1/mscorlib.dll", + "ref/netcoreapp2.1/netstandard.dll", + "runtime.json" + ] + }, + "Microsoft.NETCore.DotNetAppHost/2.1.0": { + "sha512": "vMn8V3GOp/SPOG2oE8WxswzAWZ/GZmc8EPiB3vc2EZ6us14ehXhsvUFXndYopGNSjCa9OdqC6L6xStF1KyUZnw==", + "type": "package", + "path": "microsoft.netcore.dotnetapphost/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512", + "microsoft.netcore.dotnetapphost.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.DotNetHostPolicy/2.1.0": { + "sha512": "vBUwNihtLUVS2HhO6WocYfAktRmfFihm6JB8/sJ53caVW+AelvbnYpfiGzaZDpkWjN6vA3xzOKPu9Vu8Zz3p8Q==", + "type": "package", + "path": "microsoft.netcore.dotnethostpolicy/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512", + "microsoft.netcore.dotnethostpolicy.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.DotNetHostResolver/2.1.0": { + "sha512": "o0PRql5qOHFEY3d1WvzE+T7cMFKtOsWLMg8L1oTeGNnI4u5AzOj8o6AdZT3y2GxFA1DAx7AQ9qZjpCO2/bgZRw==", + "type": "package", + "path": "microsoft.netcore.dotnethostresolver/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512", + "microsoft.netcore.dotnethostresolver.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Platforms/2.1.0": { + "sha512": "ok+RPAtESz/9MUXeIEz6Lv5XAGQsaNmEYXMsgVALj4D7kqC8gveKWXWXbufLySR2fWrwZf8smyN5RmHu0e4BHA==", + "type": "package", + "path": "microsoft.netcore.platforms/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/2.1.0": { + "sha512": "x188gIZXOwFXkPXyGavEcPGcR6RGvjFOES2QzskN4gERZjWPN34qhRsZVMC0CLJfQLGSButarcgWxPPM4vmg0w==", + "type": "package", + "path": "microsoft.netcore.targets/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.2.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.TestPlatform.ObjectModel/15.9.0": { + "sha512": "O6J4QhackLTvuCuunhxUfXaySRIY6PjLrO6msAdeRjF46et2PYPtRdg9gV9MLRlb/khwBE2ahmOKILP7NWSDfg==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/15.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.4/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard1.4/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard1.4/Microsoft.VisualStudio.TestPlatform.ObjectModel.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.9.0.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/15.9.0": { + "sha512": "ve8yMTxeK5p8iTn7fCXzrTGiAqlx21thussMEflAOmVEe56OPOi2grkxLEguw7tDOXBKZtRPI7CeH+nXOpEb/g==", + "type": "package", + "path": "microsoft.testplatform.testhost/15.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "build/uap10.0/Microsoft.TestPlatform.TestHost.props", + "build/uap10.0/Microsoft.TestPlatform.TestHost.targets", + "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/x64/msdia140.dll", + "build/uap10.0/x86/msdia140.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "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/x64/msdia140.dll", + "lib/netstandard1.5/x86/msdia140.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", + "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/uap10.0/testhost.dll", + "microsoft.testplatform.testhost.15.9.0.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.1": { + "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", + "type": "package", + "path": "microsoft.win32.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.0.1.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "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.0.0": { + "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==", + "type": "package", + "path": "microsoft.win32.registry/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.0.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "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.3": { + "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", + "type": "package", + "path": "netstandard.library/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "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.3.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/9.0.1": { + "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==", + "type": "package", + "path": "newtonsoft.json/9.0.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.0": { + "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==", + "type": "package", + "path": "runtime.native.system/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.0.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "StyleCop.Analyzers/1.1.118": { + "sha512": "Onx6ovGSqXSK07n/0eM3ZusiNdB6cIlJdabQhWGgJp3Vooy9AaLS/tigeybOJAobqbtggTamoWndz72JscZBvw==", + "type": "package", + "path": "stylecop.analyzers/1.1.118", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "THIRD-PARTY-NOTICES.txt", + "analyzers/dotnet/cs/StyleCop.Analyzers.CodeFixes.dll", + "analyzers/dotnet/cs/StyleCop.Analyzers.dll", + "analyzers/dotnet/cs/de-DE/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/en-GB/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/es-MX/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr-FR/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl-PL/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru-RU/StyleCop.Analyzers.resources.dll", + "stylecop.analyzers.1.1.118.nupkg.sha512", + "stylecop.analyzers.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "System.AppContext/4.1.0": { + "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", + "type": "package", + "path": "system.appcontext/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.appcontext.4.1.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Collections/4.0.11": { + "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", + "type": "package", + "path": "system.collections/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.0.11.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.12": { + "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", + "type": "package", + "path": "system.collections.concurrent/4.0.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.concurrent.4.0.12.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.2.0": { + "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==", + "type": "package", + "path": "system.collections.immutable/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.immutable.1.2.0.nupkg.sha512", + "system.collections.immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.1": { + "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==", + "type": "package", + "path": "system.collections.nongeneric/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.1.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.0.1": { + "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==", + "type": "package", + "path": "system.collections.specialized/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.1.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.0.1": { + "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", + "type": "package", + "path": "system.componentmodel/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.0.1.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.11": { + "sha512": "Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==", + "type": "package", + "path": "system.componentmodel.eventbasedasync/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.11.nupkg.sha512", + "system.componentmodel.eventbasedasync.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.1.0": { + "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==", + "type": "package", + "path": "system.componentmodel.primitives/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.1.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.1.0": { + "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.1.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.11": { + "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", + "type": "package", + "path": "system.diagnostics.debug/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.debug.4.0.11.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.1.0": { + "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", + "type": "package", + "path": "system.diagnostics.process/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.process.4.1.0.nupkg.sha512", + "system.diagnostics.process.nuspec" + ] + }, + "System.Diagnostics.TextWriterTraceListener/4.0.0": { + "sha512": "w36Dr8yKy8xP150qPANe7Td+/zOI3G62ImRcHDIEW+oUXUuTKZHd4DHmqRx5+x8RXd85v3tXd1uhNTfsr+yxjA==", + "type": "package", + "path": "system.diagnostics.textwritertracelistener/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.0.nupkg.sha512", + "system.diagnostics.textwritertracelistener.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.1": { + "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", + "type": "package", + "path": "system.diagnostics.tools/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.tools.4.0.1.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0": { + "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==", + "type": "package", + "path": "system.diagnostics.tracesource/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.0.nupkg.sha512", + "system.diagnostics.tracesource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.1.0": { + "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", + "type": "package", + "path": "system.diagnostics.tracing/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.diagnostics.tracing.4.1.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.11": { + "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", + "type": "package", + "path": "system.dynamic.runtime/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.11": { + "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", + "type": "package", + "path": "system.globalization/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.0.11.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.1": { + "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", + "type": "package", + "path": "system.globalization.extensions/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.globalization.extensions.4.0.1.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.1.0": { + "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", + "type": "package", + "path": "system.io/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.1.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem/4.0.1": { + "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", + "type": "package", + "path": "system.io.filesystem/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.0.1.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", + "type": "package", + "path": "system.io.filesystem.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.io.filesystem.primitives.4.0.1.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.1.0": { + "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", + "type": "package", + "path": "system.linq/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.1.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.1.0": { + "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", + "type": "package", + "path": "system.linq.expressions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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": [ + ".nupkg.metadata", + ".signature.p7s", + "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.1.1": { + "sha512": "lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==", + "type": "package", + "path": "system.private.datacontractserialization/4.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.1.1.nupkg.sha512", + "system.private.datacontractserialization.nuspec" + ] + }, + "System.Reflection/4.1.0": { + "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", + "type": "package", + "path": "system.reflection/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.1.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.1": { + "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", + "type": "package", + "path": "system.reflection.emit/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinmac20/_._", + "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.4.0.1.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "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/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "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/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.0.1.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.1": { + "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", + "type": "package", + "path": "system.reflection.extensions/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.extensions.4.0.1.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.3.0": { + "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==", + "type": "package", + "path": "system.reflection.metadata/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.metadata.1.3.0.nupkg.sha512", + "system.reflection.metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.1": { + "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", + "type": "package", + "path": "system.reflection.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.primitives.4.0.1.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.1.0": { + "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", + "type": "package", + "path": "system.reflection.typeextensions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.reflection.typeextensions.4.1.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.1": { + "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", + "type": "package", + "path": "system.resources.resourcemanager/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.resources.resourcemanager.4.0.1.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.1.0": { + "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", + "type": "package", + "path": "system.runtime/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.1.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.1.0": { + "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", + "type": "package", + "path": "system.runtime.extensions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.extensions.4.1.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.1": { + "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", + "type": "package", + "path": "system.runtime.handles/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.handles.4.0.1.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.1.0": { + "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", + "type": "package", + "path": "system.runtime.interopservices/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/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/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/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.4.1.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/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.interopservices.runtimeinformation.4.0.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0": { + "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", + "type": "package", + "path": "system.runtime.loader/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net462/_._", + "lib/netstandard1.5/System.Runtime.Loader.dll", + "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.loader.4.0.0.nupkg.sha512", + "system.runtime.loader.nuspec" + ] + }, + "System.Runtime.Serialization.Json/4.0.2": { + "sha512": "+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==", + "type": "package", + "path": "system.runtime.serialization.json/4.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.2.nupkg.sha512", + "system.runtime.serialization.json.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.1.1.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Text.Encoding/4.0.11": { + "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", + "type": "package", + "path": "system.text.encoding/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.0.11.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.11": { + "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", + "type": "package", + "path": "system.text.encoding.extensions/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.encoding.extensions.4.0.11.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.1.0": { + "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", + "type": "package", + "path": "system.text.regularexpressions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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/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.text.regularexpressions.4.1.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.0.11": { + "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", + "type": "package", + "path": "system.threading/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.0.11.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.0.11": { + "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", + "type": "package", + "path": "system.threading.tasks/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.0.11.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", + "type": "package", + "path": "system.threading.tasks.extensions/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.tasks.extensions.4.0.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Threading.Thread/4.0.0": { + "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==", + "type": "package", + "path": "system.threading.thread/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.thread.4.0.0.nupkg.sha512", + "system.threading.thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10": { + "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", + "type": "package", + "path": "system.threading.threadpool/4.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.threading.threadpool.4.0.10.nupkg.sha512", + "system.threading.threadpool.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.11": { + "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", + "type": "package", + "path": "system.xml.readerwriter/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "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/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.readerwriter.4.0.11.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.11": { + "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", + "type": "package", + "path": "system.xml.xdocument/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.xdocument.4.0.11.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.1": { + "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==", + "type": "package", + "path": "system.xml.xmldocument/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.1.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.11": { + "sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", + "type": "package", + "path": "system.xml.xmlserializer/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.11.nupkg.sha512", + "system.xml.xmlserializer.nuspec" + ] + }, + "System.Xml.XPath/4.0.1": { + "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==", + "type": "package", + "path": "system.xml.xpath/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.0.1.nupkg.sha512", + "system.xml.xpath.nuspec" + ] + }, + "System.Xml.XPath.XmlDocument/4.0.1": { + "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==", + "type": "package", + "path": "system.xml.xpath.xmldocument/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.0": { + "sha512": "NL00nGsDsyWc1CWxz5FXXjLpW9oFG18WJoTPCyhNv4KGP/e5iLJqAqgM1uaJZyQ6WaTtmWIy4yjYP3RdcaT7Vw==", + "type": "package", + "path": "xunit/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "xunit.2.4.0.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.2": { + "sha512": "vItLB0WkaKg0426RgWq+ZdXH6D+YV/uH28C0weWMOBnVx7I+luHuEYss9hoOngpkiN5kUpLvh9VZRx1H2sk59A==", + "type": "package", + "path": "xunit.abstractions/2.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.2.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/0.10.0": { + "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "type": "package", + "path": "xunit.analyzers/0.10.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.0.10.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.4.0": { + "sha512": "Swvkm6iTjZr8TiUj5vMnmfG+2dD4s/BIBgsVOzTxxmoq2ndGsmM2WIL4wuqJ8RhxydWIDOPpIaaytjT2pMTEdg==", + "type": "package", + "path": "xunit.assert/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "lib/netstandard2.0/xunit.assert.dll", + "lib/netstandard2.0/xunit.assert.xml", + "xunit.assert.2.4.0.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.4.0": { + "sha512": "BJ/O/tPEcHUCwQYuwqXoYccTMyw6B5dA6yh7WxWWBhKbjqTsG9RWL0nCQXM5yQYJwUuFzBkiXDPN1BO6UdBB4Q==", + "type": "package", + "path": "xunit.core/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.4.0.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.4.0": { + "sha512": "qr/KrR6uukHXD9e/lLQjyCPfMEDuvvhNFDzsYzCF2kKlYKiqcADfUvA9Q68rBtKFtwHFeghjWEuv15KoGD2SfA==", + "type": "package", + "path": "xunit.extensibility.core/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "lib/netstandard2.0/xunit.core.dll", + "lib/netstandard2.0/xunit.core.xml", + "xunit.extensibility.core.2.4.0.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.4.0": { + "sha512": "252Dzn7i5bMPKtAL15aOP3qJhxKd+57I8ldwIQRJa745JxQuiBu5Da0vtIISVTtc3buRSkBwVnD9iUzsEmCzZA==", + "type": "package", + "path": "xunit.extensibility.execution/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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", + "lib/netstandard2.0/xunit.execution.dotnet.dll", + "lib/netstandard2.0/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.4.0.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.visualstudio/2.4.0": { + "sha512": "3eq5cGXbEJkqW9nwLuXwtxy9B5gMA8i7HW4rN63AhAvy5UvEcQbZnve23wx/oPrkyg/4CbfNhxkBezS0b1oUdQ==", + "type": "package", + "path": "xunit.runner.visualstudio/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/_common/xunit.abstractions.dll", + "build/_common/xunit.runner.reporters.net452.dll", + "build/_common/xunit.runner.utility.net452.dll", + "build/_common/xunit.runner.visualstudio.testadapter.dll", + "build/net20/xunit.runner.visualstudio.props", + "build/netcoreapp1.0/xunit.abstractions.dll", + "build/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll", + "build/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "build/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "build/netcoreapp1.0/xunit.runner.visualstudio.dotnetcore.testadapter.deps.json", + "build/netcoreapp1.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll", + "build/netcoreapp1.0/xunit.runner.visualstudio.props", + "build/uap10.0/xunit.runner.reporters.netstandard11.dll", + "build/uap10.0/xunit.runner.utility.uwp10.dll", + "build/uap10.0/xunit.runner.utility.uwp10.pri", + "build/uap10.0/xunit.runner.visualstudio.props", + "build/uap10.0/xunit.runner.visualstudio.targets", + "build/uap10.0/xunit.runner.visualstudio.uwp.testadapter.dll", + "build/uap10.0/xunit.runner.visualstudio.uwp.testadapter.pri", + "xunit.runner.visualstudio.2.4.0.nupkg.sha512", + "xunit.runner.visualstudio.nuspec" + ] + }, + "CourseApp/1.0.0": { + "type": "project", + "path": "../CourseApp/CourseApp.csproj", + "msbuildProject": "../CourseApp/CourseApp.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v2.1": [ + "CourseApp >= 1.0.0", + "Microsoft.NET.Test.Sdk >= 15.9.0", + "Microsoft.NETCore.App >= 2.1.0", + "StyleCop.Analyzers >= 1.1.118", + "xunit >= 2.4.0", + "xunit.runner.visualstudio >= 2.4.0" + ] + }, + "packageFolders": { + "C:\\Users\\USER\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\CourseApp.Tests.csproj", + "projectName": "CourseApp.Tests", + "projectPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\CourseApp.Tests.csproj", + "packagesPath": "C:\\Users\\USER\\.nuget\\packages\\", + "outputPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\USER\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp2.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", + "projectReferences": { + "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj": { + "projectPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj" + } + } + } + }, + "warningProperties": { + "allWarningsAsErrors": true, + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[15.9.0, )" + }, + "Microsoft.NETCore.App": { + "suppressParent": "All", + "target": "Package", + "version": "[2.1.0, )", + "autoReferenced": true + }, + "StyleCop.Analyzers": { + "suppressParent": "All", + "target": "Package", + "version": "[1.1.118, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.0, )" + }, + "xunit.runner.visualstudio": { + "target": "Package", + "version": "[2.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.nuget.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.nuget.cache new file mode 100644 index 00000000..01e3ee5f --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.nuget.cache @@ -0,0 +1,93 @@ +{ + "version": 2, + "dgSpecHash": "EM2OHb6aW+SR6103a4/n/bGNACQZYCXhFmt0yW1p0CNMClUc0cF2UWN8NaRC2qAzefvCRj/yUUn3jep3AkBqCg==", + "success": true, + "projectFilePath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\CourseApp.Tests.csproj", + "expectedPackageFiles": [ + "C:\\Users\\USER\\.nuget\\packages\\microsoft.codecoverage\\15.9.0\\microsoft.codecoverage.15.9.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.csharp\\4.0.1\\microsoft.csharp.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.dotnet.platformabstractions\\1.0.3\\microsoft.dotnet.platformabstractions.1.0.3.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.extensions.dependencymodel\\1.0.3\\microsoft.extensions.dependencymodel.1.0.3.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.net.test.sdk\\15.9.0\\microsoft.net.test.sdk.15.9.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.app\\2.1.0\\microsoft.netcore.app.2.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.dotnetapphost\\2.1.0\\microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.dotnethostpolicy\\2.1.0\\microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.dotnethostresolver\\2.1.0\\microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.0\\microsoft.netcore.platforms.2.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.targets\\2.1.0\\microsoft.netcore.targets.2.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.testplatform.objectmodel\\15.9.0\\microsoft.testplatform.objectmodel.15.9.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.testplatform.testhost\\15.9.0\\microsoft.testplatform.testhost.15.9.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.win32.primitives\\4.0.1\\microsoft.win32.primitives.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.win32.registry\\4.0.0\\microsoft.win32.registry.4.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\newtonsoft.json\\9.0.1\\newtonsoft.json.9.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\runtime.native.system\\4.0.0\\runtime.native.system.4.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\stylecop.analyzers\\1.1.118\\stylecop.analyzers.1.1.118.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.appcontext\\4.1.0\\system.appcontext.4.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.collections\\4.0.11\\system.collections.4.0.11.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.collections.concurrent\\4.0.12\\system.collections.concurrent.4.0.12.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.collections.immutable\\1.2.0\\system.collections.immutable.1.2.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.collections.nongeneric\\4.0.1\\system.collections.nongeneric.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.collections.specialized\\4.0.1\\system.collections.specialized.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.componentmodel\\4.0.1\\system.componentmodel.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.componentmodel.eventbasedasync\\4.0.11\\system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.componentmodel.primitives\\4.1.0\\system.componentmodel.primitives.4.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.componentmodel.typeconverter\\4.1.0\\system.componentmodel.typeconverter.4.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.diagnostics.debug\\4.0.11\\system.diagnostics.debug.4.0.11.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.diagnostics.process\\4.1.0\\system.diagnostics.process.4.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.diagnostics.textwritertracelistener\\4.0.0\\system.diagnostics.textwritertracelistener.4.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.diagnostics.tools\\4.0.1\\system.diagnostics.tools.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.diagnostics.tracesource\\4.0.0\\system.diagnostics.tracesource.4.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.diagnostics.tracing\\4.1.0\\system.diagnostics.tracing.4.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.dynamic.runtime\\4.0.11\\system.dynamic.runtime.4.0.11.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.globalization\\4.0.11\\system.globalization.4.0.11.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.globalization.extensions\\4.0.1\\system.globalization.extensions.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.io\\4.1.0\\system.io.4.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.io.filesystem\\4.0.1\\system.io.filesystem.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.io.filesystem.primitives\\4.0.1\\system.io.filesystem.primitives.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.linq\\4.1.0\\system.linq.4.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.linq.expressions\\4.1.0\\system.linq.expressions.4.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.objectmodel\\4.0.12\\system.objectmodel.4.0.12.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.private.datacontractserialization\\4.1.1\\system.private.datacontractserialization.4.1.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.reflection\\4.1.0\\system.reflection.4.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.reflection.emit\\4.0.1\\system.reflection.emit.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.0.1\\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.reflection.emit.lightweight\\4.0.1\\system.reflection.emit.lightweight.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.reflection.extensions\\4.0.1\\system.reflection.extensions.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.reflection.metadata\\1.3.0\\system.reflection.metadata.1.3.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.reflection.primitives\\4.0.1\\system.reflection.primitives.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.reflection.typeextensions\\4.1.0\\system.reflection.typeextensions.4.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.resources.resourcemanager\\4.0.1\\system.resources.resourcemanager.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.runtime\\4.1.0\\system.runtime.4.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.runtime.extensions\\4.1.0\\system.runtime.extensions.4.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.runtime.handles\\4.0.1\\system.runtime.handles.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.runtime.interopservices\\4.1.0\\system.runtime.interopservices.4.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.0.0\\system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.runtime.loader\\4.0.0\\system.runtime.loader.4.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.runtime.serialization.json\\4.0.2\\system.runtime.serialization.json.4.0.2.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.runtime.serialization.primitives\\4.1.1\\system.runtime.serialization.primitives.4.1.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.text.encoding\\4.0.11\\system.text.encoding.4.0.11.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.text.encoding.extensions\\4.0.11\\system.text.encoding.extensions.4.0.11.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.text.regularexpressions\\4.1.0\\system.text.regularexpressions.4.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.threading\\4.0.11\\system.threading.4.0.11.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.threading.tasks\\4.0.11\\system.threading.tasks.4.0.11.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.threading.tasks.extensions\\4.0.0\\system.threading.tasks.extensions.4.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.threading.thread\\4.0.0\\system.threading.thread.4.0.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.threading.threadpool\\4.0.10\\system.threading.threadpool.4.0.10.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.xml.readerwriter\\4.0.11\\system.xml.readerwriter.4.0.11.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.xml.xdocument\\4.0.11\\system.xml.xdocument.4.0.11.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.xml.xmldocument\\4.0.1\\system.xml.xmldocument.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.xml.xmlserializer\\4.0.11\\system.xml.xmlserializer.4.0.11.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.xml.xpath\\4.0.1\\system.xml.xpath.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\system.xml.xpath.xmldocument\\4.0.1\\system.xml.xpath.xmldocument.4.0.1.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\xunit\\2.4.0\\xunit.2.4.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\xunit.abstractions\\2.0.2\\xunit.abstractions.2.0.2.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\xunit.analyzers\\0.10.0\\xunit.analyzers.0.10.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\xunit.assert\\2.4.0\\xunit.assert.2.4.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\xunit.core\\2.4.0\\xunit.core.2.4.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\xunit.extensibility.core\\2.4.0\\xunit.extensibility.core.2.4.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\xunit.extensibility.execution\\2.4.0\\xunit.extensibility.execution.2.4.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\xunit.runner.visualstudio\\2.4.0\\xunit.runner.visualstudio.2.4.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Animals.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Animals.cs new file mode 100644 index 00000000..707ea6b9 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Animals.cs @@ -0,0 +1,117 @@ +namespace CourseApp +{ + /* using System; */ + /* using System.Collections.Generic;*/ + + public abstract class Animals + { + private int lard; + private int weight; + private int age; + + public Animals() + : this("неизвестного животного", 10, 12, 13) + { + } + + public Animals(string name, int weight) + : this(name, weight, 0, 0) + { + } + + public Animals(string name, int weight, int lard) + : this(name, weight, 0, lard) + { + } + + public Animals(string name, int weight, int age, int lard) + { + Name = name; + Lard = lard; + Age = age; + Weight = weight; + } + + public string Name + { + get; + set; + } + + public int Weight + { + get + { + return weight; + } + + set + { + if (value < 0) + { + weight = 0; + } + else + { + weight = value; + } + } + } + + public int Age + { + get + { + return age; + } + + set + { + if (value < 0) + { + age = 0; + } + else + { + age = value; + } + } + } + + public int Lard + { + get + { + return lard; + } + + set + { + if (value < 0) + { + lard = 0; + } + else + { + lard = value; + } + } + } + + public override string ToString() + { + if (lard == 0) + { + return $"{Name} Без сала\n"; + } + else + { + return $"Из {Name} можно получить {Lard} сала\n"; + } + } + + public abstract string Died(); + + public abstract string MakePhrase(string[] phraseArray); + } +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Bull.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Bull.cs new file mode 100644 index 00000000..b9db7158 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Bull.cs @@ -0,0 +1,44 @@ +namespace CourseApp +{ + using System; + /* using System.Collections.Generic;*/ + + public class Bull : Animals + { + private Random random = new Random(); + + public Bull() + : base() + { + } + + public Bull(string name, int weight) + : base(name, weight) + { + } + + public Bull(string name, int weight, int lard) + : base(name, weight, lard) + { + } + + public Bull(string name, int weight, int age, int lard) + : base(name, weight, age, lard) + { + } + + public override string Died() + { + int lard = Lard; + Lard = 0; + return $"{Name} убит\nПолучено {lard} сала\n"; + } + + public override string MakePhrase(string[] phraseArray) + { + int index = random.Next(0, 3); + string phrase = phraseArray[index]; + return $"{phrase}"; + } + } +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Calculator.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Calculator.cs new file mode 100644 index 00000000..aec26da0 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Calculator.cs @@ -0,0 +1,25 @@ +namespace CourseApp +{ + public class Calculator + { + public int GetSum(int a, int b) + { + return a + b; + } + + public double GeSum(double a, double b) + { + return a + b; + } + + public int GetProduct(int a, int b) + { + return a * b; + } + + public double GetQuotient(double a, double b) + { + return a / b; + } + } +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.csproj b/Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.csproj new file mode 100644 index 00000000..260260d3 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.csproj @@ -0,0 +1,22 @@ + + + + Exe + netcoreapp2.1 + True + + + + + + + + ../_stylecop/stylecop.ruleset + true + + + + + + + diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.sln b/Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.sln new file mode 100644 index 00000000..9eae834c --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27130.2027 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CourseApp", "CourseApp.csproj", "{9B953FDD-1645-4B1A-B148-5849E7C2D3A7}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CourseApp.Tests", "..\CourseApp.Tests\CourseApp.Tests.csproj", "{C348D2ED-C90F-4CE7-A1D8-9E57CBB33BDE}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9B953FDD-1645-4B1A-B148-5849E7C2D3A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9B953FDD-1645-4B1A-B148-5849E7C2D3A7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9B953FDD-1645-4B1A-B148-5849E7C2D3A7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9B953FDD-1645-4B1A-B148-5849E7C2D3A7}.Release|Any CPU.Build.0 = Release|Any CPU + {C348D2ED-C90F-4CE7-A1D8-9E57CBB33BDE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C348D2ED-C90F-4CE7-A1D8-9E57CBB33BDE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C348D2ED-C90F-4CE7-A1D8-9E57CBB33BDE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C348D2ED-C90F-4CE7-A1D8-9E57CBB33BDE}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {064E603C-674E-4DB9-A061-4B08C0ACD98C} + EndGlobalSection +EndGlobal diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Function.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Function.cs new file mode 100644 index 00000000..1435b1d8 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Function.cs @@ -0,0 +1,42 @@ +namespace CourseApp +{ + using System; + + public class Function + { + public double MathFunction(double x = 0) + { + double arcSin = Math.Asin(x); + double arcCos = Math.Acos(x); + return Math.Pow((arcSin * arcSin * arcSin * arcSin) + (arcCos * arcCos * arcCos * arcCos * arcCos * arcCos), 1 / 7); + } + + public double[] TaskA(double xn, double xk, double dx) + { + int g = (int)(((xk - xn) / dx) + 1); + double[] results = new double[g]; + int i = 0; + while (xn <= xk) + { + results[i] = MathFunction(xn); + i++; + xn = xn + dx; + } + + return results; + } + + public double[] TaskB(double[] numbers) + { + double[] results = new double[numbers.Length]; + int g = 0; + foreach (double i in numbers) + { + results[g] = MathFunction(i); + g++; + } + + return results; + } + } +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/MyProg.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/MyProg.cs new file mode 100644 index 00000000..0ba1b64d --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/MyProg.cs @@ -0,0 +1,10 @@ +namespace CourseApp +{ + public class MyProg + { + public int Sum(int x, int y) + { + return x + y; + } + } +} diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Pig.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Pig.cs new file mode 100644 index 00000000..38111fe1 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Pig.cs @@ -0,0 +1,49 @@ +namespace CourseApp +{ + using System; + /*using System.Collections.Generic;*/ + + public class Pig : Animals + { + private Random random = new Random(); + + public Pig() + : base() + { + } + + public Pig(string name, int weight) + : base(name, weight) + { + } + + public Pig(string name, int weight, int lard) + : base(name, weight, lard) + { + } + + public Pig(string name, int weight, int age, int lard) + : base(name, weight, age, lard) + { + } + + public void AddLard(int lard) + { + Lard += lard; + } + + public override string Died() + { + int lard = Lard; + Lard = 0; + return $"{Name} зарезана\nПолучено {lard} сала\n"; + } + + public override string MakePhrase(string[] phraseArray) + { + int index = random.Next(0, 3); + string phrase = phraseArray[index]; + return $"{phrase}"; + } + } +} diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/PigAndSalo.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/PigAndSalo.cs new file mode 100644 index 00000000..1acb582b --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/PigAndSalo.cs @@ -0,0 +1,76 @@ +namespace CourseApp +{ + public class PigAndSalo + { + private string pig; + private string salo; + private int age; + private int dateOfDeath; + + public PigAndSalo(string pig, string salo, string color, int age, int dateOfDeath) + { + Pig = pig; + Salo = salo; + Age = age; + DateOfDeath = dateOfDeath; + } + + public string Pig + { + get + { + return pig; + } + + set + { + pig = value; + } + } + + public string Salo + { + get + { + return salo; + } + + set + { + salo = value; + } + } + + public int Age + { + get + { + return age; + } + + set + { + if (age > 20) + { + age = value; + } + } + } + + public int DateOfDeath + { + get + { + return age; + } + + set + { + if (dateOfDeath > 30) + { + dateOfDeath = value; + } + } + } + } +} diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Program.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Program.cs new file mode 100644 index 00000000..e48dac10 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Program.cs @@ -0,0 +1,27 @@ +namespace CourseApp +{ + using System; + /* using System.Collections.Generic;*/ + + public class Program + { + public static void Main(string[] args) + { + string[] phraseArray = { ":(", "Жаль :(", "Понмянем :(" }; + Pig pigOne = new Pig(); + Pig pigTwo = new Pig("Бычок", 9, 99); + Bull boarOne = new Bull("Бычок 1", 1, 5, 7); + Bull boarTwo = new Bull("Бычок 2", 3, 2, 8); + Animals[] animals = new Animals[] { pigOne, pigTwo, boarOne, boarTwo }; + foreach (var animal in animals) + { + Console.WriteLine(animal); + } + + Console.Write(pigTwo.Died()); + Console.WriteLine(pigTwo.MakePhrase(phraseArray)); + Console.Write(boarTwo.Died()); + Console.WriteLine(boarTwo.MakePhrase(phraseArray)); + } + } +} diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.deps.json b/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.deps.json new file mode 100644 index 00000000..7a6bdc0f --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.deps.json @@ -0,0 +1,34 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v2.1", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v2.1": { + "CourseApp/1.0.0": { + "dependencies": { + "StyleCop.Analyzers": "1.1.118" + }, + "runtime": { + "CourseApp.dll": {} + } + }, + "StyleCop.Analyzers/1.1.118": {} + } + }, + "libraries": { + "CourseApp/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "StyleCop.Analyzers/1.1.118": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Onx6ovGSqXSK07n/0eM3ZusiNdB6cIlJdabQhWGgJp3Vooy9AaLS/tigeybOJAobqbtggTamoWndz72JscZBvw==", + "path": "stylecop.analyzers/1.1.118", + "hashPath": "stylecop.analyzers.1.1.118.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.dll b/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.dll new file mode 100644 index 0000000000000000000000000000000000000000..56aec92d3c4a6916d48cf0d5576cb4cd0d62b7be GIT binary patch literal 8704 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 SJzcY}{Vuxk|2F@25%?b)<^K%; literal 0 HcmV?d00001 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.pdb b/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.pdb new file mode 100644 index 0000000000000000000000000000000000000000..87807696989e5dc6102ecc99ccccda7ced8165b3 GIT binary patch literal 11988 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 literal 0 HcmV?d00001 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.dev.json b/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.dev.json new file mode 100644 index 00000000..5d43ddba --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.dev.json @@ -0,0 +1,8 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\USER\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\USER\\.nuget\\packages" + ] + } +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.json b/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.json new file mode 100644 index 00000000..976f2e9a --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp2.1", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "2.1.0" + } + } +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.dgspec.json b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.dgspec.json new file mode 100644 index 00000000..2dbff5ed --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.dgspec.json @@ -0,0 +1,71 @@ +{ + "format": 1, + "restore": { + "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj": {} + }, + "projects": { + "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj", + "projectName": "CourseApp", + "projectPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj", + "packagesPath": "C:\\Users\\USER\\.nuget\\packages\\", + "outputPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\USER\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp2.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", + "projectReferences": {} + } + }, + "warningProperties": { + "allWarningsAsErrors": true, + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", + "dependencies": { + "Microsoft.NETCore.App": { + "suppressParent": "All", + "target": "Package", + "version": "[2.1.0, )", + "autoReferenced": true + }, + "StyleCop.Analyzers": { + "suppressParent": "All", + "target": "Package", + "version": "[1.1.118, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.props b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.props new file mode 100644 index 00000000..9a162ebe --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.props @@ -0,0 +1,24 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\USER\.nuget\packages\ + PackageReference + 5.11.0 + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + C:\Users\USER\.nuget\packages\stylecop.analyzers\1.1.118 + + \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.targets b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.targets new file mode 100644 index 00000000..2962c64e --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfo.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfo.cs new file mode 100644 index 00000000..7202d92b --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("CourseApp")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("CourseApp")] +[assembly: System.Reflection.AssemblyTitleAttribute("CourseApp")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Создано классом WriteCodeFragment MSBuild. + diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache new file mode 100644 index 00000000..a50a62e1 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +d7237ae28cef3eedd30d3c3e36a864ff09c9c363 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 00000000..e6e159ca --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = CourseApp +build_property.ProjectDir = D:\Study\2-1\Programming\Tprogramming_2021-Nikita_Rybkin\CourseApp\ diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.assets.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..b32996a348417ac2b03164c51ea1dccd5dc6da44 GIT binary patch literal 26599 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 SJzcY}{Vuxk|2F@25%?b)<^K%; literal 0 HcmV?d00001 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.genruntimeconfig.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.genruntimeconfig.cache new file mode 100644 index 00000000..af456fbc --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.genruntimeconfig.cache @@ -0,0 +1 @@ +4fc5006bf826c912a848f12b554066db4237caa5 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.pdb b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.pdb new file mode 100644 index 0000000000000000000000000000000000000000..87807696989e5dc6102ecc99ccccda7ced8165b3 GIT binary patch literal 11988 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 literal 0 HcmV?d00001 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfo.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfo.cs new file mode 100644 index 00000000..67b3f727 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("CourseApp")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("CourseApp")] +[assembly: System.Reflection.AssemblyTitleAttribute("CourseApp")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Создано классом WriteCodeFragment MSBuild. + diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache new file mode 100644 index 00000000..79b7a7ed --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0cb1106348572c39de2e248b3563e3e229348076 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 00000000..e6e159ca --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = CourseApp +build_property.ProjectDir = D:\Study\2-1\Programming\Tprogramming_2021-Nikita_Rybkin\CourseApp\ diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.assets.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..385b99ffc4b67416de71ac652119030374e7ef3b GIT binary patch literal 26599 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 2.1.0", + "StyleCop.Analyzers >= 1.1.118" + ] + }, + "packageFolders": { + "C:\\Users\\USER\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj", + "projectName": "CourseApp", + "projectPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj", + "packagesPath": "C:\\Users\\USER\\.nuget\\packages\\", + "outputPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\USER\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp2.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", + "projectReferences": {} + } + }, + "warningProperties": { + "allWarningsAsErrors": true, + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", + "dependencies": { + "Microsoft.NETCore.App": { + "suppressParent": "All", + "target": "Package", + "version": "[2.1.0, )", + "autoReferenced": true + }, + "StyleCop.Analyzers": { + "suppressParent": "All", + "target": "Package", + "version": "[1.1.118, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/project.nuget.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/project.nuget.cache new file mode 100644 index 00000000..b943ceff --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/project.nuget.cache @@ -0,0 +1,17 @@ +{ + "version": 2, + "dgSpecHash": "oPhBBo7JYtAvxbxPoTqmsI8+35a9SL6o+SCT3nzhFp2O6wiZzqeM12FfSchVZbmt8+yZAxOrrIDwSNL/xZJr0Q==", + "success": true, + "projectFilePath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj", + "expectedPackageFiles": [ + "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.app\\2.1.0\\microsoft.netcore.app.2.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.dotnetapphost\\2.1.0\\microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.dotnethostpolicy\\2.1.0\\microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.dotnethostresolver\\2.1.0\\microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.0\\microsoft.netcore.platforms.2.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.targets\\2.1.0\\microsoft.netcore.targets.2.1.0.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512", + "C:\\Users\\USER\\.nuget\\packages\\stylecop.analyzers\\1.1.118\\stylecop.analyzers.1.1.118.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/Dockerfile b/Tprogramming_2021-Nikita_Rybkin/Dockerfile new file mode 100644 index 00000000..5794e3fc --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/Dockerfile @@ -0,0 +1,17 @@ +FROM mcr.microsoft.com/dotnet/core/sdk:2.1 AS build-env +WORKDIR /app + +# Copy csproj and restore as distinct layers +COPY ./CourseApp/*.csproj ./ +RUN dotnet restore + +# Copy everything else and build +COPY ./CourseApp/* ./ +COPY ./_stylecop/ /_stylecop/ +RUN dotnet publish -c Release -o out + +# Build runtime image +FROM mcr.microsoft.com/dotnet/core/aspnet:2.1 +WORKDIR /app +COPY --from=build-env /app/out . +ENTRYPOINT ["dotnet", "CourseApp.dll"] \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/README.md b/Tprogramming_2021-Nikita_Rybkin/README.md new file mode 100644 index 00000000..12b7180d --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/README.md @@ -0,0 +1,3 @@ +# Tprogramming 2021 + +Master branch :) \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.json b/Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.json new file mode 100644 index 00000000..4a96e8f0 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.json @@ -0,0 +1,12 @@ +{ + "$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json", + "settings": { + "documentationRules": { + "documentExposedElements": false, + "documentInterfaces": false, + "companyName": "Test Company", + "copyrightText": "This source code is Copyright © {companyName} and MAY NOT be copied, reproduced,\npublished, distributed or transmitted to or stored in any manner without prior\nwritten consent from {companyName} (www.yourcompany.com).", + "xmlHeader":false + } + } +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.ruleset b/Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.ruleset new file mode 100644 index 00000000..f109ca92 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.ruleset @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/courseworkspace.code-workspace b/Tprogramming_2021-Nikita_Rybkin/courseworkspace.code-workspace new file mode 100644 index 00000000..a24280d9 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/courseworkspace.code-workspace @@ -0,0 +1,15 @@ +{ + "folders": [ + { + "path": "CourseApp" + }, + { + "path": "CourseApp.Tests" + }, + { + "name": "Configs (Root)", + "path": "." + }, + ], + "settings": {} +} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/docker-compose.yml b/Tprogramming_2021-Nikita_Rybkin/docker-compose.yml new file mode 100644 index 00000000..40911e73 --- /dev/null +++ b/Tprogramming_2021-Nikita_Rybkin/docker-compose.yml @@ -0,0 +1,7 @@ +version: '3' +services: + app: + build: + context: ./ + dockerfile: ./Dockerfile + image: jskonst/courseapp \ No newline at end of file From d0373ba35a3c11b392ddcf5cdfc1e2376ccf4810 Mon Sep 17 00:00:00 2001 From: Nikrybkin <71150246+Nikrybkin@users.noreply.github.com> Date: Tue, 7 Dec 2021 21:52:23 +0300 Subject: [PATCH 4/8] Delete Tprogramming_2021-Nikita_Rybkin directory --- .../CourseApp.Tests/AnimalsTest.cs | 54 - .../CourseApp.Tests/CourseApp.Tests.csproj | 29 - .../CourseApp.Tests/DemoTest.cs | 62 - .../CourseApp.Tests/MyProgTests.cs | 20 - .../CourseApp.Tests.csproj.nuget.dgspec.json | 150 - .../obj/CourseApp.Tests.csproj.nuget.g.props | 30 - .../CourseApp.Tests.csproj.nuget.g.targets | 13 - .../CourseApp.Tests.AssemblyInfo.cs | 23 - .../CourseApp.Tests.AssemblyInfoInputs.cache | 1 - ....GeneratedMSBuildEditorConfig.editorconfig | 3 - .../netcoreapp2.1/CourseApp.Tests.Program.cs | Bin 436 -> 0 bytes .../CourseApp.Tests.assets.cache | Bin 82235 -> 0 bytes ...seApp.Tests.csproj.AssemblyReference.cache | Bin 11 -> 0 bytes .../CourseApp.Tests.AssemblyInfo.cs | 23 - .../CourseApp.Tests.AssemblyInfoInputs.cache | 1 - ....GeneratedMSBuildEditorConfig.editorconfig | 3 - .../CourseApp.Tests/obj/project.assets.json | 6029 ----------------- .../CourseApp.Tests/obj/project.nuget.cache | 93 - .../CourseApp/Animals.cs | 117 - .../CourseApp/Bull.cs | 44 - .../CourseApp/Calculator.cs | 25 - .../CourseApp/CourseApp.csproj | 22 - .../CourseApp/CourseApp.sln | 31 - .../CourseApp/Function.cs | 42 - .../CourseApp/MyProg.cs | 10 - .../CourseApp/Pig.cs | 49 - .../CourseApp/PigAndSalo.cs | 76 - .../CourseApp/Program.cs | 27 - .../Debug/netcoreapp2.1/CourseApp.deps.json | 34 - .../bin/Debug/netcoreapp2.1/CourseApp.dll | Bin 8704 -> 0 bytes .../bin/Debug/netcoreapp2.1/CourseApp.pdb | Bin 11988 -> 0 bytes .../CourseApp.runtimeconfig.dev.json | 8 - .../CourseApp.runtimeconfig.json | 9 - .../obj/CourseApp.csproj.nuget.dgspec.json | 71 - .../obj/CourseApp.csproj.nuget.g.props | 24 - .../obj/CourseApp.csproj.nuget.g.targets | 10 - .../netcoreapp2.1/CourseApp.AssemblyInfo.cs | 23 - .../CourseApp.AssemblyInfoInputs.cache | 1 - ....GeneratedMSBuildEditorConfig.editorconfig | 3 - .../netcoreapp2.1/CourseApp.assets.cache | Bin 26599 -> 0 bytes .../CourseApp.csproj.AssemblyReference.cache | Bin 11 -> 0 bytes .../CourseApp.csproj.CoreCompileInputs.cache | 1 - .../CourseApp.csproj.FileListAbsolute.txt | 13 - .../obj/Debug/netcoreapp2.1/CourseApp.dll | Bin 8704 -> 0 bytes .../CourseApp.genruntimeconfig.cache | 1 - .../obj/Debug/netcoreapp2.1/CourseApp.pdb | Bin 11988 -> 0 bytes .../netcoreapp2.1/CourseApp.AssemblyInfo.cs | 23 - .../CourseApp.AssemblyInfoInputs.cache | 1 - ....GeneratedMSBuildEditorConfig.editorconfig | 3 - .../netcoreapp2.1/CourseApp.assets.cache | Bin 26599 -> 0 bytes .../CourseApp/obj/project.assets.json | 786 --- .../CourseApp/obj/project.nuget.cache | 17 - Tprogramming_2021-Nikita_Rybkin/Dockerfile | 17 - Tprogramming_2021-Nikita_Rybkin/README.md | 3 - .../_stylecop/stylecop.json | 12 - .../_stylecop/stylecop.ruleset | 13 - .../courseworkspace.code-workspace | 15 - .../docker-compose.yml | 7 - 58 files changed, 8072 deletions(-) delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/AnimalsTest.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/CourseApp.Tests.csproj delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/DemoTest.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/MyProgTests.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.dgspec.json delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.props delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.targets delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.Program.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.assets.cache delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.csproj.AssemblyReference.cache delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.assets.json delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.nuget.cache delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/Animals.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/Bull.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/Calculator.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.csproj delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.sln delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/Function.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/MyProg.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/Pig.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/PigAndSalo.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/Program.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.deps.json delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.dll delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.pdb delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.dev.json delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.json delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.dgspec.json delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.props delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.targets delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfo.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.assets.cache delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.csproj.AssemblyReference.cache delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.csproj.CoreCompileInputs.cache delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.csproj.FileListAbsolute.txt delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.dll delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.genruntimeconfig.cache delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.pdb delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfo.cs delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.assets.cache delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/project.assets.json delete mode 100644 Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/project.nuget.cache delete mode 100644 Tprogramming_2021-Nikita_Rybkin/Dockerfile delete mode 100644 Tprogramming_2021-Nikita_Rybkin/README.md delete mode 100644 Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.json delete mode 100644 Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.ruleset delete mode 100644 Tprogramming_2021-Nikita_Rybkin/courseworkspace.code-workspace delete mode 100644 Tprogramming_2021-Nikita_Rybkin/docker-compose.yml diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/AnimalsTest.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/AnimalsTest.cs deleted file mode 100644 index 0790c476..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/AnimalsTest.cs +++ /dev/null @@ -1,54 +0,0 @@ -namespace CourseApp.Tests -{ - using Xunit; - - public class AnimalsTest - { - [Theory] - [InlineData("Animals", "Animals")] - [InlineData("Бычок", "Бычок")] - public void TestName(string a, string exp) - { - Pig actualResult = new Pig(a, 1); - Assert.Equal(exp, actualResult.Name); - } - - [Theory] - [InlineData(88, 88)] - [InlineData(-20, 0)] - public void TestWeight(int a, int exp) - { - Pig actual = new Pig(" ", a); - Assert.Equal(exp, actual.Weight); - } - - [Theory] - [InlineData(0, 0)] - [InlineData(-1, 0)] - [InlineData(88, 88)] - public void TestFat(int a, int expected) - { - Pig actual = new Pig(" ", 0, a); - Assert.Equal(expected, actual.Lard); - } - - [Theory] - [InlineData(0, 0)] - [InlineData(-1, 0)] - [InlineData(8, 8)] - public void TestAge(int a, int expected) - { - Pig actual = new Pig(" ", 0, a, 88); - Assert.Equal(expected, actual.Age); - } - - [Theory] - [InlineData("Бычок", 5, "Из Бычок можно получить 5 сала\n")] - [InlineData("Бычок", 0, "Бычок Без сала\n")] - public void TestToString(string n, int a, string expected) - { - Bull actual = new Bull(n, 8, a); - Assert.Equal(expected, actual.ToString()); - } - } -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/CourseApp.Tests.csproj b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/CourseApp.Tests.csproj deleted file mode 100644 index 8dc39cc2..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/CourseApp.Tests.csproj +++ /dev/null @@ -1,29 +0,0 @@ - - - - netcoreapp2.1 - True - false - - - - - - - - - - - - - - - ../_stylecop/stylecop.ruleset - true - - - - - - - diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/DemoTest.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/DemoTest.cs deleted file mode 100644 index 99cd7448..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/DemoTest.cs +++ /dev/null @@ -1,62 +0,0 @@ -namespace CourseApp.Tests -{ - using Xunit; - - public class DemoTest - { - [Fact] - public void Test() - { - Assert.True(true); - } - - [Fact] - public void TestIntSum() - { - int firstNumber = 2; - int secondNumber = 3; - int expected = 5; - var calc = new Calculator(); - var actual = calc.GetSum(firstNumber, secondNumber); - - Assert.Equal(expected, actual); - } - - [Fact] - public void TestIntProduct() - { - int firstNumber = 2; - int secondNumber = 3; - int expected = 6; - var calc = new Calculator(); - var actual = calc.GetProduct(firstNumber, secondNumber); - - Assert.Equal(expected, actual); - } - - [Fact] - public void TestDoubleQuotient() - { - double firstNumber = 5; - double secondNumber = 2; - double expected = 2.5; - var calc = new Calculator(); - var actual = calc.GetQuotient(firstNumber, secondNumber); - - Assert.Equal(expected, actual); - } - - [Fact] - public void TestDoubleQuotientNull() - { - var calc = new Calculator(); - double firstNumber = 5; - double secondNumber = 0; - double expected = double.PositiveInfinity; - - var actual = calc.GetQuotient(firstNumber, secondNumber); - - Assert.Equal(expected, actual); - } - } -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/MyProgTests.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/MyProgTests.cs deleted file mode 100644 index 0eaef01e..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/MyProgTests.cs +++ /dev/null @@ -1,20 +0,0 @@ -namespace CourseApp.Tests -{ - using Xunit; - - public class MyProgTests - { - [Fact] - public void Sum1_And2_Returned3() - { - int x = 1; - int y = 2; - int expected = 3; - - MyProg c = new MyProg(); - int actual = c.Sum(x, y); - - Assert.Equal(expected, actual); - } - } -} diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.dgspec.json b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.dgspec.json deleted file mode 100644 index 812d374e..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.dgspec.json +++ /dev/null @@ -1,150 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\CourseApp.Tests.csproj": {} - }, - "projects": { - "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\CourseApp.Tests.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\CourseApp.Tests.csproj", - "projectName": "CourseApp.Tests", - "projectPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\CourseApp.Tests.csproj", - "packagesPath": "C:\\Users\\USER\\.nuget\\packages\\", - "outputPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\USER\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp2.1" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp2.1": { - "targetAlias": "netcoreapp2.1", - "projectReferences": { - "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj": { - "projectPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp2.1": { - "targetAlias": "netcoreapp2.1", - "dependencies": { - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[15.9.0, )" - }, - "Microsoft.NETCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.1.0, )", - "autoReferenced": true - }, - "StyleCop.Analyzers": { - "suppressParent": "All", - "target": "Package", - "version": "[1.1.118, )" - }, - "xunit": { - "target": "Package", - "version": "[2.4.0, )" - }, - "xunit.runner.visualstudio": { - "target": "Package", - "version": "[2.4.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" - } - } - }, - "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj", - "projectName": "CourseApp", - "projectPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj", - "packagesPath": "C:\\Users\\USER\\.nuget\\packages\\", - "outputPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\USER\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp2.1" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp2.1": { - "targetAlias": "netcoreapp2.1", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp2.1": { - "targetAlias": "netcoreapp2.1", - "dependencies": { - "Microsoft.NETCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.1.0, )", - "autoReferenced": true - }, - "StyleCop.Analyzers": { - "suppressParent": "All", - "target": "Package", - "version": "[1.1.118, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.props b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.props deleted file mode 100644 index 83e60fc6..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.props +++ /dev/null @@ -1,30 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\USER\.nuget\packages\ - PackageReference - 5.11.0 - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - - - - - C:\Users\USER\.nuget\packages\newtonsoft.json\9.0.1 - C:\Users\USER\.nuget\packages\xunit.analyzers\0.10.0 - C:\Users\USER\.nuget\packages\stylecop.analyzers\1.1.118 - - \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.targets b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.targets deleted file mode 100644 index 7f76d851..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.targets +++ /dev/null @@ -1,13 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - - - - \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs deleted file mode 100644 index e2edc7cd..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Этот код создан программой. -// Исполняемая версия:4.0.30319.42000 -// -// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае -// повторной генерации кода. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("CourseApp.Tests")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("CourseApp.Tests")] -[assembly: System.Reflection.AssemblyTitleAttribute("CourseApp.Tests")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Создано классом WriteCodeFragment MSBuild. - diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache deleted file mode 100644 index 7a2883a6..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -acbd1a742416509077db5443708113a32a589d67 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 12d6c2cf..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,3 +0,0 @@ -is_global = true -build_property.RootNamespace = CourseApp.Tests -build_property.ProjectDir = D:\Study\2-1\Programming\Tprogramming_2021-Nikita_Rybkin\CourseApp.Tests\ diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.Program.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.Program.cs deleted file mode 100644 index 17a78ecdc18c8c14ca3d73539f54eb9db83b1701..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 436 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 F{Xc#4r&<62 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.csproj.AssemblyReference.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.csproj.AssemblyReference.cache deleted file mode 100644 index f5e894aea93a73e58fa9d4feab241bc197ee1a40..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11 QcmeZu3JP{+WMlvW01Ze1dH?_b diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs deleted file mode 100644 index 7686d888..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Этот код создан программой. -// Исполняемая версия:4.0.30319.42000 -// -// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае -// повторной генерации кода. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("CourseApp.Tests")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("CourseApp.Tests")] -[assembly: System.Reflection.AssemblyTitleAttribute("CourseApp.Tests")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Создано классом WriteCodeFragment MSBuild. - diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache deleted file mode 100644 index d16458cd..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -3386984aff786eb07a993b29d95dd0d1fad630aa diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 12d6c2cf..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,3 +0,0 @@ -is_global = true -build_property.RootNamespace = CourseApp.Tests -build_property.ProjectDir = D:\Study\2-1\Programming\Tprogramming_2021-Nikita_Rybkin\CourseApp.Tests\ diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.assets.json b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.assets.json deleted file mode 100644 index 43734ea9..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.assets.json +++ /dev/null @@ -1,6029 +0,0 @@ -{ - "version": 3, - "targets": { - ".NETCoreApp,Version=v2.1": { - "Microsoft.CodeCoverage/15.9.0": { - "type": "package", - "compile": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "runtime": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "build": { - "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, - "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} - } - }, - "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.0.3": { - "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.0.3": { - "type": "package", - "dependencies": { - "Microsoft.DotNet.PlatformAbstractions": "1.0.3", - "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.9.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeCoverage": "15.9.0", - "Microsoft.TestPlatform.TestHost": "15.9.0" - }, - "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.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetHostPolicy": "2.1.0", - "Microsoft.NETCore.Platforms": "2.1.0", - "Microsoft.NETCore.Targets": "2.1.0", - "NETStandard.Library": "2.0.3" - }, - "compile": { - "ref/netcoreapp2.1/Microsoft.CSharp.dll": {}, - "ref/netcoreapp2.1/Microsoft.VisualBasic.dll": {}, - "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll": {}, - "ref/netcoreapp2.1/System.AppContext.dll": {}, - "ref/netcoreapp2.1/System.Buffers.dll": {}, - "ref/netcoreapp2.1/System.Collections.Concurrent.dll": {}, - "ref/netcoreapp2.1/System.Collections.Immutable.dll": {}, - "ref/netcoreapp2.1/System.Collections.NonGeneric.dll": {}, - "ref/netcoreapp2.1/System.Collections.Specialized.dll": {}, - "ref/netcoreapp2.1/System.Collections.dll": {}, - "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll": {}, - "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll": {}, - "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll": {}, - "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll": {}, - "ref/netcoreapp2.1/System.ComponentModel.dll": {}, - "ref/netcoreapp2.1/System.Configuration.dll": {}, - "ref/netcoreapp2.1/System.Console.dll": {}, - "ref/netcoreapp2.1/System.Core.dll": {}, - "ref/netcoreapp2.1/System.Data.Common.dll": {}, - "ref/netcoreapp2.1/System.Data.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.Debug.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.Process.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.Tools.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll": {}, - "ref/netcoreapp2.1/System.Drawing.Primitives.dll": {}, - "ref/netcoreapp2.1/System.Drawing.dll": {}, - "ref/netcoreapp2.1/System.Dynamic.Runtime.dll": {}, - "ref/netcoreapp2.1/System.Globalization.Calendars.dll": {}, - "ref/netcoreapp2.1/System.Globalization.Extensions.dll": {}, - "ref/netcoreapp2.1/System.Globalization.dll": {}, - "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll": {}, - "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll": {}, - "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll": {}, - "ref/netcoreapp2.1/System.IO.Compression.dll": {}, - "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll": {}, - "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll": {}, - "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll": {}, - "ref/netcoreapp2.1/System.IO.FileSystem.dll": {}, - "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll": {}, - "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll": {}, - "ref/netcoreapp2.1/System.IO.Pipes.dll": {}, - "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll": {}, - "ref/netcoreapp2.1/System.IO.dll": {}, - "ref/netcoreapp2.1/System.Linq.Expressions.dll": {}, - "ref/netcoreapp2.1/System.Linq.Parallel.dll": {}, - "ref/netcoreapp2.1/System.Linq.Queryable.dll": {}, - "ref/netcoreapp2.1/System.Linq.dll": {}, - "ref/netcoreapp2.1/System.Memory.dll": {}, - "ref/netcoreapp2.1/System.Net.Http.dll": {}, - "ref/netcoreapp2.1/System.Net.HttpListener.dll": {}, - "ref/netcoreapp2.1/System.Net.Mail.dll": {}, - "ref/netcoreapp2.1/System.Net.NameResolution.dll": {}, - "ref/netcoreapp2.1/System.Net.NetworkInformation.dll": {}, - "ref/netcoreapp2.1/System.Net.Ping.dll": {}, - "ref/netcoreapp2.1/System.Net.Primitives.dll": {}, - "ref/netcoreapp2.1/System.Net.Requests.dll": {}, - "ref/netcoreapp2.1/System.Net.Security.dll": {}, - "ref/netcoreapp2.1/System.Net.ServicePoint.dll": {}, - "ref/netcoreapp2.1/System.Net.Sockets.dll": {}, - "ref/netcoreapp2.1/System.Net.WebClient.dll": {}, - "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll": {}, - "ref/netcoreapp2.1/System.Net.WebProxy.dll": {}, - "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll": {}, - "ref/netcoreapp2.1/System.Net.WebSockets.dll": {}, - "ref/netcoreapp2.1/System.Net.dll": {}, - "ref/netcoreapp2.1/System.Numerics.Vectors.dll": {}, - "ref/netcoreapp2.1/System.Numerics.dll": {}, - "ref/netcoreapp2.1/System.ObjectModel.dll": {}, - "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll": {}, - "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll": {}, - "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll": {}, - "ref/netcoreapp2.1/System.Reflection.Emit.dll": {}, - "ref/netcoreapp2.1/System.Reflection.Extensions.dll": {}, - "ref/netcoreapp2.1/System.Reflection.Metadata.dll": {}, - "ref/netcoreapp2.1/System.Reflection.Primitives.dll": {}, - "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll": {}, - "ref/netcoreapp2.1/System.Reflection.dll": {}, - "ref/netcoreapp2.1/System.Resources.Reader.dll": {}, - "ref/netcoreapp2.1/System.Resources.ResourceManager.dll": {}, - "ref/netcoreapp2.1/System.Resources.Writer.dll": {}, - "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Extensions.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Handles.dll": {}, - "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, - "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, - "ref/netcoreapp2.1/System.Runtime.InteropServices.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Loader.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Numerics.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Serialization.dll": {}, - "ref/netcoreapp2.1/System.Runtime.dll": {}, - "ref/netcoreapp2.1/System.Security.Claims.dll": {}, - "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll": {}, - "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll": {}, - "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll": {}, - "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll": {}, - "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll": {}, - "ref/netcoreapp2.1/System.Security.Principal.dll": {}, - "ref/netcoreapp2.1/System.Security.SecureString.dll": {}, - "ref/netcoreapp2.1/System.Security.dll": {}, - "ref/netcoreapp2.1/System.ServiceModel.Web.dll": {}, - "ref/netcoreapp2.1/System.ServiceProcess.dll": {}, - "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll": {}, - "ref/netcoreapp2.1/System.Text.Encoding.dll": {}, - "ref/netcoreapp2.1/System.Text.RegularExpressions.dll": {}, - "ref/netcoreapp2.1/System.Threading.Overlapped.dll": {}, - "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll": {}, - "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll": {}, - "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll": {}, - "ref/netcoreapp2.1/System.Threading.Tasks.dll": {}, - "ref/netcoreapp2.1/System.Threading.Thread.dll": {}, - "ref/netcoreapp2.1/System.Threading.ThreadPool.dll": {}, - "ref/netcoreapp2.1/System.Threading.Timer.dll": {}, - "ref/netcoreapp2.1/System.Threading.dll": {}, - "ref/netcoreapp2.1/System.Transactions.Local.dll": {}, - "ref/netcoreapp2.1/System.Transactions.dll": {}, - "ref/netcoreapp2.1/System.ValueTuple.dll": {}, - "ref/netcoreapp2.1/System.Web.HttpUtility.dll": {}, - "ref/netcoreapp2.1/System.Web.dll": {}, - "ref/netcoreapp2.1/System.Windows.dll": {}, - "ref/netcoreapp2.1/System.Xml.Linq.dll": {}, - "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll": {}, - "ref/netcoreapp2.1/System.Xml.Serialization.dll": {}, - "ref/netcoreapp2.1/System.Xml.XDocument.dll": {}, - "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll": {}, - "ref/netcoreapp2.1/System.Xml.XPath.dll": {}, - "ref/netcoreapp2.1/System.Xml.XmlDocument.dll": {}, - "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll": {}, - "ref/netcoreapp2.1/System.Xml.dll": {}, - "ref/netcoreapp2.1/System.dll": {}, - "ref/netcoreapp2.1/WindowsBase.dll": {}, - "ref/netcoreapp2.1/mscorlib.dll": {}, - "ref/netcoreapp2.1/netstandard.dll": {} - }, - "build": { - "build/netcoreapp2.1/Microsoft.NETCore.App.props": {}, - "build/netcoreapp2.1/Microsoft.NETCore.App.targets": {} - } - }, - "Microsoft.NETCore.DotNetAppHost/2.1.0": { - "type": "package" - }, - "Microsoft.NETCore.DotNetHostPolicy/2.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetHostResolver": "2.1.0" - } - }, - "Microsoft.NETCore.DotNetHostResolver/2.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetAppHost": "2.1.0" - } - }, - "Microsoft.NETCore.Platforms/2.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/2.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.TestPlatform.ObjectModel/15.9.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.0", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.ComponentModel.TypeConverter": "4.1.0", - "System.Diagnostics.Process": "4.1.0", - "System.Diagnostics.TextWriterTraceListener": "4.0.0", - "System.Diagnostics.TraceSource": "4.0.0", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", - "System.Runtime.Loader": "4.0.0", - "System.Runtime.Serialization.Json": "4.0.2", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Thread": "4.0.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.9.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyModel": "1.0.3", - "Microsoft.TestPlatform.ObjectModel": "15.9.0", - "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.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "Microsoft.Win32.Registry/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.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.3": { - "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.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "StyleCop.Analyzers/1.1.118": { - "type": "package" - }, - "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.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Reflection": "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.Threading.Tasks": "4.0.11" - }, - "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.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "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.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "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/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.ComponentModel.Primitives/4.1.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Primitives": "4.1.0", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "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.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.Process/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "Microsoft.Win32.Registry": "4.0.0", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Thread": "4.0.0", - "System.Threading.ThreadPool": "4.0.10", - "runtime.native.System": "4.0.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.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.TraceSource": "4.0.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - } - }, - "System.Diagnostics.TraceSource/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "runtime.native.System": "4.0.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.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.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.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.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.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": {} - } - }, - "System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.Linq/4.1.0": { - "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.Runtime.Extensions": "4.1.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.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "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.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.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Reflection/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.dll": {} - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.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.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "runtime.native.System": "4.0.0" - }, - "compile": { - "ref/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.0.0": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Loader.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Text.Encoding/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "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.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Threading.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Tasks/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Thread/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Thread.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Thread.dll": {} - } - }, - "System.Threading.ThreadPool/4.0.10": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.11": { - "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.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.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.Text.RegularExpressions": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Extensions": "4.0.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/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.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "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.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "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.4.0": { - "type": "package", - "dependencies": { - "xunit.analyzers": "0.10.0", - "xunit.assert": "[2.4.0]", - "xunit.core": "[2.4.0]" - } - }, - "xunit.abstractions/2.0.2": { - "type": "package", - "compile": { - "lib/netstandard2.0/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": {} - } - }, - "xunit.analyzers/0.10.0": { - "type": "package" - }, - "xunit.assert/2.4.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/xunit.assert.dll": {} - }, - "runtime": { - "lib/netstandard2.0/xunit.assert.dll": {} - } - }, - "xunit.core/2.4.0": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.4.0]", - "xunit.extensibility.execution": "[2.4.0]" - }, - "build": { - "build/xunit.core.props": {}, - "build/xunit.core.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/xunit.core.props": {}, - "buildMultiTargeting/xunit.core.targets": {} - } - }, - "xunit.extensibility.core/2.4.0": { - "type": "package", - "dependencies": { - "xunit.abstractions": "2.0.2" - }, - "compile": { - "lib/netstandard2.0/xunit.core.dll": {} - }, - "runtime": { - "lib/netstandard2.0/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.4.0": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.4.0]" - }, - "compile": { - "lib/netstandard2.0/xunit.execution.dotnet.dll": {} - }, - "runtime": { - "lib/netstandard2.0/xunit.execution.dotnet.dll": {} - } - }, - "xunit.runner.visualstudio/2.4.0": { - "type": "package", - "dependencies": { - "Microsoft.NET.Test.Sdk": "15.0.0" - }, - "build": { - "build/netcoreapp1.0/xunit.runner.visualstudio.props": {} - } - }, - "CourseApp/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v2.1", - "compile": { - "bin/placeholder/CourseApp.dll": {} - }, - "runtime": { - "bin/placeholder/CourseApp.dll": {} - } - } - } - }, - "libraries": { - "Microsoft.CodeCoverage/15.9.0": { - "sha512": "oherNadUtHKqFQbtdRKXgPvZVWyGkOeS83pFWT864587npS7JIFWIJ/LJV0c25cWNkCytn2S9XGSSkKscnNFAQ==", - "type": "package", - "path": "microsoft.codecoverage/15.9.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/netstandard1.0/CodeCoverage/CodeCoverage.config", - "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", - "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", - "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", - "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", - "build/netstandard1.0/CodeCoverage/covrun32.dll", - "build/netstandard1.0/CodeCoverage/msdia140.dll", - "build/netstandard1.0/Microsoft.CodeCoverage.props", - "build/netstandard1.0/Microsoft.CodeCoverage.targets", - "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", - "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "microsoft.codecoverage.15.9.0.nupkg.sha512", - "microsoft.codecoverage.nuspec" - ] - }, - "Microsoft.CSharp/4.0.1": { - "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", - "type": "package", - "path": "microsoft.csharp/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.0.3": { - "sha512": "rF92Gp5L2asYrFNf0cKNBxzzGLh1krHuj6TRDk9wdjN2qdvJLaNYOn1s9oYkMlptYX436KiEFqxhLB+I5veXvQ==", - "type": "package", - "path": "microsoft.dotnet.platformabstractions/1.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/.DS_Store", - "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll", - "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll", - "microsoft.dotnet.platformabstractions.1.0.3.nupkg.sha512", - "microsoft.dotnet.platformabstractions.nuspec" - ] - }, - "Microsoft.Extensions.DependencyModel/1.0.3": { - "sha512": "Z3o19EnheuegmvgpCzwoSlnCWxYA6qIUhvKJ7ifKHHvU7U+oYR/gliLiL3LVYOOeGMEEzkpJ5W67sOcXizGtlw==", - "type": "package", - "path": "microsoft.extensions.dependencymodel/1.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/.DS_Store", - "lib/net451/Microsoft.Extensions.DependencyModel.dll", - "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", - "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", - "microsoft.extensions.dependencymodel.1.0.3.nupkg.sha512", - "microsoft.extensions.dependencymodel.nuspec" - ] - }, - "Microsoft.NET.Test.Sdk/15.9.0": { - "sha512": "sGDhl1lTcyC4nbMA6vta+nADm50IEGnm9SW9+JNaie1zjtSmUdOPHu02+WK2SJND+3vbr9DWvgfi9qlSPfUAyw==", - "type": "package", - "path": "microsoft.net.test.sdk/15.9.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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", - "build/uap10.0/Microsoft.Net.Test.Sdk.props", - "buildMultiTargeting/Microsoft.Net.Test.Sdk.props", - "microsoft.net.test.sdk.15.9.0.nupkg.sha512", - "microsoft.net.test.sdk.nuspec" - ] - }, - "Microsoft.NETCore.App/2.1.0": { - "sha512": "JNHhG+j5eIhG26+H721IDmwswGUznTwwSuJMFe/08h0X2YarHvA15sVAvUkA/2Sp3W0ENNm48t+J7KTPRqEpfA==", - "type": "package", - "path": "microsoft.netcore.app/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "Microsoft.NETCore.App.versions.txt", - "THIRD-PARTY-NOTICES.TXT", - "build/netcoreapp2.1/Microsoft.NETCore.App.PlatformManifest.txt", - "build/netcoreapp2.1/Microsoft.NETCore.App.props", - "build/netcoreapp2.1/Microsoft.NETCore.App.targets", - "microsoft.netcore.app.2.1.0.nupkg.sha512", - "microsoft.netcore.app.nuspec", - "ref/netcoreapp/_._", - "ref/netcoreapp2.1/Microsoft.CSharp.dll", - "ref/netcoreapp2.1/Microsoft.CSharp.xml", - "ref/netcoreapp2.1/Microsoft.VisualBasic.dll", - "ref/netcoreapp2.1/Microsoft.VisualBasic.xml", - "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll", - "ref/netcoreapp2.1/Microsoft.Win32.Primitives.xml", - "ref/netcoreapp2.1/System.AppContext.dll", - "ref/netcoreapp2.1/System.Buffers.dll", - "ref/netcoreapp2.1/System.Buffers.xml", - "ref/netcoreapp2.1/System.Collections.Concurrent.dll", - "ref/netcoreapp2.1/System.Collections.Concurrent.xml", - "ref/netcoreapp2.1/System.Collections.Immutable.dll", - "ref/netcoreapp2.1/System.Collections.Immutable.xml", - "ref/netcoreapp2.1/System.Collections.NonGeneric.dll", - "ref/netcoreapp2.1/System.Collections.NonGeneric.xml", - "ref/netcoreapp2.1/System.Collections.Specialized.dll", - "ref/netcoreapp2.1/System.Collections.Specialized.xml", - "ref/netcoreapp2.1/System.Collections.dll", - "ref/netcoreapp2.1/System.Collections.xml", - "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll", - "ref/netcoreapp2.1/System.ComponentModel.Annotations.xml", - "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll", - "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll", - "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.xml", - "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll", - "ref/netcoreapp2.1/System.ComponentModel.Primitives.xml", - "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll", - "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.xml", - "ref/netcoreapp2.1/System.ComponentModel.dll", - "ref/netcoreapp2.1/System.ComponentModel.xml", - "ref/netcoreapp2.1/System.Configuration.dll", - "ref/netcoreapp2.1/System.Console.dll", - "ref/netcoreapp2.1/System.Console.xml", - "ref/netcoreapp2.1/System.Core.dll", - "ref/netcoreapp2.1/System.Data.Common.dll", - "ref/netcoreapp2.1/System.Data.Common.xml", - "ref/netcoreapp2.1/System.Data.dll", - "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll", - "ref/netcoreapp2.1/System.Diagnostics.Contracts.xml", - "ref/netcoreapp2.1/System.Diagnostics.Debug.dll", - "ref/netcoreapp2.1/System.Diagnostics.Debug.xml", - "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll", - "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.xml", - "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll", - "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.xml", - "ref/netcoreapp2.1/System.Diagnostics.Process.dll", - "ref/netcoreapp2.1/System.Diagnostics.Process.xml", - "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll", - "ref/netcoreapp2.1/System.Diagnostics.StackTrace.xml", - "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll", - "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netcoreapp2.1/System.Diagnostics.Tools.dll", - "ref/netcoreapp2.1/System.Diagnostics.Tools.xml", - "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll", - "ref/netcoreapp2.1/System.Diagnostics.TraceSource.xml", - "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll", - "ref/netcoreapp2.1/System.Diagnostics.Tracing.xml", - "ref/netcoreapp2.1/System.Drawing.Primitives.dll", - "ref/netcoreapp2.1/System.Drawing.Primitives.xml", - "ref/netcoreapp2.1/System.Drawing.dll", - "ref/netcoreapp2.1/System.Dynamic.Runtime.dll", - "ref/netcoreapp2.1/System.Globalization.Calendars.dll", - "ref/netcoreapp2.1/System.Globalization.Extensions.dll", - "ref/netcoreapp2.1/System.Globalization.dll", - "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll", - "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll", - "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll", - "ref/netcoreapp2.1/System.IO.Compression.ZipFile.xml", - "ref/netcoreapp2.1/System.IO.Compression.dll", - "ref/netcoreapp2.1/System.IO.Compression.xml", - "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll", - "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.xml", - "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll", - "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll", - "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.xml", - "ref/netcoreapp2.1/System.IO.FileSystem.dll", - "ref/netcoreapp2.1/System.IO.FileSystem.xml", - "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll", - "ref/netcoreapp2.1/System.IO.IsolatedStorage.xml", - "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll", - "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.xml", - "ref/netcoreapp2.1/System.IO.Pipes.dll", - "ref/netcoreapp2.1/System.IO.Pipes.xml", - "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll", - "ref/netcoreapp2.1/System.IO.dll", - "ref/netcoreapp2.1/System.Linq.Expressions.dll", - "ref/netcoreapp2.1/System.Linq.Expressions.xml", - "ref/netcoreapp2.1/System.Linq.Parallel.dll", - "ref/netcoreapp2.1/System.Linq.Parallel.xml", - "ref/netcoreapp2.1/System.Linq.Queryable.dll", - "ref/netcoreapp2.1/System.Linq.Queryable.xml", - "ref/netcoreapp2.1/System.Linq.dll", - "ref/netcoreapp2.1/System.Linq.xml", - "ref/netcoreapp2.1/System.Memory.dll", - "ref/netcoreapp2.1/System.Memory.xml", - "ref/netcoreapp2.1/System.Net.Http.dll", - "ref/netcoreapp2.1/System.Net.Http.xml", - "ref/netcoreapp2.1/System.Net.HttpListener.dll", - "ref/netcoreapp2.1/System.Net.HttpListener.xml", - "ref/netcoreapp2.1/System.Net.Mail.dll", - "ref/netcoreapp2.1/System.Net.Mail.xml", - "ref/netcoreapp2.1/System.Net.NameResolution.dll", - "ref/netcoreapp2.1/System.Net.NameResolution.xml", - "ref/netcoreapp2.1/System.Net.NetworkInformation.dll", - "ref/netcoreapp2.1/System.Net.NetworkInformation.xml", - "ref/netcoreapp2.1/System.Net.Ping.dll", - "ref/netcoreapp2.1/System.Net.Ping.xml", - "ref/netcoreapp2.1/System.Net.Primitives.dll", - "ref/netcoreapp2.1/System.Net.Primitives.xml", - "ref/netcoreapp2.1/System.Net.Requests.dll", - "ref/netcoreapp2.1/System.Net.Requests.xml", - "ref/netcoreapp2.1/System.Net.Security.dll", - "ref/netcoreapp2.1/System.Net.Security.xml", - "ref/netcoreapp2.1/System.Net.ServicePoint.dll", - "ref/netcoreapp2.1/System.Net.ServicePoint.xml", - "ref/netcoreapp2.1/System.Net.Sockets.dll", - "ref/netcoreapp2.1/System.Net.Sockets.xml", - "ref/netcoreapp2.1/System.Net.WebClient.dll", - "ref/netcoreapp2.1/System.Net.WebClient.xml", - "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll", - "ref/netcoreapp2.1/System.Net.WebHeaderCollection.xml", - "ref/netcoreapp2.1/System.Net.WebProxy.dll", - "ref/netcoreapp2.1/System.Net.WebProxy.xml", - "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll", - "ref/netcoreapp2.1/System.Net.WebSockets.Client.xml", - "ref/netcoreapp2.1/System.Net.WebSockets.dll", - "ref/netcoreapp2.1/System.Net.WebSockets.xml", - "ref/netcoreapp2.1/System.Net.dll", - "ref/netcoreapp2.1/System.Numerics.Vectors.dll", - "ref/netcoreapp2.1/System.Numerics.Vectors.xml", - "ref/netcoreapp2.1/System.Numerics.dll", - "ref/netcoreapp2.1/System.ObjectModel.dll", - "ref/netcoreapp2.1/System.ObjectModel.xml", - "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll", - "ref/netcoreapp2.1/System.Reflection.DispatchProxy.xml", - "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll", - "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.xml", - "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll", - "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.xml", - "ref/netcoreapp2.1/System.Reflection.Emit.dll", - "ref/netcoreapp2.1/System.Reflection.Emit.xml", - "ref/netcoreapp2.1/System.Reflection.Extensions.dll", - "ref/netcoreapp2.1/System.Reflection.Metadata.dll", - "ref/netcoreapp2.1/System.Reflection.Metadata.xml", - "ref/netcoreapp2.1/System.Reflection.Primitives.dll", - "ref/netcoreapp2.1/System.Reflection.Primitives.xml", - "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll", - "ref/netcoreapp2.1/System.Reflection.TypeExtensions.xml", - "ref/netcoreapp2.1/System.Reflection.dll", - "ref/netcoreapp2.1/System.Resources.Reader.dll", - "ref/netcoreapp2.1/System.Resources.ResourceManager.dll", - "ref/netcoreapp2.1/System.Resources.ResourceManager.xml", - "ref/netcoreapp2.1/System.Resources.Writer.dll", - "ref/netcoreapp2.1/System.Resources.Writer.xml", - "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll", - "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.xml", - "ref/netcoreapp2.1/System.Runtime.Extensions.dll", - "ref/netcoreapp2.1/System.Runtime.Extensions.xml", - "ref/netcoreapp2.1/System.Runtime.Handles.dll", - "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.xml", - "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcoreapp2.1/System.Runtime.InteropServices.dll", - "ref/netcoreapp2.1/System.Runtime.InteropServices.xml", - "ref/netcoreapp2.1/System.Runtime.Loader.dll", - "ref/netcoreapp2.1/System.Runtime.Loader.xml", - "ref/netcoreapp2.1/System.Runtime.Numerics.dll", - "ref/netcoreapp2.1/System.Runtime.Numerics.xml", - "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll", - "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.xml", - "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll", - "ref/netcoreapp2.1/System.Runtime.Serialization.Json.xml", - "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll", - "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.xml", - "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll", - "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.xml", - "ref/netcoreapp2.1/System.Runtime.Serialization.dll", - "ref/netcoreapp2.1/System.Runtime.dll", - "ref/netcoreapp2.1/System.Runtime.xml", - "ref/netcoreapp2.1/System.Security.Claims.dll", - "ref/netcoreapp2.1/System.Security.Claims.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Csp.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.xml", - "ref/netcoreapp2.1/System.Security.Principal.dll", - "ref/netcoreapp2.1/System.Security.Principal.xml", - "ref/netcoreapp2.1/System.Security.SecureString.dll", - "ref/netcoreapp2.1/System.Security.dll", - "ref/netcoreapp2.1/System.ServiceModel.Web.dll", - "ref/netcoreapp2.1/System.ServiceProcess.dll", - "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll", - "ref/netcoreapp2.1/System.Text.Encoding.Extensions.xml", - "ref/netcoreapp2.1/System.Text.Encoding.dll", - "ref/netcoreapp2.1/System.Text.RegularExpressions.dll", - "ref/netcoreapp2.1/System.Text.RegularExpressions.xml", - "ref/netcoreapp2.1/System.Threading.Overlapped.dll", - "ref/netcoreapp2.1/System.Threading.Overlapped.xml", - "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll", - "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.xml", - "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll", - "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.xml", - "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll", - "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.xml", - "ref/netcoreapp2.1/System.Threading.Tasks.dll", - "ref/netcoreapp2.1/System.Threading.Tasks.xml", - "ref/netcoreapp2.1/System.Threading.Thread.dll", - "ref/netcoreapp2.1/System.Threading.Thread.xml", - "ref/netcoreapp2.1/System.Threading.ThreadPool.dll", - "ref/netcoreapp2.1/System.Threading.ThreadPool.xml", - "ref/netcoreapp2.1/System.Threading.Timer.dll", - "ref/netcoreapp2.1/System.Threading.Timer.xml", - "ref/netcoreapp2.1/System.Threading.dll", - "ref/netcoreapp2.1/System.Threading.xml", - "ref/netcoreapp2.1/System.Transactions.Local.dll", - "ref/netcoreapp2.1/System.Transactions.Local.xml", - "ref/netcoreapp2.1/System.Transactions.dll", - "ref/netcoreapp2.1/System.ValueTuple.dll", - "ref/netcoreapp2.1/System.Web.HttpUtility.dll", - "ref/netcoreapp2.1/System.Web.HttpUtility.xml", - "ref/netcoreapp2.1/System.Web.dll", - "ref/netcoreapp2.1/System.Windows.dll", - "ref/netcoreapp2.1/System.Xml.Linq.dll", - "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll", - "ref/netcoreapp2.1/System.Xml.ReaderWriter.xml", - "ref/netcoreapp2.1/System.Xml.Serialization.dll", - "ref/netcoreapp2.1/System.Xml.XDocument.dll", - "ref/netcoreapp2.1/System.Xml.XDocument.xml", - "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll", - "ref/netcoreapp2.1/System.Xml.XPath.XDocument.xml", - "ref/netcoreapp2.1/System.Xml.XPath.dll", - "ref/netcoreapp2.1/System.Xml.XPath.xml", - "ref/netcoreapp2.1/System.Xml.XmlDocument.dll", - "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll", - "ref/netcoreapp2.1/System.Xml.XmlSerializer.xml", - "ref/netcoreapp2.1/System.Xml.dll", - "ref/netcoreapp2.1/System.dll", - "ref/netcoreapp2.1/WindowsBase.dll", - "ref/netcoreapp2.1/mscorlib.dll", - "ref/netcoreapp2.1/netstandard.dll", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetAppHost/2.1.0": { - "sha512": "vMn8V3GOp/SPOG2oE8WxswzAWZ/GZmc8EPiB3vc2EZ6us14ehXhsvUFXndYopGNSjCa9OdqC6L6xStF1KyUZnw==", - "type": "package", - "path": "microsoft.netcore.dotnetapphost/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512", - "microsoft.netcore.dotnetapphost.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetHostPolicy/2.1.0": { - "sha512": "vBUwNihtLUVS2HhO6WocYfAktRmfFihm6JB8/sJ53caVW+AelvbnYpfiGzaZDpkWjN6vA3xzOKPu9Vu8Zz3p8Q==", - "type": "package", - "path": "microsoft.netcore.dotnethostpolicy/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512", - "microsoft.netcore.dotnethostpolicy.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetHostResolver/2.1.0": { - "sha512": "o0PRql5qOHFEY3d1WvzE+T7cMFKtOsWLMg8L1oTeGNnI4u5AzOj8o6AdZT3y2GxFA1DAx7AQ9qZjpCO2/bgZRw==", - "type": "package", - "path": "microsoft.netcore.dotnethostresolver/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512", - "microsoft.netcore.dotnethostresolver.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Platforms/2.1.0": { - "sha512": "ok+RPAtESz/9MUXeIEz6Lv5XAGQsaNmEYXMsgVALj4D7kqC8gveKWXWXbufLySR2fWrwZf8smyN5RmHu0e4BHA==", - "type": "package", - "path": "microsoft.netcore.platforms/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.2.1.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.NETCore.Targets/2.1.0": { - "sha512": "x188gIZXOwFXkPXyGavEcPGcR6RGvjFOES2QzskN4gERZjWPN34qhRsZVMC0CLJfQLGSButarcgWxPPM4vmg0w==", - "type": "package", - "path": "microsoft.netcore.targets/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.targets.2.1.0.nupkg.sha512", - "microsoft.netcore.targets.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.TestPlatform.ObjectModel/15.9.0": { - "sha512": "O6J4QhackLTvuCuunhxUfXaySRIY6PjLrO6msAdeRjF46et2PYPtRdg9gV9MLRlb/khwBE2ahmOKILP7NWSDfg==", - "type": "package", - "path": "microsoft.testplatform.objectmodel/15.9.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.4/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard1.4/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard1.4/Microsoft.VisualStudio.TestPlatform.ObjectModel.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.9.0.nupkg.sha512", - "microsoft.testplatform.objectmodel.nuspec" - ] - }, - "Microsoft.TestPlatform.TestHost/15.9.0": { - "sha512": "ve8yMTxeK5p8iTn7fCXzrTGiAqlx21thussMEflAOmVEe56OPOi2grkxLEguw7tDOXBKZtRPI7CeH+nXOpEb/g==", - "type": "package", - "path": "microsoft.testplatform.testhost/15.9.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "build/uap10.0/Microsoft.TestPlatform.TestHost.props", - "build/uap10.0/Microsoft.TestPlatform.TestHost.targets", - "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/x64/msdia140.dll", - "build/uap10.0/x86/msdia140.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "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/x64/msdia140.dll", - "lib/netstandard1.5/x86/msdia140.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", - "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/uap10.0/testhost.dll", - "microsoft.testplatform.testhost.15.9.0.nupkg.sha512", - "microsoft.testplatform.testhost.nuspec" - ] - }, - "Microsoft.Win32.Primitives/4.0.1": { - "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", - "type": "package", - "path": "microsoft.win32.primitives/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.win32.primitives.4.0.1.nupkg.sha512", - "microsoft.win32.primitives.nuspec", - "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.0.0": { - "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==", - "type": "package", - "path": "microsoft.win32.registry/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/Microsoft.Win32.Registry.dll", - "microsoft.win32.registry.4.0.0.nupkg.sha512", - "microsoft.win32.registry.nuspec", - "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.3": { - "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", - "type": "package", - "path": "netstandard.library/2.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "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.3.nupkg.sha512", - "netstandard.library.nuspec" - ] - }, - "Newtonsoft.Json/9.0.1": { - "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==", - "type": "package", - "path": "newtonsoft.json/9.0.1", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.0.0": { - "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==", - "type": "package", - "path": "runtime.native.system/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.4.0.0.nupkg.sha512", - "runtime.native.system.nuspec" - ] - }, - "StyleCop.Analyzers/1.1.118": { - "sha512": "Onx6ovGSqXSK07n/0eM3ZusiNdB6cIlJdabQhWGgJp3Vooy9AaLS/tigeybOJAobqbtggTamoWndz72JscZBvw==", - "type": "package", - "path": "stylecop.analyzers/1.1.118", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "THIRD-PARTY-NOTICES.txt", - "analyzers/dotnet/cs/StyleCop.Analyzers.CodeFixes.dll", - "analyzers/dotnet/cs/StyleCop.Analyzers.dll", - "analyzers/dotnet/cs/de-DE/StyleCop.Analyzers.resources.dll", - "analyzers/dotnet/cs/en-GB/StyleCop.Analyzers.resources.dll", - "analyzers/dotnet/cs/es-MX/StyleCop.Analyzers.resources.dll", - "analyzers/dotnet/cs/fr-FR/StyleCop.Analyzers.resources.dll", - "analyzers/dotnet/cs/pl-PL/StyleCop.Analyzers.resources.dll", - "analyzers/dotnet/cs/pt-BR/StyleCop.Analyzers.resources.dll", - "analyzers/dotnet/cs/ru-RU/StyleCop.Analyzers.resources.dll", - "stylecop.analyzers.1.1.118.nupkg.sha512", - "stylecop.analyzers.nuspec", - "tools/install.ps1", - "tools/uninstall.ps1" - ] - }, - "System.AppContext/4.1.0": { - "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", - "type": "package", - "path": "system.appcontext/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.appcontext.4.1.0.nupkg.sha512", - "system.appcontext.nuspec" - ] - }, - "System.Collections/4.0.11": { - "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", - "type": "package", - "path": "system.collections/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.4.0.11.nupkg.sha512", - "system.collections.nuspec" - ] - }, - "System.Collections.Concurrent/4.0.12": { - "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", - "type": "package", - "path": "system.collections.concurrent/4.0.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.concurrent.4.0.12.nupkg.sha512", - "system.collections.concurrent.nuspec" - ] - }, - "System.Collections.Immutable/1.2.0": { - "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==", - "type": "package", - "path": "system.collections.immutable/1.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.immutable.1.2.0.nupkg.sha512", - "system.collections.immutable.nuspec" - ] - }, - "System.Collections.NonGeneric/4.0.1": { - "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==", - "type": "package", - "path": "system.collections.nongeneric/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.0.1.nupkg.sha512", - "system.collections.nongeneric.nuspec" - ] - }, - "System.Collections.Specialized/4.0.1": { - "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==", - "type": "package", - "path": "system.collections.specialized/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.0.1.nupkg.sha512", - "system.collections.specialized.nuspec" - ] - }, - "System.ComponentModel/4.0.1": { - "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", - "type": "package", - "path": "system.componentmodel/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.4.0.1.nupkg.sha512", - "system.componentmodel.nuspec" - ] - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "sha512": "Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==", - "type": "package", - "path": "system.componentmodel.eventbasedasync/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.0.11.nupkg.sha512", - "system.componentmodel.eventbasedasync.nuspec" - ] - }, - "System.ComponentModel.Primitives/4.1.0": { - "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==", - "type": "package", - "path": "system.componentmodel.primitives/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.1.0.nupkg.sha512", - "system.componentmodel.primitives.nuspec" - ] - }, - "System.ComponentModel.TypeConverter/4.1.0": { - "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==", - "type": "package", - "path": "system.componentmodel.typeconverter/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.1.0.nupkg.sha512", - "system.componentmodel.typeconverter.nuspec" - ] - }, - "System.Diagnostics.Debug/4.0.11": { - "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", - "type": "package", - "path": "system.diagnostics.debug/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.debug.4.0.11.nupkg.sha512", - "system.diagnostics.debug.nuspec" - ] - }, - "System.Diagnostics.Process/4.1.0": { - "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", - "type": "package", - "path": "system.diagnostics.process/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.process.4.1.0.nupkg.sha512", - "system.diagnostics.process.nuspec" - ] - }, - "System.Diagnostics.TextWriterTraceListener/4.0.0": { - "sha512": "w36Dr8yKy8xP150qPANe7Td+/zOI3G62ImRcHDIEW+oUXUuTKZHd4DHmqRx5+x8RXd85v3tXd1uhNTfsr+yxjA==", - "type": "package", - "path": "system.diagnostics.textwritertracelistener/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.0.0.nupkg.sha512", - "system.diagnostics.textwritertracelistener.nuspec" - ] - }, - "System.Diagnostics.Tools/4.0.1": { - "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", - "type": "package", - "path": "system.diagnostics.tools/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.tools.4.0.1.nupkg.sha512", - "system.diagnostics.tools.nuspec" - ] - }, - "System.Diagnostics.TraceSource/4.0.0": { - "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==", - "type": "package", - "path": "system.diagnostics.tracesource/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.0.0.nupkg.sha512", - "system.diagnostics.tracesource.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.1.0": { - "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", - "type": "package", - "path": "system.diagnostics.tracing/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.diagnostics.tracing.4.1.0.nupkg.sha512", - "system.diagnostics.tracing.nuspec" - ] - }, - "System.Dynamic.Runtime/4.0.11": { - "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", - "type": "package", - "path": "system.dynamic.runtime/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.0.11": { - "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", - "type": "package", - "path": "system.globalization/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.4.0.11.nupkg.sha512", - "system.globalization.nuspec" - ] - }, - "System.Globalization.Extensions/4.0.1": { - "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", - "type": "package", - "path": "system.globalization.extensions/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.globalization.extensions.4.0.1.nupkg.sha512", - "system.globalization.extensions.nuspec" - ] - }, - "System.IO/4.1.0": { - "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", - "type": "package", - "path": "system.io/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.4.1.0.nupkg.sha512", - "system.io.nuspec" - ] - }, - "System.IO.FileSystem/4.0.1": { - "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", - "type": "package", - "path": "system.io.filesystem/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.4.0.1.nupkg.sha512", - "system.io.filesystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", - "type": "package", - "path": "system.io.filesystem.primitives/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.io.filesystem.primitives.4.0.1.nupkg.sha512", - "system.io.filesystem.primitives.nuspec" - ] - }, - "System.Linq/4.1.0": { - "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", - "type": "package", - "path": "system.linq/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.4.1.0.nupkg.sha512", - "system.linq.nuspec" - ] - }, - "System.Linq.Expressions/4.1.0": { - "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", - "type": "package", - "path": "system.linq.expressions/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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": [ - ".nupkg.metadata", - ".signature.p7s", - "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.1.1": { - "sha512": "lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==", - "type": "package", - "path": "system.private.datacontractserialization/4.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.1.1.nupkg.sha512", - "system.private.datacontractserialization.nuspec" - ] - }, - "System.Reflection/4.1.0": { - "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", - "type": "package", - "path": "system.reflection/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.4.1.0.nupkg.sha512", - "system.reflection.nuspec" - ] - }, - "System.Reflection.Emit/4.0.1": { - "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", - "type": "package", - "path": "system.reflection.emit/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/netstandard1.3/System.Reflection.Emit.dll", - "lib/xamarinmac20/_._", - "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.4.0.1.nupkg.sha512", - "system.reflection.emit.nuspec" - ] - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "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/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", - "system.reflection.emit.ilgeneration.nuspec" - ] - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "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/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.lightweight.4.0.1.nupkg.sha512", - "system.reflection.emit.lightweight.nuspec" - ] - }, - "System.Reflection.Extensions/4.0.1": { - "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", - "type": "package", - "path": "system.reflection.extensions/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.extensions.4.0.1.nupkg.sha512", - "system.reflection.extensions.nuspec" - ] - }, - "System.Reflection.Metadata/1.3.0": { - "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==", - "type": "package", - "path": "system.reflection.metadata/1.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.metadata.1.3.0.nupkg.sha512", - "system.reflection.metadata.nuspec" - ] - }, - "System.Reflection.Primitives/4.0.1": { - "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", - "type": "package", - "path": "system.reflection.primitives/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.primitives.4.0.1.nupkg.sha512", - "system.reflection.primitives.nuspec" - ] - }, - "System.Reflection.TypeExtensions/4.1.0": { - "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", - "type": "package", - "path": "system.reflection.typeextensions/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.reflection.typeextensions.4.1.0.nupkg.sha512", - "system.reflection.typeextensions.nuspec" - ] - }, - "System.Resources.ResourceManager/4.0.1": { - "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", - "type": "package", - "path": "system.resources.resourcemanager/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.resources.resourcemanager.4.0.1.nupkg.sha512", - "system.resources.resourcemanager.nuspec" - ] - }, - "System.Runtime/4.1.0": { - "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", - "type": "package", - "path": "system.runtime/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.4.1.0.nupkg.sha512", - "system.runtime.nuspec" - ] - }, - "System.Runtime.Extensions/4.1.0": { - "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", - "type": "package", - "path": "system.runtime.extensions/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.extensions.4.1.0.nupkg.sha512", - "system.runtime.extensions.nuspec" - ] - }, - "System.Runtime.Handles/4.0.1": { - "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", - "type": "package", - "path": "system.runtime.handles/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.handles.4.0.1.nupkg.sha512", - "system.runtime.handles.nuspec" - ] - }, - "System.Runtime.InteropServices/4.1.0": { - "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", - "type": "package", - "path": "system.runtime.interopservices/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/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/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/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.4.1.0.nupkg.sha512", - "system.runtime.interopservices.nuspec" - ] - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { - "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", - "type": "package", - "path": "system.runtime.interopservices.runtimeinformation/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/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.interopservices.runtimeinformation.4.0.0.nupkg.sha512", - "system.runtime.interopservices.runtimeinformation.nuspec" - ] - }, - "System.Runtime.Loader/4.0.0": { - "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", - "type": "package", - "path": "system.runtime.loader/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net462/_._", - "lib/netstandard1.5/System.Runtime.Loader.dll", - "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.loader.4.0.0.nupkg.sha512", - "system.runtime.loader.nuspec" - ] - }, - "System.Runtime.Serialization.Json/4.0.2": { - "sha512": "+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==", - "type": "package", - "path": "system.runtime.serialization.json/4.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.0.2.nupkg.sha512", - "system.runtime.serialization.json.nuspec" - ] - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", - "type": "package", - "path": "system.runtime.serialization.primitives/4.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.1.1.nupkg.sha512", - "system.runtime.serialization.primitives.nuspec" - ] - }, - "System.Text.Encoding/4.0.11": { - "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", - "type": "package", - "path": "system.text.encoding/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.4.0.11.nupkg.sha512", - "system.text.encoding.nuspec" - ] - }, - "System.Text.Encoding.Extensions/4.0.11": { - "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", - "type": "package", - "path": "system.text.encoding.extensions/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.encoding.extensions.4.0.11.nupkg.sha512", - "system.text.encoding.extensions.nuspec" - ] - }, - "System.Text.RegularExpressions/4.1.0": { - "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", - "type": "package", - "path": "system.text.regularexpressions/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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/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.text.regularexpressions.4.1.0.nupkg.sha512", - "system.text.regularexpressions.nuspec" - ] - }, - "System.Threading/4.0.11": { - "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", - "type": "package", - "path": "system.threading/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.4.0.11.nupkg.sha512", - "system.threading.nuspec" - ] - }, - "System.Threading.Tasks/4.0.11": { - "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", - "type": "package", - "path": "system.threading.tasks/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.4.0.11.nupkg.sha512", - "system.threading.tasks.nuspec" - ] - }, - "System.Threading.Tasks.Extensions/4.0.0": { - "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", - "type": "package", - "path": "system.threading.tasks.extensions/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.tasks.extensions.4.0.0.nupkg.sha512", - "system.threading.tasks.extensions.nuspec" - ] - }, - "System.Threading.Thread/4.0.0": { - "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==", - "type": "package", - "path": "system.threading.thread/4.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.thread.4.0.0.nupkg.sha512", - "system.threading.thread.nuspec" - ] - }, - "System.Threading.ThreadPool/4.0.10": { - "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", - "type": "package", - "path": "system.threading.threadpool/4.0.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.threading.threadpool.4.0.10.nupkg.sha512", - "system.threading.threadpool.nuspec" - ] - }, - "System.Xml.ReaderWriter/4.0.11": { - "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", - "type": "package", - "path": "system.xml.readerwriter/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "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/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.readerwriter.4.0.11.nupkg.sha512", - "system.xml.readerwriter.nuspec" - ] - }, - "System.Xml.XDocument/4.0.11": { - "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", - "type": "package", - "path": "system.xml.xdocument/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.xdocument.4.0.11.nupkg.sha512", - "system.xml.xdocument.nuspec" - ] - }, - "System.Xml.XmlDocument/4.0.1": { - "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==", - "type": "package", - "path": "system.xml.xmldocument/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.0.1.nupkg.sha512", - "system.xml.xmldocument.nuspec" - ] - }, - "System.Xml.XmlSerializer/4.0.11": { - "sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", - "type": "package", - "path": "system.xml.xmlserializer/4.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.0.11.nupkg.sha512", - "system.xml.xmlserializer.nuspec" - ] - }, - "System.Xml.XPath/4.0.1": { - "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==", - "type": "package", - "path": "system.xml.xpath/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.4.0.1.nupkg.sha512", - "system.xml.xpath.nuspec" - ] - }, - "System.Xml.XPath.XmlDocument/4.0.1": { - "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==", - "type": "package", - "path": "system.xml.xpath.xmldocument/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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.4.0": { - "sha512": "NL00nGsDsyWc1CWxz5FXXjLpW9oFG18WJoTPCyhNv4KGP/e5iLJqAqgM1uaJZyQ6WaTtmWIy4yjYP3RdcaT7Vw==", - "type": "package", - "path": "xunit/2.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "xunit.2.4.0.nupkg.sha512", - "xunit.nuspec" - ] - }, - "xunit.abstractions/2.0.2": { - "sha512": "vItLB0WkaKg0426RgWq+ZdXH6D+YV/uH28C0weWMOBnVx7I+luHuEYss9hoOngpkiN5kUpLvh9VZRx1H2sk59A==", - "type": "package", - "path": "xunit.abstractions/2.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/netstandard1.0/xunit.abstractions.dll", - "lib/netstandard1.0/xunit.abstractions.xml", - "lib/netstandard2.0/xunit.abstractions.dll", - "lib/netstandard2.0/xunit.abstractions.xml", - "xunit.abstractions.2.0.2.nupkg.sha512", - "xunit.abstractions.nuspec" - ] - }, - "xunit.analyzers/0.10.0": { - "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", - "type": "package", - "path": "xunit.analyzers/0.10.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "analyzers/dotnet/cs/xunit.analyzers.dll", - "tools/install.ps1", - "tools/uninstall.ps1", - "xunit.analyzers.0.10.0.nupkg.sha512", - "xunit.analyzers.nuspec" - ] - }, - "xunit.assert/2.4.0": { - "sha512": "Swvkm6iTjZr8TiUj5vMnmfG+2dD4s/BIBgsVOzTxxmoq2ndGsmM2WIL4wuqJ8RhxydWIDOPpIaaytjT2pMTEdg==", - "type": "package", - "path": "xunit.assert/2.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.1/xunit.assert.dll", - "lib/netstandard1.1/xunit.assert.xml", - "lib/netstandard2.0/xunit.assert.dll", - "lib/netstandard2.0/xunit.assert.xml", - "xunit.assert.2.4.0.nupkg.sha512", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.4.0": { - "sha512": "BJ/O/tPEcHUCwQYuwqXoYccTMyw6B5dA6yh7WxWWBhKbjqTsG9RWL0nCQXM5yQYJwUuFzBkiXDPN1BO6UdBB4Q==", - "type": "package", - "path": "xunit.core/2.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/xunit.core.props", - "build/xunit.core.targets", - "buildMultiTargeting/xunit.core.props", - "buildMultiTargeting/xunit.core.targets", - "xunit.core.2.4.0.nupkg.sha512", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.4.0": { - "sha512": "qr/KrR6uukHXD9e/lLQjyCPfMEDuvvhNFDzsYzCF2kKlYKiqcADfUvA9Q68rBtKFtwHFeghjWEuv15KoGD2SfA==", - "type": "package", - "path": "xunit.extensibility.core/2.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net452/xunit.core.dll", - "lib/net452/xunit.core.dll.tdnet", - "lib/net452/xunit.core.xml", - "lib/net452/xunit.runner.tdnet.dll", - "lib/net452/xunit.runner.utility.net452.dll", - "lib/netstandard1.1/xunit.core.dll", - "lib/netstandard1.1/xunit.core.xml", - "lib/netstandard2.0/xunit.core.dll", - "lib/netstandard2.0/xunit.core.xml", - "xunit.extensibility.core.2.4.0.nupkg.sha512", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.4.0": { - "sha512": "252Dzn7i5bMPKtAL15aOP3qJhxKd+57I8ldwIQRJa745JxQuiBu5Da0vtIISVTtc3buRSkBwVnD9iUzsEmCzZA==", - "type": "package", - "path": "xunit.extensibility.execution/2.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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", - "lib/netstandard2.0/xunit.execution.dotnet.dll", - "lib/netstandard2.0/xunit.execution.dotnet.xml", - "xunit.extensibility.execution.2.4.0.nupkg.sha512", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/2.4.0": { - "sha512": "3eq5cGXbEJkqW9nwLuXwtxy9B5gMA8i7HW4rN63AhAvy5UvEcQbZnve23wx/oPrkyg/4CbfNhxkBezS0b1oUdQ==", - "type": "package", - "path": "xunit.runner.visualstudio/2.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/_common/xunit.abstractions.dll", - "build/_common/xunit.runner.reporters.net452.dll", - "build/_common/xunit.runner.utility.net452.dll", - "build/_common/xunit.runner.visualstudio.testadapter.dll", - "build/net20/xunit.runner.visualstudio.props", - "build/netcoreapp1.0/xunit.abstractions.dll", - "build/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll", - "build/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", - "build/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", - "build/netcoreapp1.0/xunit.runner.visualstudio.dotnetcore.testadapter.deps.json", - "build/netcoreapp1.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll", - "build/netcoreapp1.0/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.reporters.netstandard11.dll", - "build/uap10.0/xunit.runner.utility.uwp10.dll", - "build/uap10.0/xunit.runner.utility.uwp10.pri", - "build/uap10.0/xunit.runner.visualstudio.props", - "build/uap10.0/xunit.runner.visualstudio.targets", - "build/uap10.0/xunit.runner.visualstudio.uwp.testadapter.dll", - "build/uap10.0/xunit.runner.visualstudio.uwp.testadapter.pri", - "xunit.runner.visualstudio.2.4.0.nupkg.sha512", - "xunit.runner.visualstudio.nuspec" - ] - }, - "CourseApp/1.0.0": { - "type": "project", - "path": "../CourseApp/CourseApp.csproj", - "msbuildProject": "../CourseApp/CourseApp.csproj" - } - }, - "projectFileDependencyGroups": { - ".NETCoreApp,Version=v2.1": [ - "CourseApp >= 1.0.0", - "Microsoft.NET.Test.Sdk >= 15.9.0", - "Microsoft.NETCore.App >= 2.1.0", - "StyleCop.Analyzers >= 1.1.118", - "xunit >= 2.4.0", - "xunit.runner.visualstudio >= 2.4.0" - ] - }, - "packageFolders": { - "C:\\Users\\USER\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\CourseApp.Tests.csproj", - "projectName": "CourseApp.Tests", - "projectPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\CourseApp.Tests.csproj", - "packagesPath": "C:\\Users\\USER\\.nuget\\packages\\", - "outputPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\USER\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp2.1" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp2.1": { - "targetAlias": "netcoreapp2.1", - "projectReferences": { - "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj": { - "projectPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp2.1": { - "targetAlias": "netcoreapp2.1", - "dependencies": { - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[15.9.0, )" - }, - "Microsoft.NETCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.1.0, )", - "autoReferenced": true - }, - "StyleCop.Analyzers": { - "suppressParent": "All", - "target": "Package", - "version": "[1.1.118, )" - }, - "xunit": { - "target": "Package", - "version": "[2.4.0, )" - }, - "xunit.runner.visualstudio": { - "target": "Package", - "version": "[2.4.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.nuget.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.nuget.cache deleted file mode 100644 index 01e3ee5f..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp.Tests/obj/project.nuget.cache +++ /dev/null @@ -1,93 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "EM2OHb6aW+SR6103a4/n/bGNACQZYCXhFmt0yW1p0CNMClUc0cF2UWN8NaRC2qAzefvCRj/yUUn3jep3AkBqCg==", - "success": true, - "projectFilePath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp.Tests\\CourseApp.Tests.csproj", - "expectedPackageFiles": [ - "C:\\Users\\USER\\.nuget\\packages\\microsoft.codecoverage\\15.9.0\\microsoft.codecoverage.15.9.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.csharp\\4.0.1\\microsoft.csharp.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.dotnet.platformabstractions\\1.0.3\\microsoft.dotnet.platformabstractions.1.0.3.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.extensions.dependencymodel\\1.0.3\\microsoft.extensions.dependencymodel.1.0.3.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.net.test.sdk\\15.9.0\\microsoft.net.test.sdk.15.9.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.app\\2.1.0\\microsoft.netcore.app.2.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.dotnetapphost\\2.1.0\\microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.dotnethostpolicy\\2.1.0\\microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.dotnethostresolver\\2.1.0\\microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.0\\microsoft.netcore.platforms.2.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.targets\\2.1.0\\microsoft.netcore.targets.2.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.testplatform.objectmodel\\15.9.0\\microsoft.testplatform.objectmodel.15.9.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.testplatform.testhost\\15.9.0\\microsoft.testplatform.testhost.15.9.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.win32.primitives\\4.0.1\\microsoft.win32.primitives.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.win32.registry\\4.0.0\\microsoft.win32.registry.4.0.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\newtonsoft.json\\9.0.1\\newtonsoft.json.9.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\runtime.native.system\\4.0.0\\runtime.native.system.4.0.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\stylecop.analyzers\\1.1.118\\stylecop.analyzers.1.1.118.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.appcontext\\4.1.0\\system.appcontext.4.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.collections\\4.0.11\\system.collections.4.0.11.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.collections.concurrent\\4.0.12\\system.collections.concurrent.4.0.12.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.collections.immutable\\1.2.0\\system.collections.immutable.1.2.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.collections.nongeneric\\4.0.1\\system.collections.nongeneric.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.collections.specialized\\4.0.1\\system.collections.specialized.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.componentmodel\\4.0.1\\system.componentmodel.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.componentmodel.eventbasedasync\\4.0.11\\system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.componentmodel.primitives\\4.1.0\\system.componentmodel.primitives.4.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.componentmodel.typeconverter\\4.1.0\\system.componentmodel.typeconverter.4.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.diagnostics.debug\\4.0.11\\system.diagnostics.debug.4.0.11.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.diagnostics.process\\4.1.0\\system.diagnostics.process.4.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.diagnostics.textwritertracelistener\\4.0.0\\system.diagnostics.textwritertracelistener.4.0.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.diagnostics.tools\\4.0.1\\system.diagnostics.tools.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.diagnostics.tracesource\\4.0.0\\system.diagnostics.tracesource.4.0.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.diagnostics.tracing\\4.1.0\\system.diagnostics.tracing.4.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.dynamic.runtime\\4.0.11\\system.dynamic.runtime.4.0.11.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.globalization\\4.0.11\\system.globalization.4.0.11.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.globalization.extensions\\4.0.1\\system.globalization.extensions.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.io\\4.1.0\\system.io.4.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.io.filesystem\\4.0.1\\system.io.filesystem.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.io.filesystem.primitives\\4.0.1\\system.io.filesystem.primitives.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.linq\\4.1.0\\system.linq.4.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.linq.expressions\\4.1.0\\system.linq.expressions.4.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.objectmodel\\4.0.12\\system.objectmodel.4.0.12.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.private.datacontractserialization\\4.1.1\\system.private.datacontractserialization.4.1.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.reflection\\4.1.0\\system.reflection.4.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.reflection.emit\\4.0.1\\system.reflection.emit.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.0.1\\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.reflection.emit.lightweight\\4.0.1\\system.reflection.emit.lightweight.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.reflection.extensions\\4.0.1\\system.reflection.extensions.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.reflection.metadata\\1.3.0\\system.reflection.metadata.1.3.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.reflection.primitives\\4.0.1\\system.reflection.primitives.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.reflection.typeextensions\\4.1.0\\system.reflection.typeextensions.4.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.resources.resourcemanager\\4.0.1\\system.resources.resourcemanager.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.runtime\\4.1.0\\system.runtime.4.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.runtime.extensions\\4.1.0\\system.runtime.extensions.4.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.runtime.handles\\4.0.1\\system.runtime.handles.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.runtime.interopservices\\4.1.0\\system.runtime.interopservices.4.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.0.0\\system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.runtime.loader\\4.0.0\\system.runtime.loader.4.0.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.runtime.serialization.json\\4.0.2\\system.runtime.serialization.json.4.0.2.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.runtime.serialization.primitives\\4.1.1\\system.runtime.serialization.primitives.4.1.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.text.encoding\\4.0.11\\system.text.encoding.4.0.11.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.text.encoding.extensions\\4.0.11\\system.text.encoding.extensions.4.0.11.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.text.regularexpressions\\4.1.0\\system.text.regularexpressions.4.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.threading\\4.0.11\\system.threading.4.0.11.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.threading.tasks\\4.0.11\\system.threading.tasks.4.0.11.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.threading.tasks.extensions\\4.0.0\\system.threading.tasks.extensions.4.0.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.threading.thread\\4.0.0\\system.threading.thread.4.0.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.threading.threadpool\\4.0.10\\system.threading.threadpool.4.0.10.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.xml.readerwriter\\4.0.11\\system.xml.readerwriter.4.0.11.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.xml.xdocument\\4.0.11\\system.xml.xdocument.4.0.11.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.xml.xmldocument\\4.0.1\\system.xml.xmldocument.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.xml.xmlserializer\\4.0.11\\system.xml.xmlserializer.4.0.11.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.xml.xpath\\4.0.1\\system.xml.xpath.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\system.xml.xpath.xmldocument\\4.0.1\\system.xml.xpath.xmldocument.4.0.1.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\xunit\\2.4.0\\xunit.2.4.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\xunit.abstractions\\2.0.2\\xunit.abstractions.2.0.2.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\xunit.analyzers\\0.10.0\\xunit.analyzers.0.10.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\xunit.assert\\2.4.0\\xunit.assert.2.4.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\xunit.core\\2.4.0\\xunit.core.2.4.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\xunit.extensibility.core\\2.4.0\\xunit.extensibility.core.2.4.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\xunit.extensibility.execution\\2.4.0\\xunit.extensibility.execution.2.4.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\xunit.runner.visualstudio\\2.4.0\\xunit.runner.visualstudio.2.4.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Animals.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Animals.cs deleted file mode 100644 index 707ea6b9..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Animals.cs +++ /dev/null @@ -1,117 +0,0 @@ -namespace CourseApp -{ - /* using System; */ - /* using System.Collections.Generic;*/ - - public abstract class Animals - { - private int lard; - private int weight; - private int age; - - public Animals() - : this("неизвестного животного", 10, 12, 13) - { - } - - public Animals(string name, int weight) - : this(name, weight, 0, 0) - { - } - - public Animals(string name, int weight, int lard) - : this(name, weight, 0, lard) - { - } - - public Animals(string name, int weight, int age, int lard) - { - Name = name; - Lard = lard; - Age = age; - Weight = weight; - } - - public string Name - { - get; - set; - } - - public int Weight - { - get - { - return weight; - } - - set - { - if (value < 0) - { - weight = 0; - } - else - { - weight = value; - } - } - } - - public int Age - { - get - { - return age; - } - - set - { - if (value < 0) - { - age = 0; - } - else - { - age = value; - } - } - } - - public int Lard - { - get - { - return lard; - } - - set - { - if (value < 0) - { - lard = 0; - } - else - { - lard = value; - } - } - } - - public override string ToString() - { - if (lard == 0) - { - return $"{Name} Без сала\n"; - } - else - { - return $"Из {Name} можно получить {Lard} сала\n"; - } - } - - public abstract string Died(); - - public abstract string MakePhrase(string[] phraseArray); - } -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Bull.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Bull.cs deleted file mode 100644 index b9db7158..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Bull.cs +++ /dev/null @@ -1,44 +0,0 @@ -namespace CourseApp -{ - using System; - /* using System.Collections.Generic;*/ - - public class Bull : Animals - { - private Random random = new Random(); - - public Bull() - : base() - { - } - - public Bull(string name, int weight) - : base(name, weight) - { - } - - public Bull(string name, int weight, int lard) - : base(name, weight, lard) - { - } - - public Bull(string name, int weight, int age, int lard) - : base(name, weight, age, lard) - { - } - - public override string Died() - { - int lard = Lard; - Lard = 0; - return $"{Name} убит\nПолучено {lard} сала\n"; - } - - public override string MakePhrase(string[] phraseArray) - { - int index = random.Next(0, 3); - string phrase = phraseArray[index]; - return $"{phrase}"; - } - } -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Calculator.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Calculator.cs deleted file mode 100644 index aec26da0..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Calculator.cs +++ /dev/null @@ -1,25 +0,0 @@ -namespace CourseApp -{ - public class Calculator - { - public int GetSum(int a, int b) - { - return a + b; - } - - public double GeSum(double a, double b) - { - return a + b; - } - - public int GetProduct(int a, int b) - { - return a * b; - } - - public double GetQuotient(double a, double b) - { - return a / b; - } - } -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.csproj b/Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.csproj deleted file mode 100644 index 260260d3..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.csproj +++ /dev/null @@ -1,22 +0,0 @@ - - - - Exe - netcoreapp2.1 - True - - - - - - - - ../_stylecop/stylecop.ruleset - true - - - - - - - diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.sln b/Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.sln deleted file mode 100644 index 9eae834c..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/CourseApp.sln +++ /dev/null @@ -1,31 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27130.2027 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CourseApp", "CourseApp.csproj", "{9B953FDD-1645-4B1A-B148-5849E7C2D3A7}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CourseApp.Tests", "..\CourseApp.Tests\CourseApp.Tests.csproj", "{C348D2ED-C90F-4CE7-A1D8-9E57CBB33BDE}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {9B953FDD-1645-4B1A-B148-5849E7C2D3A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9B953FDD-1645-4B1A-B148-5849E7C2D3A7}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9B953FDD-1645-4B1A-B148-5849E7C2D3A7}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9B953FDD-1645-4B1A-B148-5849E7C2D3A7}.Release|Any CPU.Build.0 = Release|Any CPU - {C348D2ED-C90F-4CE7-A1D8-9E57CBB33BDE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C348D2ED-C90F-4CE7-A1D8-9E57CBB33BDE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C348D2ED-C90F-4CE7-A1D8-9E57CBB33BDE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C348D2ED-C90F-4CE7-A1D8-9E57CBB33BDE}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {064E603C-674E-4DB9-A061-4B08C0ACD98C} - EndGlobalSection -EndGlobal diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Function.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Function.cs deleted file mode 100644 index 1435b1d8..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Function.cs +++ /dev/null @@ -1,42 +0,0 @@ -namespace CourseApp -{ - using System; - - public class Function - { - public double MathFunction(double x = 0) - { - double arcSin = Math.Asin(x); - double arcCos = Math.Acos(x); - return Math.Pow((arcSin * arcSin * arcSin * arcSin) + (arcCos * arcCos * arcCos * arcCos * arcCos * arcCos), 1 / 7); - } - - public double[] TaskA(double xn, double xk, double dx) - { - int g = (int)(((xk - xn) / dx) + 1); - double[] results = new double[g]; - int i = 0; - while (xn <= xk) - { - results[i] = MathFunction(xn); - i++; - xn = xn + dx; - } - - return results; - } - - public double[] TaskB(double[] numbers) - { - double[] results = new double[numbers.Length]; - int g = 0; - foreach (double i in numbers) - { - results[g] = MathFunction(i); - g++; - } - - return results; - } - } -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/MyProg.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/MyProg.cs deleted file mode 100644 index 0ba1b64d..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/MyProg.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace CourseApp -{ - public class MyProg - { - public int Sum(int x, int y) - { - return x + y; - } - } -} diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Pig.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Pig.cs deleted file mode 100644 index 38111fe1..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Pig.cs +++ /dev/null @@ -1,49 +0,0 @@ -namespace CourseApp -{ - using System; - /*using System.Collections.Generic;*/ - - public class Pig : Animals - { - private Random random = new Random(); - - public Pig() - : base() - { - } - - public Pig(string name, int weight) - : base(name, weight) - { - } - - public Pig(string name, int weight, int lard) - : base(name, weight, lard) - { - } - - public Pig(string name, int weight, int age, int lard) - : base(name, weight, age, lard) - { - } - - public void AddLard(int lard) - { - Lard += lard; - } - - public override string Died() - { - int lard = Lard; - Lard = 0; - return $"{Name} зарезана\nПолучено {lard} сала\n"; - } - - public override string MakePhrase(string[] phraseArray) - { - int index = random.Next(0, 3); - string phrase = phraseArray[index]; - return $"{phrase}"; - } - } -} diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/PigAndSalo.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/PigAndSalo.cs deleted file mode 100644 index 1acb582b..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/PigAndSalo.cs +++ /dev/null @@ -1,76 +0,0 @@ -namespace CourseApp -{ - public class PigAndSalo - { - private string pig; - private string salo; - private int age; - private int dateOfDeath; - - public PigAndSalo(string pig, string salo, string color, int age, int dateOfDeath) - { - Pig = pig; - Salo = salo; - Age = age; - DateOfDeath = dateOfDeath; - } - - public string Pig - { - get - { - return pig; - } - - set - { - pig = value; - } - } - - public string Salo - { - get - { - return salo; - } - - set - { - salo = value; - } - } - - public int Age - { - get - { - return age; - } - - set - { - if (age > 20) - { - age = value; - } - } - } - - public int DateOfDeath - { - get - { - return age; - } - - set - { - if (dateOfDeath > 30) - { - dateOfDeath = value; - } - } - } - } -} diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Program.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/Program.cs deleted file mode 100644 index e48dac10..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/Program.cs +++ /dev/null @@ -1,27 +0,0 @@ -namespace CourseApp -{ - using System; - /* using System.Collections.Generic;*/ - - public class Program - { - public static void Main(string[] args) - { - string[] phraseArray = { ":(", "Жаль :(", "Понмянем :(" }; - Pig pigOne = new Pig(); - Pig pigTwo = new Pig("Бычок", 9, 99); - Bull boarOne = new Bull("Бычок 1", 1, 5, 7); - Bull boarTwo = new Bull("Бычок 2", 3, 2, 8); - Animals[] animals = new Animals[] { pigOne, pigTwo, boarOne, boarTwo }; - foreach (var animal in animals) - { - Console.WriteLine(animal); - } - - Console.Write(pigTwo.Died()); - Console.WriteLine(pigTwo.MakePhrase(phraseArray)); - Console.Write(boarTwo.Died()); - Console.WriteLine(boarTwo.MakePhrase(phraseArray)); - } - } -} diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.deps.json b/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.deps.json deleted file mode 100644 index 7a6bdc0f..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.deps.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v2.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v2.1": { - "CourseApp/1.0.0": { - "dependencies": { - "StyleCop.Analyzers": "1.1.118" - }, - "runtime": { - "CourseApp.dll": {} - } - }, - "StyleCop.Analyzers/1.1.118": {} - } - }, - "libraries": { - "CourseApp/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "StyleCop.Analyzers/1.1.118": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Onx6ovGSqXSK07n/0eM3ZusiNdB6cIlJdabQhWGgJp3Vooy9AaLS/tigeybOJAobqbtggTamoWndz72JscZBvw==", - "path": "stylecop.analyzers/1.1.118", - "hashPath": "stylecop.analyzers.1.1.118.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.dll b/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.dll deleted file mode 100644 index 56aec92d3c4a6916d48cf0d5576cb4cd0d62b7be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8704 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 SJzcY}{Vuxk|2F@25%?b)<^K%; diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.pdb b/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.pdb deleted file mode 100644 index 87807696989e5dc6102ecc99ccccda7ced8165b3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11988 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 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.dev.json b/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.dev.json deleted file mode 100644 index 5d43ddba..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\USER\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\USER\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.json b/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.json deleted file mode 100644 index 976f2e9a..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "netcoreapp2.1", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "2.1.0" - } - } -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.dgspec.json b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.dgspec.json deleted file mode 100644 index 2dbff5ed..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.dgspec.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj": {} - }, - "projects": { - "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj", - "projectName": "CourseApp", - "projectPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj", - "packagesPath": "C:\\Users\\USER\\.nuget\\packages\\", - "outputPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\USER\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp2.1" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp2.1": { - "targetAlias": "netcoreapp2.1", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp2.1": { - "targetAlias": "netcoreapp2.1", - "dependencies": { - "Microsoft.NETCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.1.0, )", - "autoReferenced": true - }, - "StyleCop.Analyzers": { - "suppressParent": "All", - "target": "Package", - "version": "[1.1.118, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.props b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.props deleted file mode 100644 index 9a162ebe..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.props +++ /dev/null @@ -1,24 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\USER\.nuget\packages\ - PackageReference - 5.11.0 - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - C:\Users\USER\.nuget\packages\stylecop.analyzers\1.1.118 - - \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.targets b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.targets deleted file mode 100644 index 2962c64e..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/CourseApp.csproj.nuget.g.targets +++ /dev/null @@ -1,10 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfo.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfo.cs deleted file mode 100644 index 7202d92b..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Этот код создан программой. -// Исполняемая версия:4.0.30319.42000 -// -// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае -// повторной генерации кода. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("CourseApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("CourseApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("CourseApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Создано классом WriteCodeFragment MSBuild. - diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache deleted file mode 100644 index a50a62e1..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -d7237ae28cef3eedd30d3c3e36a864ff09c9c363 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index e6e159ca..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,3 +0,0 @@ -is_global = true -build_property.RootNamespace = CourseApp -build_property.ProjectDir = D:\Study\2-1\Programming\Tprogramming_2021-Nikita_Rybkin\CourseApp\ diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.assets.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.assets.cache deleted file mode 100644 index b32996a348417ac2b03164c51ea1dccd5dc6da44..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 26599 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 SJzcY}{Vuxk|2F@25%?b)<^K%; diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.genruntimeconfig.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.genruntimeconfig.cache deleted file mode 100644 index af456fbc..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -4fc5006bf826c912a848f12b554066db4237caa5 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.pdb b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.pdb deleted file mode 100644 index 87807696989e5dc6102ecc99ccccda7ced8165b3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11988 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 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfo.cs b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfo.cs deleted file mode 100644 index 67b3f727..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Этот код создан программой. -// Исполняемая версия:4.0.30319.42000 -// -// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае -// повторной генерации кода. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("CourseApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("CourseApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("CourseApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Создано классом WriteCodeFragment MSBuild. - diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache deleted file mode 100644 index 79b7a7ed..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -0cb1106348572c39de2e248b3563e3e229348076 diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index e6e159ca..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,3 +0,0 @@ -is_global = true -build_property.RootNamespace = CourseApp -build_property.ProjectDir = D:\Study\2-1\Programming\Tprogramming_2021-Nikita_Rybkin\CourseApp\ diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.assets.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/Release/netcoreapp2.1/CourseApp.assets.cache deleted file mode 100644 index 385b99ffc4b67416de71ac652119030374e7ef3b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 26599 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 2.1.0", - "StyleCop.Analyzers >= 1.1.118" - ] - }, - "packageFolders": { - "C:\\Users\\USER\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj", - "projectName": "CourseApp", - "projectPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj", - "packagesPath": "C:\\Users\\USER\\.nuget\\packages\\", - "outputPath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\USER\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp2.1" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp2.1": { - "targetAlias": "netcoreapp2.1", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp2.1": { - "targetAlias": "netcoreapp2.1", - "dependencies": { - "Microsoft.NETCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.1.0, )", - "autoReferenced": true - }, - "StyleCop.Analyzers": { - "suppressParent": "All", - "target": "Package", - "version": "[1.1.118, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/project.nuget.cache b/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/project.nuget.cache deleted file mode 100644 index b943ceff..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/CourseApp/obj/project.nuget.cache +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "oPhBBo7JYtAvxbxPoTqmsI8+35a9SL6o+SCT3nzhFp2O6wiZzqeM12FfSchVZbmt8+yZAxOrrIDwSNL/xZJr0Q==", - "success": true, - "projectFilePath": "D:\\Study\\2-1\\Programming\\Tprogramming_2021-Nikita_Rybkin\\CourseApp\\CourseApp.csproj", - "expectedPackageFiles": [ - "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.app\\2.1.0\\microsoft.netcore.app.2.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.dotnetapphost\\2.1.0\\microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.dotnethostpolicy\\2.1.0\\microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.dotnethostresolver\\2.1.0\\microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.0\\microsoft.netcore.platforms.2.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\microsoft.netcore.targets\\2.1.0\\microsoft.netcore.targets.2.1.0.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512", - "C:\\Users\\USER\\.nuget\\packages\\stylecop.analyzers\\1.1.118\\stylecop.analyzers.1.1.118.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/Dockerfile b/Tprogramming_2021-Nikita_Rybkin/Dockerfile deleted file mode 100644 index 5794e3fc..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/Dockerfile +++ /dev/null @@ -1,17 +0,0 @@ -FROM mcr.microsoft.com/dotnet/core/sdk:2.1 AS build-env -WORKDIR /app - -# Copy csproj and restore as distinct layers -COPY ./CourseApp/*.csproj ./ -RUN dotnet restore - -# Copy everything else and build -COPY ./CourseApp/* ./ -COPY ./_stylecop/ /_stylecop/ -RUN dotnet publish -c Release -o out - -# Build runtime image -FROM mcr.microsoft.com/dotnet/core/aspnet:2.1 -WORKDIR /app -COPY --from=build-env /app/out . -ENTRYPOINT ["dotnet", "CourseApp.dll"] \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/README.md b/Tprogramming_2021-Nikita_Rybkin/README.md deleted file mode 100644 index 12b7180d..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Tprogramming 2021 - -Master branch :) \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.json b/Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.json deleted file mode 100644 index 4a96e8f0..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json", - "settings": { - "documentationRules": { - "documentExposedElements": false, - "documentInterfaces": false, - "companyName": "Test Company", - "copyrightText": "This source code is Copyright © {companyName} and MAY NOT be copied, reproduced,\npublished, distributed or transmitted to or stored in any manner without prior\nwritten consent from {companyName} (www.yourcompany.com).", - "xmlHeader":false - } - } -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.ruleset b/Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.ruleset deleted file mode 100644 index f109ca92..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/_stylecop/stylecop.ruleset +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/courseworkspace.code-workspace b/Tprogramming_2021-Nikita_Rybkin/courseworkspace.code-workspace deleted file mode 100644 index a24280d9..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/courseworkspace.code-workspace +++ /dev/null @@ -1,15 +0,0 @@ -{ - "folders": [ - { - "path": "CourseApp" - }, - { - "path": "CourseApp.Tests" - }, - { - "name": "Configs (Root)", - "path": "." - }, - ], - "settings": {} -} \ No newline at end of file diff --git a/Tprogramming_2021-Nikita_Rybkin/docker-compose.yml b/Tprogramming_2021-Nikita_Rybkin/docker-compose.yml deleted file mode 100644 index 40911e73..00000000 --- a/Tprogramming_2021-Nikita_Rybkin/docker-compose.yml +++ /dev/null @@ -1,7 +0,0 @@ -version: '3' -services: - app: - build: - context: ./ - dockerfile: ./Dockerfile - image: jskonst/courseapp \ No newline at end of file From 93ffe50f251b84f45838395de49b23ec1923e189 Mon Sep 17 00:00:00 2001 From: Nikrybkin <71150246+Nikrybkin@users.noreply.github.com> Date: Tue, 7 Dec 2021 21:53:21 +0300 Subject: [PATCH 5/8] Add files via upload --- CourseApp/Animals.cs | 117 +++++++++++++++++++++++++++++++++++++++++++ CourseApp/Bull.cs | 44 ++++++++++++++++ CourseApp/Pig.cs | 49 ++++++++++++++++++ CourseApp/Program.cs | 22 ++++++-- 4 files changed, 228 insertions(+), 4 deletions(-) create mode 100644 CourseApp/Animals.cs create mode 100644 CourseApp/Bull.cs create mode 100644 CourseApp/Pig.cs diff --git a/CourseApp/Animals.cs b/CourseApp/Animals.cs new file mode 100644 index 00000000..707ea6b9 --- /dev/null +++ b/CourseApp/Animals.cs @@ -0,0 +1,117 @@ +namespace CourseApp +{ + /* using System; */ + /* using System.Collections.Generic;*/ + + public abstract class Animals + { + private int lard; + private int weight; + private int age; + + public Animals() + : this("неизвестного животного", 10, 12, 13) + { + } + + public Animals(string name, int weight) + : this(name, weight, 0, 0) + { + } + + public Animals(string name, int weight, int lard) + : this(name, weight, 0, lard) + { + } + + public Animals(string name, int weight, int age, int lard) + { + Name = name; + Lard = lard; + Age = age; + Weight = weight; + } + + public string Name + { + get; + set; + } + + public int Weight + { + get + { + return weight; + } + + set + { + if (value < 0) + { + weight = 0; + } + else + { + weight = value; + } + } + } + + public int Age + { + get + { + return age; + } + + set + { + if (value < 0) + { + age = 0; + } + else + { + age = value; + } + } + } + + public int Lard + { + get + { + return lard; + } + + set + { + if (value < 0) + { + lard = 0; + } + else + { + lard = value; + } + } + } + + public override string ToString() + { + if (lard == 0) + { + return $"{Name} Без сала\n"; + } + else + { + return $"Из {Name} можно получить {Lard} сала\n"; + } + } + + public abstract string Died(); + + public abstract string MakePhrase(string[] phraseArray); + } +} \ No newline at end of file diff --git a/CourseApp/Bull.cs b/CourseApp/Bull.cs new file mode 100644 index 00000000..b9db7158 --- /dev/null +++ b/CourseApp/Bull.cs @@ -0,0 +1,44 @@ +namespace CourseApp +{ + using System; + /* using System.Collections.Generic;*/ + + public class Bull : Animals + { + private Random random = new Random(); + + public Bull() + : base() + { + } + + public Bull(string name, int weight) + : base(name, weight) + { + } + + public Bull(string name, int weight, int lard) + : base(name, weight, lard) + { + } + + public Bull(string name, int weight, int age, int lard) + : base(name, weight, age, lard) + { + } + + public override string Died() + { + int lard = Lard; + Lard = 0; + return $"{Name} убит\nПолучено {lard} сала\n"; + } + + public override string MakePhrase(string[] phraseArray) + { + int index = random.Next(0, 3); + string phrase = phraseArray[index]; + return $"{phrase}"; + } + } +} \ No newline at end of file diff --git a/CourseApp/Pig.cs b/CourseApp/Pig.cs new file mode 100644 index 00000000..38111fe1 --- /dev/null +++ b/CourseApp/Pig.cs @@ -0,0 +1,49 @@ +namespace CourseApp +{ + using System; + /*using System.Collections.Generic;*/ + + public class Pig : Animals + { + private Random random = new Random(); + + public Pig() + : base() + { + } + + public Pig(string name, int weight) + : base(name, weight) + { + } + + public Pig(string name, int weight, int lard) + : base(name, weight, lard) + { + } + + public Pig(string name, int weight, int age, int lard) + : base(name, weight, age, lard) + { + } + + public void AddLard(int lard) + { + Lard += lard; + } + + public override string Died() + { + int lard = Lard; + Lard = 0; + return $"{Name} зарезана\nПолучено {lard} сала\n"; + } + + public override string MakePhrase(string[] phraseArray) + { + int index = random.Next(0, 3); + string phrase = phraseArray[index]; + return $"{phrase}"; + } + } +} diff --git a/CourseApp/Program.cs b/CourseApp/Program.cs index 51d2a96d..e48dac10 100644 --- a/CourseApp/Program.cs +++ b/CourseApp/Program.cs @@ -1,13 +1,27 @@ namespace CourseApp { - using System; - + using System; + /* using System.Collections.Generic;*/ + public class Program { public static void Main(string[] args) { - Console.WriteLine($"Hello world"); - Console.ReadLine(); + string[] phraseArray = { ":(", "Жаль :(", "Понмянем :(" }; + Pig pigOne = new Pig(); + Pig pigTwo = new Pig("Бычок", 9, 99); + Bull boarOne = new Bull("Бычок 1", 1, 5, 7); + Bull boarTwo = new Bull("Бычок 2", 3, 2, 8); + Animals[] animals = new Animals[] { pigOne, pigTwo, boarOne, boarTwo }; + foreach (var animal in animals) + { + Console.WriteLine(animal); + } + + Console.Write(pigTwo.Died()); + Console.WriteLine(pigTwo.MakePhrase(phraseArray)); + Console.Write(boarTwo.Died()); + Console.WriteLine(boarTwo.MakePhrase(phraseArray)); } } } From ba9e064cd0ced0559188375e6b498f95d7ddc39f Mon Sep 17 00:00:00 2001 From: Nikrybkin <71150246+Nikrybkin@users.noreply.github.com> Date: Tue, 7 Dec 2021 21:54:14 +0300 Subject: [PATCH 6/8] Add files via upload --- CourseApp.Tests/AnimalsTest.cs | 54 ++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 CourseApp.Tests/AnimalsTest.cs diff --git a/CourseApp.Tests/AnimalsTest.cs b/CourseApp.Tests/AnimalsTest.cs new file mode 100644 index 00000000..0790c476 --- /dev/null +++ b/CourseApp.Tests/AnimalsTest.cs @@ -0,0 +1,54 @@ +namespace CourseApp.Tests +{ + using Xunit; + + public class AnimalsTest + { + [Theory] + [InlineData("Animals", "Animals")] + [InlineData("Бычок", "Бычок")] + public void TestName(string a, string exp) + { + Pig actualResult = new Pig(a, 1); + Assert.Equal(exp, actualResult.Name); + } + + [Theory] + [InlineData(88, 88)] + [InlineData(-20, 0)] + public void TestWeight(int a, int exp) + { + Pig actual = new Pig(" ", a); + Assert.Equal(exp, actual.Weight); + } + + [Theory] + [InlineData(0, 0)] + [InlineData(-1, 0)] + [InlineData(88, 88)] + public void TestFat(int a, int expected) + { + Pig actual = new Pig(" ", 0, a); + Assert.Equal(expected, actual.Lard); + } + + [Theory] + [InlineData(0, 0)] + [InlineData(-1, 0)] + [InlineData(8, 8)] + public void TestAge(int a, int expected) + { + Pig actual = new Pig(" ", 0, a, 88); + Assert.Equal(expected, actual.Age); + } + + [Theory] + [InlineData("Бычок", 5, "Из Бычок можно получить 5 сала\n")] + [InlineData("Бычок", 0, "Бычок Без сала\n")] + public void TestToString(string n, int a, string expected) + { + Bull actual = new Bull(n, 8, a); + Assert.Equal(expected, actual.ToString()); + } + } +} \ No newline at end of file From 46a0213278995f2b84515d2696b4f0d78db6be88 Mon Sep 17 00:00:00 2001 From: Nikrybkin Date: Sun, 6 Feb 2022 22:27:00 +0300 Subject: [PATCH 7/8] RPG-1 --- CourseApp/RPG/Abstract/Player.cs | 75 ++++++++++++++++++++++++++++++ CourseApp/RPG/Heroes/Archer.cs | 23 +++++++++ CourseApp/RPG/Heroes/Knight.cs | 19 ++++++++ CourseApp/RPG/Heroes/Magician.cs | 23 +++++++++ CourseApp/RPG/Interface/IPlayer.cs | 11 +++++ 5 files changed, 151 insertions(+) create mode 100644 CourseApp/RPG/Abstract/Player.cs create mode 100644 CourseApp/RPG/Heroes/Archer.cs create mode 100644 CourseApp/RPG/Heroes/Knight.cs create mode 100644 CourseApp/RPG/Heroes/Magician.cs create mode 100644 CourseApp/RPG/Interface/IPlayer.cs diff --git a/CourseApp/RPG/Abstract/Player.cs b/CourseApp/RPG/Abstract/Player.cs new file mode 100644 index 00000000..40fc6e52 --- /dev/null +++ b/CourseApp/RPG/Abstract/Player.cs @@ -0,0 +1,75 @@ +namespace CourseApp +{ + using System; + + public abstract class Player : IPlayer + { + private double health; + private double strength; + private Random random = new Random(); + private double isFire = 0; + private double isFrozen = 0; + + public Player(string name, double health, double strength) + { + health = random.Next(30, 50); + strength = random.Next(5, 10); + this.Name = name; + this.Health = health; + this.Strength = strength; + this.IsFrozen = isFrozen; + this.IsFire = isFire; + } + + public string Name { get; set; } + + public double Health + { + get + { + return health; + } + + set + { + if (value < 0) + { + throw new InvalidOperationException("Не верное значение"); + } + else + { + health = value; + } + } + } + + public double Strength + { + get + { + return strength; + } + + set + { + if (value < 0) + { + throw new InvalidOperationException("Не верное значение"); + } + else + { + strength = value; + } + } + } + + public virtual double IsFrozen { get; set; } + + public virtual double IsFire { get; set; } + + public virtual double UseUlt() + { + return strength; + } + } +} \ No newline at end of file diff --git a/CourseApp/RPG/Heroes/Archer.cs b/CourseApp/RPG/Heroes/Archer.cs new file mode 100644 index 00000000..9427b2e9 --- /dev/null +++ b/CourseApp/RPG/Heroes/Archer.cs @@ -0,0 +1,23 @@ +namespace CourseApp +{ + using System; + + public class Archer : Player + { + public Archer(string name, double health, double strength) + : base(name, health, strength) + { + } + + public override double UseUlt() + { + if (IsFire == 0) + { + IsFire = 1; + } + + Console.WriteLine($"{Name} запустил огненные стрелы!"); + return IsFire; + } + } +} \ No newline at end of file diff --git a/CourseApp/RPG/Heroes/Knight.cs b/CourseApp/RPG/Heroes/Knight.cs new file mode 100644 index 00000000..f2c059b8 --- /dev/null +++ b/CourseApp/RPG/Heroes/Knight.cs @@ -0,0 +1,19 @@ +namespace CourseApp +{ + using System; + + public class Knight : Player +{ + public Knight(string name, int health, int strength) + : base(name, health, strength) + { + } + + public override double UseUlt() + { + Strength = Math.Floor(Strength * 1.30); + Console.WriteLine($"{Name} использовал усиление урона на 30%!"); + return Strength; + } +} +} \ No newline at end of file diff --git a/CourseApp/RPG/Heroes/Magician.cs b/CourseApp/RPG/Heroes/Magician.cs new file mode 100644 index 00000000..ea1a5219 --- /dev/null +++ b/CourseApp/RPG/Heroes/Magician.cs @@ -0,0 +1,23 @@ +namespace CourseApp +{ + using System; + + public class Magician : Player + { + public Magician(string name, double health, double strength) + : base(name, health, strength) + { + } + + public override double UseUlt() + { + if (IsFrozen == 0) + { + IsFrozen = 1; + } + + Console.WriteLine($"{Name} заморозил противника!"); + return IsFrozen; + } + } +} \ No newline at end of file diff --git a/CourseApp/RPG/Interface/IPlayer.cs b/CourseApp/RPG/Interface/IPlayer.cs new file mode 100644 index 00000000..43183234 --- /dev/null +++ b/CourseApp/RPG/Interface/IPlayer.cs @@ -0,0 +1,11 @@ +namespace CourseApp +{ + public interface IPlayer +{ + string Name { get; set; } + + double Health { get; set; } + + double Strength { get; set; } +} +} \ No newline at end of file From 18a3d9e4a96a1d39bbb7dd8067a33d08d95eb848 Mon Sep 17 00:00:00 2001 From: Nikrybkin Date: Sat, 12 Feb 2022 20:51:26 +0300 Subject: [PATCH 8/8] RPG --- CourseApp/CourseApp.csproj | 18 +--- CourseApp/CourseApp.sln | 31 ------- CourseApp/Program.cs | 41 ++++----- CourseApp/RPG/Abstract/Player.cs | 96 ++++++++++--------- CourseApp/RPG/Heroes/Archer.cs | 19 ++-- CourseApp/RPG/Heroes/Knight.cs | 26 ++++-- CourseApp/RPG/Heroes/Mage.cs | 36 ++++++++ CourseApp/RPG/Heroes/Magician.cs | 23 ----- CourseApp/RPG/Interface/IPlayer.cs | 10 +- CourseApp/RPG/Logger/Logger.cs | 12 +++ CourseApp/RPG/Tournament/Arena.cs | 97 ++++++++++++++++++++ CourseApp/RPG/Tournament/Fight.cs | 56 +++++++++++ CourseApp/RPG/Tournament/Game.cs | 20 ++++ CourseApp/RPG/Tournament/ListParticipants.cs | 46 ++++++++++ 14 files changed, 370 insertions(+), 161 deletions(-) delete mode 100644 CourseApp/CourseApp.sln create mode 100644 CourseApp/RPG/Heroes/Mage.cs delete mode 100644 CourseApp/RPG/Heroes/Magician.cs create mode 100644 CourseApp/RPG/Logger/Logger.cs create mode 100644 CourseApp/RPG/Tournament/Arena.cs create mode 100644 CourseApp/RPG/Tournament/Fight.cs create mode 100644 CourseApp/RPG/Tournament/Game.cs create mode 100644 CourseApp/RPG/Tournament/ListParticipants.cs diff --git a/CourseApp/CourseApp.csproj b/CourseApp/CourseApp.csproj index 260260d3..74abf5c9 100644 --- a/CourseApp/CourseApp.csproj +++ b/CourseApp/CourseApp.csproj @@ -2,21 +2,9 @@ Exe - netcoreapp2.1 - True + net6.0 + enable + enable - - - - - - ../_stylecop/stylecop.ruleset - true - - - - - - diff --git a/CourseApp/CourseApp.sln b/CourseApp/CourseApp.sln deleted file mode 100644 index 9eae834c..00000000 --- a/CourseApp/CourseApp.sln +++ /dev/null @@ -1,31 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27130.2027 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CourseApp", "CourseApp.csproj", "{9B953FDD-1645-4B1A-B148-5849E7C2D3A7}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CourseApp.Tests", "..\CourseApp.Tests\CourseApp.Tests.csproj", "{C348D2ED-C90F-4CE7-A1D8-9E57CBB33BDE}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {9B953FDD-1645-4B1A-B148-5849E7C2D3A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9B953FDD-1645-4B1A-B148-5849E7C2D3A7}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9B953FDD-1645-4B1A-B148-5849E7C2D3A7}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9B953FDD-1645-4B1A-B148-5849E7C2D3A7}.Release|Any CPU.Build.0 = Release|Any CPU - {C348D2ED-C90F-4CE7-A1D8-9E57CBB33BDE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C348D2ED-C90F-4CE7-A1D8-9E57CBB33BDE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C348D2ED-C90F-4CE7-A1D8-9E57CBB33BDE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C348D2ED-C90F-4CE7-A1D8-9E57CBB33BDE}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {064E603C-674E-4DB9-A061-4B08C0ACD98C} - EndGlobalSection -EndGlobal diff --git a/CourseApp/Program.cs b/CourseApp/Program.cs index e48dac10..fa14d673 100644 --- a/CourseApp/Program.cs +++ b/CourseApp/Program.cs @@ -1,27 +1,18 @@ -namespace CourseApp -{ +namespace CourseApp +{ using System; - /* using System.Collections.Generic;*/ + using System.Collections.Generic; - public class Program - { - public static void Main(string[] args) - { - string[] phraseArray = { ":(", "Жаль :(", "Понмянем :(" }; - Pig pigOne = new Pig(); - Pig pigTwo = new Pig("Бычок", 9, 99); - Bull boarOne = new Bull("Бычок 1", 1, 5, 7); - Bull boarTwo = new Bull("Бычок 2", 3, 2, 8); - Animals[] animals = new Animals[] { pigOne, pigTwo, boarOne, boarTwo }; - foreach (var animal in animals) - { - Console.WriteLine(animal); - } - - Console.Write(pigTwo.Died()); - Console.WriteLine(pigTwo.MakePhrase(phraseArray)); - Console.Write(boarTwo.Died()); - Console.WriteLine(boarTwo.MakePhrase(phraseArray)); - } - } -} + public class Program + { + public static void Main(string[] args) + { + int tournamentParticipants = 0; + Game start = new Game(); + tournamentParticipants = start.StartTournament(tournamentParticipants); + Arena arena = new Arena(); + arena.Tournament(tournamentParticipants); + Console.ReadLine(); + } + } +} \ No newline at end of file diff --git a/CourseApp/RPG/Abstract/Player.cs b/CourseApp/RPG/Abstract/Player.cs index 40fc6e52..11cdc36a 100644 --- a/CourseApp/RPG/Abstract/Player.cs +++ b/CourseApp/RPG/Abstract/Player.cs @@ -4,72 +4,80 @@ public abstract class Player : IPlayer { - private double health; - private double strength; - private Random random = new Random(); - private double isFire = 0; - private double isFrozen = 0; - - public Player(string name, double health, double strength) + public Player(string name, double health, int strength) { - health = random.Next(30, 50); - strength = random.Next(5, 10); - this.Name = name; - this.Health = health; - this.Strength = strength; - this.IsFrozen = isFrozen; - this.IsFire = isFire; + Name = name; + Health = health; + Strength = strength; + Afk = 0; + Effect = false; + DefaultHealth = health; } + public int Afk { get; set; } + + public double DefaultHealth { get; set; } + public string Name { get; set; } - public double Health + public string ClassPlayer { get; set; } + + public bool Effect { get; set; } + + public string UltimateName { get; set; } + + public int UltimateDamage { get; set; } + + public int InfoAboutDamage { get; set; } + + public double Health { get; set; } + + public int Strength { get; set; } + + public virtual int Ultimate(Player player, Player rival) { - get + return 0; + } + + public int Attack(Player soldier, Player soldierRival) + { + if (soldier.Effect) { - return health; + soldier.Effect = false; + return InfoAboutDamage = soldier.Ultimate(soldier, soldierRival); } - - set + else { - if (value < 0) - { - throw new InvalidOperationException("Не верное значение"); - } - else - { - health = value; - } + return InfoAboutDamage = Strength; } } - public double Strength + public int AttackAntagonist(Player soldier, Player soldierRival) { - get + if (soldierRival.Effect) { - return strength; + soldierRival.Effect = false; + return InfoAboutDamage = soldierRival.Ultimate(soldier, soldierRival); } - - set + else { - if (value < 0) - { - throw new InvalidOperationException("Не верное значение"); - } - else - { - strength = value; - } + return InfoAboutDamage = Strength; } } - public virtual double IsFrozen { get; set; } + public virtual string Output() + { + return $"Имя: {Name} ; Здоровье: {Health} ; Сила: {Strength}"; + } - public virtual double IsFire { get; set; } + public void Damage(int damage) + { + Health -= damage; + } - public virtual double UseUlt() + public void ResetHealth() { - return strength; + Health = DefaultHealth; } } } \ No newline at end of file diff --git a/CourseApp/RPG/Heroes/Archer.cs b/CourseApp/RPG/Heroes/Archer.cs index 9427b2e9..d41e8b44 100644 --- a/CourseApp/RPG/Heroes/Archer.cs +++ b/CourseApp/RPG/Heroes/Archer.cs @@ -4,20 +4,23 @@ public class Archer : Player { - public Archer(string name, double health, double strength) + public Archer(string name, double health, int strength) : base(name, health, strength) { + ClassPlayer = "Лучник"; + UltimateName = "Ядовитый выстрел"; } - public override double UseUlt() + public override int Ultimate(Player player, Player rival) { - if (IsFire == 0) - { - IsFire = 1; - } + UltimateDamage = 20; + Logger.LoggerOutput($"{ClassPlayer} {Name} использовал суперпособность {UltimateName}!"); + return Strength += UltimateDamage; + } - Console.WriteLine($"{Name} запустил огненные стрелы!"); - return IsFire; + public override string Output() + { + return $"Класс: {ClassPlayer}; Имя: {Name}; Здоровье: {Health}; Сила {Strength}"; } } } \ No newline at end of file diff --git a/CourseApp/RPG/Heroes/Knight.cs b/CourseApp/RPG/Heroes/Knight.cs index f2c059b8..d397ffaa 100644 --- a/CourseApp/RPG/Heroes/Knight.cs +++ b/CourseApp/RPG/Heroes/Knight.cs @@ -3,17 +3,23 @@ using System; public class Knight : Player -{ - public Knight(string name, int health, int strength) - : base(name, health, strength) { - } + public Knight(string name, double health, int strength) + : base(name, health, strength) + { + ClassPlayer = "Рыцарь"; + UltimateName = "Ярость"; + } - public override double UseUlt() - { - Strength = Math.Floor(Strength * 1.30); - Console.WriteLine($"{Name} использовал усиление урона на 30%!"); - return Strength; + public override int Ultimate(Player player, Player rival) + { + Logger.LoggerOutput($"{ClassPlayer} {Name} использовал суперспособность {UltimateName}!"); + return Strength = (int)(Strength * 13); + } + + public override string Output() + { + return $"Класс: {ClassPlayer}; Имя: {Name}; Здоровье: {Health}; Сила {Strength}"; + } } -} } \ No newline at end of file diff --git a/CourseApp/RPG/Heroes/Mage.cs b/CourseApp/RPG/Heroes/Mage.cs new file mode 100644 index 00000000..a0bf8813 --- /dev/null +++ b/CourseApp/RPG/Heroes/Mage.cs @@ -0,0 +1,36 @@ +namespace CourseApp +{ + using System; + + public class Mage : Player + { + public Mage(string name, double health, int strength) + : base(name, health, strength) + { + ClassPlayer = "Маг"; + UltimateName = "Превращение в пепел"; + } + + public override int Ultimate(Player player, Player rival) + { + if (player.Effect) + { + player.Afk = 10; + rival.Afk = 20; + } + else if (rival.Effect) + { + player.Afk = 20; + rival.Afk = 10; + } + + Logger.LoggerOutput($"{ClassPlayer} {Name} использовал суперспособность {UltimateName}!"); + return 0; + } + + public override string Output() + { + return $"Призвание: {ClassPlayer}; Имя: {Name}; Здоровье: {Health}; Сила {Strength}"; + } + } +} \ No newline at end of file diff --git a/CourseApp/RPG/Heroes/Magician.cs b/CourseApp/RPG/Heroes/Magician.cs deleted file mode 100644 index ea1a5219..00000000 --- a/CourseApp/RPG/Heroes/Magician.cs +++ /dev/null @@ -1,23 +0,0 @@ -namespace CourseApp -{ - using System; - - public class Magician : Player - { - public Magician(string name, double health, double strength) - : base(name, health, strength) - { - } - - public override double UseUlt() - { - if (IsFrozen == 0) - { - IsFrozen = 1; - } - - Console.WriteLine($"{Name} заморозил противника!"); - return IsFrozen; - } - } -} \ No newline at end of file diff --git a/CourseApp/RPG/Interface/IPlayer.cs b/CourseApp/RPG/Interface/IPlayer.cs index 43183234..5faef852 100644 --- a/CourseApp/RPG/Interface/IPlayer.cs +++ b/CourseApp/RPG/Interface/IPlayer.cs @@ -1,11 +1,11 @@ namespace CourseApp { public interface IPlayer -{ - string Name { get; set; } + { + string Name { get; set; } - double Health { get; set; } + double Health { get; set; } - double Strength { get; set; } -} + int Strength { get; set; } + } } \ No newline at end of file diff --git a/CourseApp/RPG/Logger/Logger.cs b/CourseApp/RPG/Logger/Logger.cs new file mode 100644 index 00000000..81d30dc4 --- /dev/null +++ b/CourseApp/RPG/Logger/Logger.cs @@ -0,0 +1,12 @@ +namespace CourseApp +{ + using System; + + public class Logger + { + public static void LoggerOutput(string log) + { + Console.WriteLine(log); + } + } +} \ No newline at end of file diff --git a/CourseApp/RPG/Tournament/Arena.cs b/CourseApp/RPG/Tournament/Arena.cs new file mode 100644 index 00000000..fcd01619 --- /dev/null +++ b/CourseApp/RPG/Tournament/Arena.cs @@ -0,0 +1,97 @@ +namespace CourseApp +{ + using System; + using System.Collections.Generic; + + public class Arena + { + private readonly Random random = new Random(); + private Logger logger = new Logger(); + private List soldiers = new List(); + private List winners = new List(); + private ListParticipants list = new ListParticipants(); + + private int round = 1; + + private Fight fight = new Fight(); + + public void Tournament(int tournamentParticipants) + { + soldiers = list.AddAtList(tournamentParticipants); + + Logger.LoggerOutput("Бойцы:"); + foreach (Player item in soldiers) + { + Logger.LoggerOutput($"Боец {item.Name} - {item.ClassPlayer}"); + } + + Logger.LoggerOutput("Турнир начинается!"); + Logger.LoggerOutput($"Раунд {round++}-й"); + while (soldiers.Count + winners.Count > 1) + { + if (soldiers.Count >= 2) + { + int randomSoldierFirst = random.Next(0, soldiers.Count); + int randomSoldierSecond = random.Next(0, soldiers.Count); + while (randomSoldierFirst == randomSoldierSecond) + { + randomSoldierSecond = random.Next(0, soldiers.Count); + } + + Player soldier = soldiers[randomSoldierFirst]; + Player soldierRival = soldiers[randomSoldierSecond]; + Logger.LoggerOutput($"Бой начинается: {soldier.ClassPlayer} {soldier.Name} против {soldierRival.ClassPlayer} {soldierRival.Name} \n"); + fight.Zaruba(soldier, soldierRival); + Console.WriteLine("\n"); + if (soldier.Health <= 0) + { + Logger.LoggerOutput($"{soldier.ClassPlayer} {soldier.Name} потерпел поражение и выбывает из турнира!"); + soldierRival.ResetHealth(); + soldiers.Remove(soldier); + soldiers.Remove(soldierRival); + winners.Add(soldierRival); + } + else + { + Logger.LoggerOutput($"{soldierRival.ClassPlayer} {soldierRival.Name} потерпел поражение и выбывает из турнира!"); + soldier.ResetHealth(); + soldiers.Remove(soldier); + soldiers.Remove(soldierRival); + winners.Add(soldier); + } + } + + if ((winners.Count >= 2) && (soldiers.Count == 0)) + { + int randomSoldierFirst = random.Next(0, winners.Count); + int randomSoldierSecond = random.Next(0, winners.Count); + while (randomSoldierFirst == randomSoldierSecond) + { + randomSoldierSecond = random.Next(0, winners.Count); + } + + Logger.LoggerOutput($"Тур {round++}-й"); + Player soldier = winners[randomSoldierFirst]; + Player soldierRival = winners[randomSoldierSecond]; + Logger.LoggerOutput($"Бой начинается: {soldier.ClassPlayer} {soldier.Name} против {soldierRival.ClassPlayer} {soldierRival.Name} \n"); + fight.Zaruba(soldier, soldierRival); + if (soldier.Health <= 0) + { + Logger.LoggerOutput($"{soldier.ClassPlayer} {soldier.Name} потерпел поражение и выбывает из турнира!"); + soldierRival.ResetHealth(); + winners.Remove(soldier); + } + else + { + Logger.LoggerOutput($"{soldierRival.ClassPlayer} {soldierRival.Name} потерпел поражение и выбывает из турнира!"); + soldier.ResetHealth(); + winners.Remove(soldierRival); + } + } + } + + Logger.LoggerOutput($"Победитель турнира - {winners[0].ClassPlayer} {winners[0].Name}!"); + Logger.LoggerOutput("Турнир окончен!"); + } + } +} \ No newline at end of file diff --git a/CourseApp/RPG/Tournament/Fight.cs b/CourseApp/RPG/Tournament/Fight.cs new file mode 100644 index 00000000..d2528fb3 --- /dev/null +++ b/CourseApp/RPG/Tournament/Fight.cs @@ -0,0 +1,56 @@ +namespace CourseApp +{ + using System; + using System.Collections.Generic; + + public class Fight + { + private readonly Random random = new Random(); + private int counterOne = 0; + private int counterTwo = 0; + + public Tuple Zaruba(Player soldier, Player soldierRival) + { + while ((soldier.Health > 0) && (soldierRival.Health > 0)) + { + if ((random.Next(1, 5) == 1) && (soldier.Effect == false) && (counterOne != 1)) + { + counterOne = 1; + soldier.Effect = true; + } + + if ((random.Next(1, 5) == 2) && (soldierRival.Effect == false) && (counterTwo != 2)) + { + counterTwo = 2; + soldierRival.Effect = true; + } + + if ((soldier.Afk > 0) && (soldier.Health > 0)) + { + Logger.LoggerOutput($"{soldier.Name} пропускает свой ход."); + soldier.Afk--; + } + else if (soldier.Health > 0) + { + soldierRival.Damage(soldier.Attack(soldier, soldierRival)); + Logger.LoggerOutput($"{soldierRival.Name} теряет {soldier.InfoAboutDamage} здоровье от удара {soldier.Name}!"); + } + + if ((soldierRival.Afk > 0) && (soldierRival.Health > 0)) + { + Logger.LoggerOutput($"{soldierRival.Name} пропускает свой ход."); + soldierRival.Afk--; + } + else if (soldierRival.Health > 0) + { + soldier.Damage(soldierRival.AttackAntagonist(soldier, soldierRival)); + Logger.LoggerOutput($"{soldier.Name} теряет {soldierRival.InfoAboutDamage} здоровье от удара {soldierRival.Name}!"); + } + } + + counterOne = 0; + counterTwo = 0; + return new Tuple(soldier, soldierRival); + } + } +} \ No newline at end of file diff --git a/CourseApp/RPG/Tournament/Game.cs b/CourseApp/RPG/Tournament/Game.cs new file mode 100644 index 00000000..0a0f9222 --- /dev/null +++ b/CourseApp/RPG/Tournament/Game.cs @@ -0,0 +1,20 @@ +namespace CourseApp +{ + using System; + + public class Game + { + public int StartTournament(int tournamentParticipants) + { + Logger.LoggerOutput("Введите количество участников турнира: "); + tournamentParticipants = Convert.ToInt32(Console.ReadLine()); + while ((tournamentParticipants % 2 != 0) && (tournamentParticipants > 0)) + { + Logger.LoggerOutput("Количество участников должно быть кратно двум и больше нуля! "); + tournamentParticipants = Convert.ToInt32(Console.ReadLine()); + } + + return tournamentParticipants; + } + } +} \ No newline at end of file diff --git a/CourseApp/RPG/Tournament/ListParticipants.cs b/CourseApp/RPG/Tournament/ListParticipants.cs new file mode 100644 index 00000000..4f937bea --- /dev/null +++ b/CourseApp/RPG/Tournament/ListParticipants.cs @@ -0,0 +1,46 @@ +namespace CourseApp +{ + using System; + using System.Collections.Generic; + + public class ListParticipants + { + private readonly Random random = new Random(); + private readonly string[] arrayOfName = new string[10] + { + "Брон", + "Дрэйкон", + "Вистан", + "Тазар", + "Алкин", + "Корбак", + "Гервульф", + "Бронхильд", + "Мирланда", + "Розик", + }; + + private List soldiers = new List(); + + public List AddAtList(int tournamentParticipants) + { + while (soldiers.Count < tournamentParticipants) + { + switch (random.Next(0, 3)) + { + case 0: + soldiers.Add(new Archer(arrayOfName[random.Next(0, 10)], random.Next(100, 130), random.Next(10, 10))); + break; + case 1: + soldiers.Add(new Knight(arrayOfName[random.Next(0, 10)], random.Next(100, 130), random.Next(10, 10))); + break; + case 2: + soldiers.Add(new Mage(arrayOfName[random.Next(0, 10)], random.Next(100, 130), random.Next(10, 10))); + break; + } + } + + return soldiers; + } + } +} \ No newline at end of file