diff --git a/Calc.cs b/Calc.cs
new file mode 100644
index 00000000..37c68edd
--- /dev/null
+++ b/Calc.cs
@@ -0,0 +1,25 @@
+namespace CourseApp
+{
+ public class Calc
+ {
+ public int GetSum(int a, int b)
+ {
+ return a + b;
+ }
+
+ public double GetSum(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.Tests/AnimalTest.cs b/CourseApp.Tests/AnimalTest.cs
new file mode 100644
index 00000000..919a6f82
--- /dev/null
+++ b/CourseApp.Tests/AnimalTest.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)
+ {
+ Pig actual = new Pig(n, 8, a);
+ Assert.Equal(expected, actual.ToString());
+ }
+ }
+}
\ No newline at end of file
diff --git a/CourseApp.Tests/DemoTest.cs b/CourseApp.Tests/DemoTest.cs
index cf7cbb14..de40fe1e 100644
--- a/CourseApp.Tests/DemoTest.cs
+++ b/CourseApp.Tests/DemoTest.cs
@@ -1,13 +1,13 @@
-namespace CourseApp.Tests
-{
- using Xunit;
-
- public class DemoTest
- {
- [Fact]
- public void Test1()
- {
- Assert.True(true);
- }
- }
-}
+namespace CourseApp.Tests
+{
+ using Xunit;
+
+ public class DemoTest
+ {
+ [Fact]
+ public void Test1()
+ {
+ Assert.True(true);
+ }
+ }
+}
diff --git a/CourseApp.Tests/PhoneTest.cs b/CourseApp.Tests/PhoneTest.cs
new file mode 100644
index 00000000..7750379f
--- /dev/null
+++ b/CourseApp.Tests/PhoneTest.cs
@@ -0,0 +1,225 @@
+namespace CourseApp.Tests
+{
+ using System;
+ using Xunit;
+
+ public class PhoneTest
+ {
+ private AndroidPhone android = new AndroidPhone("Test", 0.3F, 8);
+
+ [Theory]
+ [InlineData(8, -2)]
+ [InlineData(5, 5)]
+ [InlineData(0.2, 0.2)]
+ [InlineData(8, 0)]
+ public void AndroidPhonePriceTest(double exp, double a)
+ {
+ // arrange
+
+ // act
+ android.Price = a;
+ var res = android.Price;
+
+ // assert
+ Assert.Equal(exp, res);
+ }
+
+ [Theory]
+ [InlineData(0.3F, -2)]
+ [InlineData(5, 5)]
+ [InlineData(0.2F, 0.2F)]
+ [InlineData(0.3F, 0)]
+ public void DiagonalTest(float exp, float a)
+ {
+ // arrange
+
+ // act
+ android.Diagonal = a;
+ var res = android.Diagonal;
+
+ // assert
+ Assert.Equal(exp, res);
+ }
+
+ [Fact]
+ public void AcceptCallTest()
+ {
+ // arrange
+ string exp = "Call accepted";
+
+ // act
+ var res = android.AcceptCall();
+
+ // assert
+ Assert.Equal(exp, res);
+ }
+
+ [Fact]
+ public void DialTest()
+ {
+ // arrange
+ string exp = "Calling";
+
+ // act
+ var res = android.Dial();
+
+ // assert
+ Assert.Equal(exp, res);
+ }
+
+ [Fact]
+ public void DeclineCallTest()
+ {
+ // arrange
+ string exp = "Call declined";
+
+ // act
+ var res = android.DeclineCall();
+
+ // assert
+ Assert.Equal(exp, res);
+ }
+
+ [Fact]
+ public void ReadText()
+ {
+ // arrange
+ string exp = "Message";
+
+ // act
+ var res = android.ReadText("Message");
+
+ // assert
+ Assert.Equal(exp, res);
+ }
+
+ [Fact]
+ public void AndroidPhonePresentText()
+ {
+ // arrange
+
+ // act
+ try
+ {
+ android.Present();
+ }
+ catch
+ {
+ Console.WriteLine("AndroidPhone: Name: Test Diagonal: 0.3 Price: 8$");
+ }
+
+ // assert
+ }
+
+ [Theory]
+ [InlineData(8, -2)]
+ [InlineData(5, 5)]
+ [InlineData(0.2, 0.2)]
+ [InlineData(8, 0)]
+ public void IOSPhonePriceTest(double exp, double a)
+ {
+ // arrange
+ var iphone = new IOSPhone("Test", 0.3F, 8);
+
+ // act
+ iphone.Price = a;
+ var res = iphone.Price;
+
+ // assert
+ Assert.Equal(exp, res);
+ }
+
+ [Fact]
+ public void IOSPhonePresentText()
+ {
+ // arrange
+ var iphone = new IOSPhone("Test", 0.3F, 8);
+
+ // act
+ try
+ {
+ iphone.Present();
+ }
+ catch
+ {
+ Console.WriteLine("IOSPhone: Name: Test Diagonal: 0.3 Price: 8$");
+ }
+
+ // assert
+ }
+
+ [Theory]
+ [InlineData(8, -2)]
+ [InlineData(5, 5)]
+ [InlineData(0.2, 0.2)]
+ [InlineData(8, 0)]
+ public void LandLinePhonePriceTest(double exp, double a)
+ {
+ // arrange
+ var landLinePhone = new LandLinePhone("Test", 8);
+
+ // act
+ landLinePhone.Price = a;
+ var res = landLinePhone.Price;
+
+ // assert
+ Assert.Equal(exp, res);
+ }
+
+ [Fact]
+ public void LandLinePhonePresentText()
+ {
+ // arrange
+ var landLinePhone = new LandLinePhone("Test", 8);
+
+ // act
+ try
+ {
+ landLinePhone.Present();
+ }
+ catch
+ {
+ Console.WriteLine("LandLinePhone: Name: Test Diagonal: 0.3 Price: 8$");
+ }
+
+ // assert
+ }
+
+ [Theory]
+ [InlineData(8, -2)]
+ [InlineData(5, 5)]
+ [InlineData(0.2, 0.2)]
+ [InlineData(8, 0)]
+ public void BabushkaPhonePriceTest(double exp, double a)
+ {
+ // arrange
+ var babushkaPhone = new BabushkaPhone("Test", 8);
+
+ // act
+ babushkaPhone.Price = a;
+ var res = babushkaPhone.Price;
+
+ // assert
+ Assert.Equal(exp, res);
+ }
+
+ [Fact]
+ public void BabushkaPhonePresentText()
+ {
+ // arrange
+ var babushkaPhone = new BabushkaPhone("Test", 8);
+
+ // act
+ try
+ {
+ babushkaPhone.Present();
+ }
+ catch
+ {
+ Console.WriteLine("BabushkaPhone: Name: Test Diagonal: 0.3 Price: 8$");
+ }
+
+ // assert
+ }
+ }
+}
diff --git a/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.dgspec.json b/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.dgspec.json
new file mode 100644
index 00000000..a07e8794
--- /dev/null
+++ b/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.dgspec.json
@@ -0,0 +1,150 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp.Tests\\CourseApp.Tests.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp.Tests\\CourseApp.Tests.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp.Tests\\CourseApp.Tests.csproj",
+ "projectName": "CourseApp.Tests",
+ "projectPath": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp.Tests\\CourseApp.Tests.csproj",
+ "packagesPath": "C:\\Users\\polin\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp.Tests\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\polin\\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": {
+ "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp\\CourseApp.csproj": {
+ "projectPath": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\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.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ },
+ "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp\\CourseApp.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp\\CourseApp.csproj",
+ "projectName": "CourseApp",
+ "projectPath": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp\\CourseApp.csproj",
+ "packagesPath": "C:\\Users\\polin\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\polin\\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.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.props b/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.props
new file mode 100644
index 00000000..493ecbf6
--- /dev/null
+++ b/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.props
@@ -0,0 +1,30 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\polin\.nuget\packages\
+ PackageReference
+ 5.8.0
+
+
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
+
+
+
+
+
+
+
+ C:\Users\polin\.nuget\packages\newtonsoft.json\9.0.1
+ C:\Users\polin\.nuget\packages\xunit.analyzers\0.10.0
+ C:\Users\polin\.nuget\packages\stylecop.analyzers\1.1.118
+
+
\ No newline at end of file
diff --git a/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.targets b/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.targets
new file mode 100644
index 00000000..7f76d851
--- /dev/null
+++ b/CourseApp.Tests/obj/CourseApp.Tests.csproj.nuget.g.targets
@@ -0,0 +1,13 @@
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs b/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs
new file mode 100644
index 00000000..e2edc7cd
--- /dev/null
+++ b/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/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache b/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..7a2883a6
--- /dev/null
+++ b/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+acbd1a742416509077db5443708113a32a589d67
diff --git a/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.Program.cs b/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.Program.cs
new file mode 100644
index 00000000..17a78ecd
Binary files /dev/null and b/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.Program.cs differ
diff --git a/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.assets.cache b/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.assets.cache
new file mode 100644
index 00000000..ec8a4f7a
Binary files /dev/null and b/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.assets.cache differ
diff --git a/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.csprojAssemblyReference.cache b/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.csprojAssemblyReference.cache
new file mode 100644
index 00000000..5c718cf5
Binary files /dev/null and b/CourseApp.Tests/obj/Debug/netcoreapp2.1/CourseApp.Tests.csprojAssemblyReference.cache differ
diff --git a/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs b/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfo.cs
new file mode 100644
index 00000000..7686d888
--- /dev/null
+++ b/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/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache b/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..d16458cd
--- /dev/null
+++ b/CourseApp.Tests/obj/Release/netcoreapp2.1/CourseApp.Tests.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+3386984aff786eb07a993b29d95dd0d1fad630aa
diff --git a/CourseApp.Tests/obj/project.assets.json b/CourseApp.Tests/obj/project.assets.json
new file mode 100644
index 00000000..52be6c4a
--- /dev/null
+++ b/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\\polin\\.nuget\\packages\\": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp.Tests\\CourseApp.Tests.csproj",
+ "projectName": "CourseApp.Tests",
+ "projectPath": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp.Tests\\CourseApp.Tests.csproj",
+ "packagesPath": "C:\\Users\\polin\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp.Tests\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\polin\\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": {
+ "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp\\CourseApp.csproj": {
+ "projectPath": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\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.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/CourseApp.Tests/obj/project.nuget.cache b/CourseApp.Tests/obj/project.nuget.cache
new file mode 100644
index 00000000..ac4024b1
--- /dev/null
+++ b/CourseApp.Tests/obj/project.nuget.cache
@@ -0,0 +1,93 @@
+{
+ "version": 2,
+ "dgSpecHash": "h5vEGju8dQWeWn+AsN2aONJUk5t7qFQbBKinyoJdPz9Rpslot3sdFR/44UPAsyo3bTIC2qnY2IJekmrqOoncSg==",
+ "success": true,
+ "projectFilePath": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp.Tests\\CourseApp.Tests.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.codecoverage\\15.9.0\\microsoft.codecoverage.15.9.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.csharp\\4.0.1\\microsoft.csharp.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.dotnet.platformabstractions\\1.0.3\\microsoft.dotnet.platformabstractions.1.0.3.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.extensions.dependencymodel\\1.0.3\\microsoft.extensions.dependencymodel.1.0.3.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.net.test.sdk\\15.9.0\\microsoft.net.test.sdk.15.9.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.netcore.app\\2.1.0\\microsoft.netcore.app.2.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.netcore.dotnetapphost\\2.1.0\\microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.netcore.dotnethostpolicy\\2.1.0\\microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.netcore.dotnethostresolver\\2.1.0\\microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.0\\microsoft.netcore.platforms.2.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.netcore.targets\\2.1.0\\microsoft.netcore.targets.2.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.testplatform.objectmodel\\15.9.0\\microsoft.testplatform.objectmodel.15.9.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.testplatform.testhost\\15.9.0\\microsoft.testplatform.testhost.15.9.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.win32.primitives\\4.0.1\\microsoft.win32.primitives.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.win32.registry\\4.0.0\\microsoft.win32.registry.4.0.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\newtonsoft.json\\9.0.1\\newtonsoft.json.9.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\runtime.native.system\\4.0.0\\runtime.native.system.4.0.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\stylecop.analyzers\\1.1.118\\stylecop.analyzers.1.1.118.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.appcontext\\4.1.0\\system.appcontext.4.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.collections\\4.0.11\\system.collections.4.0.11.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.collections.concurrent\\4.0.12\\system.collections.concurrent.4.0.12.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.collections.immutable\\1.2.0\\system.collections.immutable.1.2.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.collections.nongeneric\\4.0.1\\system.collections.nongeneric.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.collections.specialized\\4.0.1\\system.collections.specialized.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.componentmodel\\4.0.1\\system.componentmodel.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.componentmodel.eventbasedasync\\4.0.11\\system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.componentmodel.primitives\\4.1.0\\system.componentmodel.primitives.4.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.componentmodel.typeconverter\\4.1.0\\system.componentmodel.typeconverter.4.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.diagnostics.debug\\4.0.11\\system.diagnostics.debug.4.0.11.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.diagnostics.process\\4.1.0\\system.diagnostics.process.4.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.diagnostics.textwritertracelistener\\4.0.0\\system.diagnostics.textwritertracelistener.4.0.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.diagnostics.tools\\4.0.1\\system.diagnostics.tools.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.diagnostics.tracesource\\4.0.0\\system.diagnostics.tracesource.4.0.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.diagnostics.tracing\\4.1.0\\system.diagnostics.tracing.4.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.dynamic.runtime\\4.0.11\\system.dynamic.runtime.4.0.11.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.globalization\\4.0.11\\system.globalization.4.0.11.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.globalization.extensions\\4.0.1\\system.globalization.extensions.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.io\\4.1.0\\system.io.4.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.io.filesystem\\4.0.1\\system.io.filesystem.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.io.filesystem.primitives\\4.0.1\\system.io.filesystem.primitives.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.linq\\4.1.0\\system.linq.4.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.linq.expressions\\4.1.0\\system.linq.expressions.4.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.objectmodel\\4.0.12\\system.objectmodel.4.0.12.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.private.datacontractserialization\\4.1.1\\system.private.datacontractserialization.4.1.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.reflection\\4.1.0\\system.reflection.4.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.reflection.emit\\4.0.1\\system.reflection.emit.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.0.1\\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.reflection.emit.lightweight\\4.0.1\\system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.reflection.extensions\\4.0.1\\system.reflection.extensions.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.reflection.metadata\\1.3.0\\system.reflection.metadata.1.3.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.reflection.primitives\\4.0.1\\system.reflection.primitives.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.reflection.typeextensions\\4.1.0\\system.reflection.typeextensions.4.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.resources.resourcemanager\\4.0.1\\system.resources.resourcemanager.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.runtime\\4.1.0\\system.runtime.4.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.runtime.extensions\\4.1.0\\system.runtime.extensions.4.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.runtime.handles\\4.0.1\\system.runtime.handles.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.runtime.interopservices\\4.1.0\\system.runtime.interopservices.4.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.0.0\\system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.runtime.loader\\4.0.0\\system.runtime.loader.4.0.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.runtime.serialization.json\\4.0.2\\system.runtime.serialization.json.4.0.2.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.runtime.serialization.primitives\\4.1.1\\system.runtime.serialization.primitives.4.1.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.text.encoding\\4.0.11\\system.text.encoding.4.0.11.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.text.encoding.extensions\\4.0.11\\system.text.encoding.extensions.4.0.11.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.text.regularexpressions\\4.1.0\\system.text.regularexpressions.4.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.threading\\4.0.11\\system.threading.4.0.11.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.threading.tasks\\4.0.11\\system.threading.tasks.4.0.11.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.threading.tasks.extensions\\4.0.0\\system.threading.tasks.extensions.4.0.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.threading.thread\\4.0.0\\system.threading.thread.4.0.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.threading.threadpool\\4.0.10\\system.threading.threadpool.4.0.10.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.xml.readerwriter\\4.0.11\\system.xml.readerwriter.4.0.11.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.xml.xdocument\\4.0.11\\system.xml.xdocument.4.0.11.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.xml.xmldocument\\4.0.1\\system.xml.xmldocument.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.xml.xmlserializer\\4.0.11\\system.xml.xmlserializer.4.0.11.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.xml.xpath\\4.0.1\\system.xml.xpath.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\system.xml.xpath.xmldocument\\4.0.1\\system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\xunit\\2.4.0\\xunit.2.4.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\xunit.abstractions\\2.0.2\\xunit.abstractions.2.0.2.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\xunit.analyzers\\0.10.0\\xunit.analyzers.0.10.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\xunit.assert\\2.4.0\\xunit.assert.2.4.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\xunit.core\\2.4.0\\xunit.core.2.4.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\xunit.extensibility.core\\2.4.0\\xunit.extensibility.core.2.4.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\xunit.extensibility.execution\\2.4.0\\xunit.extensibility.execution.2.4.0.nupkg.sha512",
+ "C:\\Users\\polin\\.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/CourseApp/Animals.cs b/CourseApp/Animals.cs
new file mode 100644
index 00000000..59987742
--- /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/Deer.cs b/CourseApp/Deer.cs
new file mode 100644
index 00000000..3fb1def1
--- /dev/null
+++ b/CourseApp/Deer.cs
@@ -0,0 +1,44 @@
+namespace CourseApp
+{
+ using System;
+ /* using System.Collections.Generic;*/
+
+ public class Deer : Animals
+ {
+ private Random random = new Random();
+
+ public Deer()
+ : base()
+ {
+ }
+
+ public Deer(string name, int weight)
+ : base(name, weight)
+ {
+ }
+
+ public Deer(string name, int weight, int lard)
+ : base(name, weight, lard)
+ {
+ }
+
+ public Deer(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/EShop.cs b/CourseApp/EShop.cs
new file mode 100644
index 00000000..11883a32
--- /dev/null
+++ b/CourseApp/EShop.cs
@@ -0,0 +1,42 @@
+namespace CourseApp
+{
+ using System.Collections.Generic;
+
+ public class EShop
+ {
+ private List goods = new List();
+ private List matrix = new List();
+
+ public EShop(string name)
+ {
+ Name = name;
+ }
+
+ public string Name { get; set; }
+
+ public void Goods()
+ {
+ goods.Add(new AndroidPhone("GooglePixel", 10, 100));
+ goods.Add(new IOSPhone("IPhone13", 100, 1000));
+ matrix.Add(new Matrix("Экран"));
+ }
+
+ public void Present()
+ {
+ Goods();
+ foreach (IProduct item in goods)
+ {
+ item.Present();
+ }
+ }
+
+ public void InstallMatrix(float diagonal)
+ {
+ Goods();
+ foreach (IMatrix item in matrix)
+ {
+ item.InstallMatrix(10);
+ }
+ }
+ }
+}
diff --git a/CourseApp/FabricOfMatrix.cs b/CourseApp/FabricOfMatrix.cs
new file mode 100644
index 00000000..d0e59205
--- /dev/null
+++ b/CourseApp/FabricOfMatrix.cs
@@ -0,0 +1,14 @@
+namespace CourseApp
+{
+ using System.Collections.Generic;
+
+ public class FabricOfMatrix
+ {
+ private List matrix = new List();
+
+ public void Matrixs(string typeOfMatrix)
+ {
+ matrix.Add(new Matrix(typeOfMatrix));
+ }
+ }
+}
diff --git a/CourseApp/Interface/IMatrix.cs b/CourseApp/Interface/IMatrix.cs
new file mode 100644
index 00000000..c3800e34
--- /dev/null
+++ b/CourseApp/Interface/IMatrix.cs
@@ -0,0 +1,9 @@
+namespace CourseApp
+{
+ public interface IMatrix
+ {
+ string TypeOfMatrix { get; set; }
+
+ string InstallMatrix(float diagonal);
+ }
+}
\ No newline at end of file
diff --git a/CourseApp/Interface/IProduct.cs b/CourseApp/Interface/IProduct.cs
new file mode 100644
index 00000000..63e1f1c3
--- /dev/null
+++ b/CourseApp/Interface/IProduct.cs
@@ -0,0 +1,11 @@
+namespace CourseApp
+{
+ public interface IProduct
+ {
+ string Name { get; set; }
+
+ double Price { get; set; }
+
+ void Present();
+ }
+}
diff --git a/CourseApp/Matrix.cs b/CourseApp/Matrix.cs
new file mode 100644
index 00000000..9683c2fc
--- /dev/null
+++ b/CourseApp/Matrix.cs
@@ -0,0 +1,20 @@
+namespace CourseApp
+{
+ using System;
+
+ public class Matrix : IMatrix
+ {
+ public Matrix(string matrix)
+ {
+ TypeOfMatrix = matrix;
+ }
+
+ public string TypeOfMatrix { get; set; }
+
+ public string InstallMatrix(float diagonal)
+ {
+ Console.WriteLine($@"Installed Matrix: {(string.IsNullOrEmpty(TypeOfMatrix) ? "none" : TypeOfMatrix)} Diagonal: {diagonal}");
+ return TypeOfMatrix;
+ }
+ }
+}
diff --git a/CourseApp/Phone/CellPhone.cs b/CourseApp/Phone/CellPhone.cs
new file mode 100644
index 00000000..7aa383cc
--- /dev/null
+++ b/CourseApp/Phone/CellPhone.cs
@@ -0,0 +1,23 @@
+namespace CourseApp
+{
+ using System;
+
+ public abstract class CellPhone : Phone
+ {
+ public string DeclineCall()
+ {
+ return "Call declined";
+ }
+
+ public string SendText()
+ {
+ _ = Console.ReadLine();
+ return "Message sent";
+ }
+
+ public string ReadText(string message)
+ {
+ return message;
+ }
+ }
+}
diff --git a/CourseApp/Phone/CellPhone/BabushkaPhone.cs b/CourseApp/Phone/CellPhone/BabushkaPhone.cs
new file mode 100644
index 00000000..ef13305c
--- /dev/null
+++ b/CourseApp/Phone/CellPhone/BabushkaPhone.cs
@@ -0,0 +1,38 @@
+namespace CourseApp
+{
+ using System;
+
+ public class BabushkaPhone : CellPhone, IProduct
+ {
+ private double price;
+
+ public BabushkaPhone(string name, double price)
+ {
+ Name = name;
+ Price = price;
+ }
+
+ public string Name { get; set; }
+
+ public double Price
+ {
+ get
+ {
+ return price;
+ }
+
+ set
+ {
+ if (value > 0)
+ {
+ price = value;
+ }
+ }
+ }
+
+ public void Present()
+ {
+ Console.WriteLine($@"BabushkaPhone: Name: {(string.IsNullOrEmpty(Name) ? "none" : Name)} Price: {Price}$");
+ }
+ }
+}
diff --git a/CourseApp/Phone/CellPhone/SmartPhone/AndroidPhone.cs b/CourseApp/Phone/CellPhone/SmartPhone/AndroidPhone.cs
new file mode 100644
index 00000000..a14ffb41
--- /dev/null
+++ b/CourseApp/Phone/CellPhone/SmartPhone/AndroidPhone.cs
@@ -0,0 +1,39 @@
+namespace CourseApp
+{
+ using System;
+
+ public class AndroidPhone : SmartPhone, IProduct
+ {
+ private double price;
+
+ public AndroidPhone(string name, float diagonal, double price)
+ {
+ Name = name;
+ Price = price;
+ Diagonal = diagonal;
+ }
+
+ public string Name { get; set; }
+
+ public double Price
+ {
+ get
+ {
+ return price;
+ }
+
+ set
+ {
+ if (value > 0)
+ {
+ price = value;
+ }
+ }
+ }
+
+ public void Present()
+ {
+ Console.WriteLine($@"AndroidPhone: Name: {(string.IsNullOrEmpty(Name) ? "none" : Name)} Diagonal: {Diagonal} Price: {Price}$");
+ }
+ }
+}
diff --git a/CourseApp/Phone/CellPhone/SmartPhone/IOSPhone.cs b/CourseApp/Phone/CellPhone/SmartPhone/IOSPhone.cs
new file mode 100644
index 00000000..3900b966
--- /dev/null
+++ b/CourseApp/Phone/CellPhone/SmartPhone/IOSPhone.cs
@@ -0,0 +1,39 @@
+namespace CourseApp
+{
+ using System;
+
+ public class IOSPhone : SmartPhone, IProduct
+ {
+ private double price;
+
+ public IOSPhone(string name, float diagonal, double price)
+ {
+ Name = name;
+ Price = price;
+ Diagonal = diagonal;
+ }
+
+ public string Name { get; set; }
+
+ public double Price
+ {
+ get
+ {
+ return price;
+ }
+
+ set
+ {
+ if (value > 0)
+ {
+ this.price = value;
+ }
+ }
+ }
+
+ public void Present()
+ {
+ Console.WriteLine($@"IOSPhone: Name: {(string.IsNullOrEmpty(Name) ? "none" : Name)} Diagonal: {Diagonal} Price: {Price}$");
+ }
+ }
+}
diff --git a/CourseApp/Phone/LandLinePhone.cs b/CourseApp/Phone/LandLinePhone.cs
new file mode 100644
index 00000000..7e8e59fe
--- /dev/null
+++ b/CourseApp/Phone/LandLinePhone.cs
@@ -0,0 +1,38 @@
+namespace CourseApp
+{
+ using System;
+
+ public class LandLinePhone : Phone, IProduct
+ {
+ private double price;
+
+ public LandLinePhone(string name, double price)
+ {
+ Name = name;
+ Price = price;
+ }
+
+ public string Name { get; set; }
+
+ public double Price
+ {
+ get
+ {
+ return price;
+ }
+
+ set
+ {
+ if (value > 0)
+ {
+ price = value;
+ }
+ }
+ }
+
+ public void Present()
+ {
+ Console.WriteLine($@"LandLinePhone: Name: {(string.IsNullOrEmpty(Name) ? "none" : Name)} Price: {Price}$");
+ }
+ }
+}
diff --git a/CourseApp/Phone/Phone.cs b/CourseApp/Phone/Phone.cs
new file mode 100644
index 00000000..cdb3b84d
--- /dev/null
+++ b/CourseApp/Phone/Phone.cs
@@ -0,0 +1,15 @@
+namespace CourseApp
+{
+ public abstract class Phone
+ {
+ public string Dial()
+ {
+ return "Calling";
+ }
+
+ public string AcceptCall()
+ {
+ return "Call accepted";
+ }
+ }
+}
diff --git a/CourseApp/Phone/SmartPhone.cs b/CourseApp/Phone/SmartPhone.cs
new file mode 100644
index 00000000..b162c1fd
--- /dev/null
+++ b/CourseApp/Phone/SmartPhone.cs
@@ -0,0 +1,23 @@
+namespace CourseApp
+{
+ public abstract class SmartPhone : CellPhone
+ {
+ private float diagonal = 0;
+
+ public float Diagonal
+ {
+ get
+ {
+ return diagonal;
+ }
+
+ set
+ {
+ if (value > 0)
+ {
+ diagonal = value;
+ }
+ }
+ }
+ }
+}
diff --git a/CourseApp/Pig.cs b/CourseApp/Pig.cs
new file mode 100644
index 00000000..8293cc8b
--- /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}";
+ }
+ }
+}
\ No newline at end of file
diff --git a/CourseApp/Program.cs b/CourseApp/Program.cs
index 51d2a96d..64a8cab8 100644
--- a/CourseApp/Program.cs
+++ b/CourseApp/Program.cs
@@ -6,7 +6,8 @@ public class Program
{
public static void Main(string[] args)
{
- Console.WriteLine($"Hello world");
+ var eshop = new EShop("Mobile");
+ eshop.Present();
Console.ReadLine();
}
}
diff --git a/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.deps.json b/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.deps.json
new file mode 100644
index 00000000..7a6bdc0f
--- /dev/null
+++ b/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/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.dll b/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.dll
new file mode 100644
index 00000000..17ae1a8a
Binary files /dev/null and b/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.dll differ
diff --git a/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.pdb b/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.pdb
new file mode 100644
index 00000000..87d92627
Binary files /dev/null and b/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.pdb differ
diff --git a/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.dev.json b/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.dev.json
new file mode 100644
index 00000000..96e43eab
--- /dev/null
+++ b/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.dev.json
@@ -0,0 +1,8 @@
+{
+ "runtimeOptions": {
+ "additionalProbingPaths": [
+ "C:\\Users\\polin\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\polin\\.nuget\\packages"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.json b/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.runtimeconfig.json
new file mode 100644
index 00000000..976f2e9a
--- /dev/null
+++ b/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/CourseApp/obj/CourseApp.csproj.nuget.dgspec.json b/CourseApp/obj/CourseApp.csproj.nuget.dgspec.json
new file mode 100644
index 00000000..762d04c9
--- /dev/null
+++ b/CourseApp/obj/CourseApp.csproj.nuget.dgspec.json
@@ -0,0 +1,71 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp\\CourseApp.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp\\CourseApp.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp\\CourseApp.csproj",
+ "projectName": "CourseApp",
+ "projectPath": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp\\CourseApp.csproj",
+ "packagesPath": "C:\\Users\\polin\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\polin\\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.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/CourseApp/obj/CourseApp.csproj.nuget.g.props b/CourseApp/obj/CourseApp.csproj.nuget.g.props
new file mode 100644
index 00000000..0fcfa831
--- /dev/null
+++ b/CourseApp/obj/CourseApp.csproj.nuget.g.props
@@ -0,0 +1,24 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\polin\.nuget\packages\
+ PackageReference
+ 5.8.0
+
+
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
+
+
+
+ C:\Users\polin\.nuget\packages\stylecop.analyzers\1.1.118
+
+
\ No newline at end of file
diff --git a/CourseApp/obj/CourseApp.csproj.nuget.g.targets b/CourseApp/obj/CourseApp.csproj.nuget.g.targets
new file mode 100644
index 00000000..2962c64e
--- /dev/null
+++ b/CourseApp/obj/CourseApp.csproj.nuget.g.targets
@@ -0,0 +1,10 @@
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfo.cs b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfo.cs
new file mode 100644
index 00000000..7202d92b
--- /dev/null
+++ b/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/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..a50a62e1
--- /dev/null
+++ b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+d7237ae28cef3eedd30d3c3e36a864ff09c9c363
diff --git a/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.assets.cache b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.assets.cache
new file mode 100644
index 00000000..272c3cca
Binary files /dev/null and b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.assets.cache differ
diff --git a/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.csproj.CoreCompileInputs.cache b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.csproj.CoreCompileInputs.cache
new file mode 100644
index 00000000..f1b0bf9f
--- /dev/null
+++ b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+c98b5f6f4799b93c88b86545a71171683e4a032f
diff --git a/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.csproj.FileListAbsolute.txt b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.csproj.FileListAbsolute.txt
new file mode 100644
index 00000000..87a4127d
--- /dev/null
+++ b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.csproj.FileListAbsolute.txt
@@ -0,0 +1,12 @@
+C:\Users\polin\OneDrive\Рабочий стол\ExamClasses-main\CourseApp\bin\Debug\netcoreapp2.1\CourseApp.deps.json
+C:\Users\polin\OneDrive\Рабочий стол\ExamClasses-main\CourseApp\bin\Debug\netcoreapp2.1\CourseApp.runtimeconfig.json
+C:\Users\polin\OneDrive\Рабочий стол\ExamClasses-main\CourseApp\bin\Debug\netcoreapp2.1\CourseApp.runtimeconfig.dev.json
+C:\Users\polin\OneDrive\Рабочий стол\ExamClasses-main\CourseApp\bin\Debug\netcoreapp2.1\CourseApp.dll
+C:\Users\polin\OneDrive\Рабочий стол\ExamClasses-main\CourseApp\bin\Debug\netcoreapp2.1\CourseApp.pdb
+C:\Users\polin\OneDrive\Рабочий стол\ExamClasses-main\CourseApp\obj\Debug\netcoreapp2.1\CourseApp.csprojAssemblyReference.cache
+C:\Users\polin\OneDrive\Рабочий стол\ExamClasses-main\CourseApp\obj\Debug\netcoreapp2.1\CourseApp.AssemblyInfoInputs.cache
+C:\Users\polin\OneDrive\Рабочий стол\ExamClasses-main\CourseApp\obj\Debug\netcoreapp2.1\CourseApp.AssemblyInfo.cs
+C:\Users\polin\OneDrive\Рабочий стол\ExamClasses-main\CourseApp\obj\Debug\netcoreapp2.1\CourseApp.csproj.CoreCompileInputs.cache
+C:\Users\polin\OneDrive\Рабочий стол\ExamClasses-main\CourseApp\obj\Debug\netcoreapp2.1\CourseApp.dll
+C:\Users\polin\OneDrive\Рабочий стол\ExamClasses-main\CourseApp\obj\Debug\netcoreapp2.1\CourseApp.pdb
+C:\Users\polin\OneDrive\Рабочий стол\ExamClasses-main\CourseApp\obj\Debug\netcoreapp2.1\CourseApp.genruntimeconfig.cache
diff --git a/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.csprojAssemblyReference.cache b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.csprojAssemblyReference.cache
new file mode 100644
index 00000000..6794124f
Binary files /dev/null and b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.csprojAssemblyReference.cache differ
diff --git a/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.dll b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.dll
new file mode 100644
index 00000000..17ae1a8a
Binary files /dev/null and b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.dll differ
diff --git a/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.genruntimeconfig.cache b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.genruntimeconfig.cache
new file mode 100644
index 00000000..1600ed41
--- /dev/null
+++ b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.genruntimeconfig.cache
@@ -0,0 +1 @@
+9b2aec4fbdd1dedb875e520fe46430c42b75ccd9
diff --git a/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.pdb b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.pdb
new file mode 100644
index 00000000..87d92627
Binary files /dev/null and b/CourseApp/obj/Debug/netcoreapp2.1/CourseApp.pdb differ
diff --git a/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfo.cs b/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfo.cs
new file mode 100644
index 00000000..67b3f727
--- /dev/null
+++ b/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/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache b/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..79b7a7ed
--- /dev/null
+++ b/CourseApp/obj/Release/netcoreapp2.1/CourseApp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+0cb1106348572c39de2e248b3563e3e229348076
diff --git a/CourseApp/obj/Release/netcoreapp2.1/CourseApp.assets.cache b/CourseApp/obj/Release/netcoreapp2.1/CourseApp.assets.cache
new file mode 100644
index 00000000..f1ec7bd3
Binary files /dev/null and b/CourseApp/obj/Release/netcoreapp2.1/CourseApp.assets.cache differ
diff --git a/CourseApp/obj/project.assets.json b/CourseApp/obj/project.assets.json
new file mode 100644
index 00000000..061394c6
--- /dev/null
+++ b/CourseApp/obj/project.assets.json
@@ -0,0 +1,786 @@
+{
+ "version": 3,
+ "targets": {
+ ".NETCoreApp,Version=v2.1": {
+ "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/_._": {}
+ }
+ },
+ "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": {}
+ }
+ },
+ "StyleCop.Analyzers/1.1.118": {
+ "type": "package"
+ }
+ }
+ },
+ "libraries": {
+ "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"
+ ]
+ },
+ "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"
+ ]
+ },
+ "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"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ ".NETCoreApp,Version=v2.1": [
+ "Microsoft.NETCore.App >= 2.1.0",
+ "StyleCop.Analyzers >= 1.1.118"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\polin\\.nuget\\packages\\": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp\\CourseApp.csproj",
+ "projectName": "CourseApp",
+ "projectPath": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp\\CourseApp.csproj",
+ "packagesPath": "C:\\Users\\polin\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\polin\\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.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/CourseApp/obj/project.nuget.cache b/CourseApp/obj/project.nuget.cache
new file mode 100644
index 00000000..23e43b88
--- /dev/null
+++ b/CourseApp/obj/project.nuget.cache
@@ -0,0 +1,17 @@
+{
+ "version": 2,
+ "dgSpecHash": "55oRrCxk93puLUYDT4SbI0knwPHnwnuONtct2cOuaW4yZ+HRq22lbg7ZoILIoChZWx9nrDpBKDWUr0dbrbaOvQ==",
+ "success": true,
+ "projectFilePath": "C:\\Users\\polin\\OneDrive\\Рабочий стол\\ExamClasses-main\\CourseApp\\CourseApp.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.netcore.app\\2.1.0\\microsoft.netcore.app.2.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.netcore.dotnetapphost\\2.1.0\\microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.netcore.dotnethostpolicy\\2.1.0\\microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.netcore.dotnethostresolver\\2.1.0\\microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.0\\microsoft.netcore.platforms.2.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\microsoft.netcore.targets\\2.1.0\\microsoft.netcore.targets.2.1.0.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
+ "C:\\Users\\polin\\.nuget\\packages\\stylecop.analyzers\\1.1.118\\stylecop.analyzers.1.1.118.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/README.md b/README.md
index 12b7180d..8e189e4f 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1 @@
-# Tprogramming 2021
-
-Master branch :)
\ No newline at end of file
+# ExamClasses
\ No newline at end of file
diff --git a/TestCalc.cs b/TestCalc.cs
new file mode 100644
index 00000000..bdb4ace3
--- /dev/null
+++ b/TestCalc.cs
@@ -0,0 +1,69 @@
+namespace CourseApp.Tests
+{
+ using Xunit;
+
+ public class TestCalc
+ {
+ [Fact]
+ public void Test()
+ {
+ Assert.True(true);
+ }
+
+ [Fact]
+ public void TestIntSum()
+ {
+ int firstNumber = 2;
+ int secondNumber = 3;
+ int expected = 5;
+ var calc = new Calc();
+ var actual = calc.GetSum(firstNumber, secondNumber);
+ Assert.Equal(expected, actual);
+ }
+
+ [Fact]
+ public void TestDoubleSum()
+ {
+ double firstNumber = 2.1;
+ double secondNumber = 3.3;
+ double expected = 5.4;
+ var calc = new Calc();
+ 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 Calc();
+ 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 Calc();
+ var actual = calc.GetQuotient(firstNumber, secondNumber);
+ Assert.Equal(expected, actual);
+ }
+
+ [Fact]
+ public void TestDoubleQuotientNull()
+ {
+ double firstNumber = 5;
+ double secondNumber = 0;
+ double expected = 2.5;
+ var calc = new Calc();
+ var actual = calc.GetQuotient(firstNumber, secondNumber);
+
+ Assert.Equal(expected, actual);
+ }
+ }
+}
\ No newline at end of file
diff --git a/courseworkspace.code-workspace b/courseworkspace.code-workspace
index a24280d9..5002abd4 100644
--- a/courseworkspace.code-workspace
+++ b/courseworkspace.code-workspace
@@ -1,15 +1,15 @@
-{
- "folders": [
- {
- "path": "CourseApp"
- },
- {
- "path": "CourseApp.Tests"
- },
- {
- "name": "Configs (Root)",
- "path": "."
- },
- ],
- "settings": {}
+{
+ "folders": [
+ {
+ "path": "CourseApp"
+ },
+ {
+ "path": "CourseApp.Tests"
+ },
+ {
+ "name": "Configs (Root)",
+ "path": "."
+ },
+ ],
+ "settings": {}
}
\ No newline at end of file