diff --git a/palindrome/palindrome.test/PalindromeCheckerUnitTest.cs b/palindrome/palindrome.test/PalindromeCheckerUnitTest.cs
index b388e0a..0446826 100644
--- a/palindrome/palindrome.test/PalindromeCheckerUnitTest.cs
+++ b/palindrome/palindrome.test/PalindromeCheckerUnitTest.cs
@@ -78,6 +78,23 @@ public void IsPalindromeMultiCharacterTest()
Assert.IsTrue(a);
}
+ [TestMethod]
+ public void IsPalindromeMultiCharacterTest2()
+ {
+ // Arrange
+
+ // Note, it's so close to a palindrome, but not quite.
+ string myString = "tattarsattat";
+ PalindromeChecker p = new PalindromeChecker();
+
+ // Act
+ bool a = p.IsPalindrome(myString);
+
+ // Assert
+ Assert.IsFalse(a);
+ }
+
+
[TestMethod]
public void IsPalindromeNullTest()
{
diff --git a/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.Program.cs b/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.Program.cs
deleted file mode 100644
index 975e92d..0000000
Binary files a/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.Program.cs and /dev/null differ
diff --git a/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.csproj.FileListAbsolute.txt b/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.csproj.FileListAbsolute.txt
deleted file mode 100644
index db34ea5..0000000
--- a/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,49 +0,0 @@
-/Users/joshua/Desktop/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
-/Users/joshua/Desktop/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
-/Users/joshua/Desktop/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
-/Users/joshua/Desktop/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.test.deps.json
-/Users/joshua/Desktop/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.test.runtimeconfig.json
-/Users/joshua/Desktop/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.test.runtimeconfig.dev.json
-/Users/joshua/Desktop/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.test.dll
-/Users/joshua/Desktop/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.test.pdb
-/Users/joshua/Desktop/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.dll
-/Users/joshua/Desktop/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.pdb
-/Users/joshua/Desktop/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.csprojResolveAssemblyReference.cache
-/Users/joshua/Desktop/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.csproj.CoreCompileInputs.cache
-/Users/joshua/Desktop/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.AssemblyInfoInputs.cache
-/Users/joshua/Desktop/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.AssemblyInfo.cs
-/Users/joshua/Desktop/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.dll
-/Users/joshua/Desktop/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.pdb
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.test.deps.json
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.test.runtimeconfig.json
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.test.runtimeconfig.dev.json
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.test.dll
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.test.pdb
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.dll
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.pdb
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.csprojResolveAssemblyReference.cache
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.csproj.CoreCompileInputs.cache
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.AssemblyInfoInputs.cache
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.AssemblyInfo.cs
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.csproj.CopyComplete
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.dll
-C:/Git/intern/Coding-Challenges/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.pdb
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.test.deps.json
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.test.runtimeconfig.json
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.test.runtimeconfig.dev.json
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.test.dll
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.test.pdb
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.dll
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/bin/Debug/netcoreapp2.0/palindrome.pdb
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.csprojResolveAssemblyReference.cache
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.csproj.CoreCompileInputs.cache
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.AssemblyInfoInputs.cache
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.AssemblyInfo.cs
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.dll
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/obj/Debug/netcoreapp2.0/palindrome.test.pdb
diff --git a/palindrome/palindrome.test/obj/palindrome.test.csproj.nuget.cache b/palindrome/palindrome.test/obj/palindrome.test.csproj.nuget.cache
deleted file mode 100644
index 64f76b9..0000000
--- a/palindrome/palindrome.test/obj/palindrome.test.csproj.nuget.cache
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "version": 1,
- "dgSpecHash": "DuklMgGyu+o1Vx8+Q8hNHX4qp/7NF7XT8WMQF9Mu5mn1bjNAzUzUzYSTB2J2aFCb30KiJXNAI+Q3jAR4WBld3w==",
- "success": true
-}
\ No newline at end of file
diff --git a/palindrome/palindrome.test/obj/palindrome.test.csproj.nuget.g.props b/palindrome/palindrome.test/obj/palindrome.test.csproj.nuget.g.props
deleted file mode 100644
index 7acc19e..0000000
--- a/palindrome/palindrome.test/obj/palindrome.test.csproj.nuget.g.props
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
- True
- NuGet
- /Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/obj/project.assets.json
- /Users/joshua/.nuget/packages/
- /Users/joshua/.nuget/packages/;/usr/local/share/dotnet/sdk/NuGetFallbackFolder
- PackageReference
- 4.3.1
-
-
- $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/palindrome/palindrome.test/obj/palindrome.test.csproj.nuget.g.targets b/palindrome/palindrome.test/obj/palindrome.test.csproj.nuget.g.targets
deleted file mode 100644
index 248abce..0000000
--- a/palindrome/palindrome.test/obj/palindrome.test.csproj.nuget.g.targets
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/palindrome/palindrome.test/obj/project.assets.json b/palindrome/palindrome.test/obj/project.assets.json
deleted file mode 100644
index 506d592..0000000
--- a/palindrome/palindrome.test/obj/project.assets.json
+++ /dev/null
@@ -1,5782 +0,0 @@
-{
- "version": 3,
- "targets": {
- ".NETCoreApp,Version=v2.0": {
- "Microsoft.CodeCoverage/1.0.3": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
- }
- },
- "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.6.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeCoverage": "1.0.3",
- "Microsoft.TestPlatform.TestHost": "15.6.1"
- },
- "build": {
- "build/netcoreapp1.0/Microsoft.Net.Test.Sdk.props": {},
- "build/netcoreapp1.0/Microsoft.Net.Test.Sdk.targets": {}
- },
- "buildMultiTargeting": {
- "buildMultiTargeting/Microsoft.Net.Test.Sdk.props": {}
- }
- },
- "Microsoft.NETCore.App/2.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.DotNetHostPolicy": "2.0.0",
- "Microsoft.NETCore.Platforms": "2.0.0",
- "NETStandard.Library": "2.0.0"
- },
- "compile": {
- "ref/netcoreapp2.0/Microsoft.CSharp.dll": {},
- "ref/netcoreapp2.0/Microsoft.VisualBasic.dll": {},
- "ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll": {},
- "ref/netcoreapp2.0/System.AppContext.dll": {},
- "ref/netcoreapp2.0/System.Buffers.dll": {},
- "ref/netcoreapp2.0/System.Collections.Concurrent.dll": {},
- "ref/netcoreapp2.0/System.Collections.Immutable.dll": {},
- "ref/netcoreapp2.0/System.Collections.NonGeneric.dll": {},
- "ref/netcoreapp2.0/System.Collections.Specialized.dll": {},
- "ref/netcoreapp2.0/System.Collections.dll": {},
- "ref/netcoreapp2.0/System.ComponentModel.Annotations.dll": {},
- "ref/netcoreapp2.0/System.ComponentModel.Composition.dll": {},
- "ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll": {},
- "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll": {},
- "ref/netcoreapp2.0/System.ComponentModel.Primitives.dll": {},
- "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll": {},
- "ref/netcoreapp2.0/System.ComponentModel.dll": {},
- "ref/netcoreapp2.0/System.Configuration.dll": {},
- "ref/netcoreapp2.0/System.Console.dll": {},
- "ref/netcoreapp2.0/System.Core.dll": {},
- "ref/netcoreapp2.0/System.Data.Common.dll": {},
- "ref/netcoreapp2.0/System.Data.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.Contracts.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.Debug.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.Process.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.Tools.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.Tracing.dll": {},
- "ref/netcoreapp2.0/System.Drawing.Primitives.dll": {},
- "ref/netcoreapp2.0/System.Drawing.dll": {},
- "ref/netcoreapp2.0/System.Dynamic.Runtime.dll": {},
- "ref/netcoreapp2.0/System.Globalization.Calendars.dll": {},
- "ref/netcoreapp2.0/System.Globalization.Extensions.dll": {},
- "ref/netcoreapp2.0/System.Globalization.dll": {},
- "ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll": {},
- "ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll": {},
- "ref/netcoreapp2.0/System.IO.Compression.dll": {},
- "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll": {},
- "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll": {},
- "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll": {},
- "ref/netcoreapp2.0/System.IO.FileSystem.dll": {},
- "ref/netcoreapp2.0/System.IO.IsolatedStorage.dll": {},
- "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll": {},
- "ref/netcoreapp2.0/System.IO.Pipes.dll": {},
- "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll": {},
- "ref/netcoreapp2.0/System.IO.dll": {},
- "ref/netcoreapp2.0/System.Linq.Expressions.dll": {},
- "ref/netcoreapp2.0/System.Linq.Parallel.dll": {},
- "ref/netcoreapp2.0/System.Linq.Queryable.dll": {},
- "ref/netcoreapp2.0/System.Linq.dll": {},
- "ref/netcoreapp2.0/System.Net.Http.dll": {},
- "ref/netcoreapp2.0/System.Net.HttpListener.dll": {},
- "ref/netcoreapp2.0/System.Net.Mail.dll": {},
- "ref/netcoreapp2.0/System.Net.NameResolution.dll": {},
- "ref/netcoreapp2.0/System.Net.NetworkInformation.dll": {},
- "ref/netcoreapp2.0/System.Net.Ping.dll": {},
- "ref/netcoreapp2.0/System.Net.Primitives.dll": {},
- "ref/netcoreapp2.0/System.Net.Requests.dll": {},
- "ref/netcoreapp2.0/System.Net.Security.dll": {},
- "ref/netcoreapp2.0/System.Net.ServicePoint.dll": {},
- "ref/netcoreapp2.0/System.Net.Sockets.dll": {},
- "ref/netcoreapp2.0/System.Net.WebClient.dll": {},
- "ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll": {},
- "ref/netcoreapp2.0/System.Net.WebProxy.dll": {},
- "ref/netcoreapp2.0/System.Net.WebSockets.Client.dll": {},
- "ref/netcoreapp2.0/System.Net.WebSockets.dll": {},
- "ref/netcoreapp2.0/System.Net.dll": {},
- "ref/netcoreapp2.0/System.Numerics.Vectors.dll": {},
- "ref/netcoreapp2.0/System.Numerics.dll": {},
- "ref/netcoreapp2.0/System.ObjectModel.dll": {},
- "ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {},
- "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll": {},
- "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll": {},
- "ref/netcoreapp2.0/System.Reflection.Emit.dll": {},
- "ref/netcoreapp2.0/System.Reflection.Extensions.dll": {},
- "ref/netcoreapp2.0/System.Reflection.Metadata.dll": {},
- "ref/netcoreapp2.0/System.Reflection.Primitives.dll": {},
- "ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll": {},
- "ref/netcoreapp2.0/System.Reflection.dll": {},
- "ref/netcoreapp2.0/System.Resources.Reader.dll": {},
- "ref/netcoreapp2.0/System.Resources.ResourceManager.dll": {},
- "ref/netcoreapp2.0/System.Resources.Writer.dll": {},
- "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Extensions.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Handles.dll": {},
- "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll": {},
- "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll": {},
- "ref/netcoreapp2.0/System.Runtime.InteropServices.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Loader.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Numerics.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Serialization.dll": {},
- "ref/netcoreapp2.0/System.Runtime.dll": {},
- "ref/netcoreapp2.0/System.Security.Claims.dll": {},
- "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll": {},
- "ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll": {},
- "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll": {},
- "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll": {},
- "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll": {},
- "ref/netcoreapp2.0/System.Security.Principal.dll": {},
- "ref/netcoreapp2.0/System.Security.SecureString.dll": {},
- "ref/netcoreapp2.0/System.Security.dll": {},
- "ref/netcoreapp2.0/System.ServiceModel.Web.dll": {},
- "ref/netcoreapp2.0/System.ServiceProcess.dll": {},
- "ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll": {},
- "ref/netcoreapp2.0/System.Text.Encoding.dll": {},
- "ref/netcoreapp2.0/System.Text.RegularExpressions.dll": {},
- "ref/netcoreapp2.0/System.Threading.Overlapped.dll": {},
- "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll": {},
- "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll": {},
- "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll": {},
- "ref/netcoreapp2.0/System.Threading.Tasks.dll": {},
- "ref/netcoreapp2.0/System.Threading.Thread.dll": {},
- "ref/netcoreapp2.0/System.Threading.ThreadPool.dll": {},
- "ref/netcoreapp2.0/System.Threading.Timer.dll": {},
- "ref/netcoreapp2.0/System.Threading.dll": {},
- "ref/netcoreapp2.0/System.Transactions.Local.dll": {},
- "ref/netcoreapp2.0/System.Transactions.dll": {},
- "ref/netcoreapp2.0/System.ValueTuple.dll": {},
- "ref/netcoreapp2.0/System.Web.HttpUtility.dll": {},
- "ref/netcoreapp2.0/System.Web.dll": {},
- "ref/netcoreapp2.0/System.Windows.dll": {},
- "ref/netcoreapp2.0/System.Xml.Linq.dll": {},
- "ref/netcoreapp2.0/System.Xml.ReaderWriter.dll": {},
- "ref/netcoreapp2.0/System.Xml.Serialization.dll": {},
- "ref/netcoreapp2.0/System.Xml.XDocument.dll": {},
- "ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll": {},
- "ref/netcoreapp2.0/System.Xml.XPath.dll": {},
- "ref/netcoreapp2.0/System.Xml.XmlDocument.dll": {},
- "ref/netcoreapp2.0/System.Xml.XmlSerializer.dll": {},
- "ref/netcoreapp2.0/System.Xml.dll": {},
- "ref/netcoreapp2.0/System.dll": {},
- "ref/netcoreapp2.0/WindowsBase.dll": {},
- "ref/netcoreapp2.0/mscorlib.dll": {},
- "ref/netcoreapp2.0/netstandard.dll": {}
- },
- "build": {
- "build/netcoreapp2.0/Microsoft.NETCore.App.props": {},
- "build/netcoreapp2.0/Microsoft.NETCore.App.targets": {}
- }
- },
- "Microsoft.NETCore.DotNetAppHost/2.0.0": {
- "type": "package"
- },
- "Microsoft.NETCore.DotNetHostPolicy/2.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.DotNetHostResolver": "2.0.0"
- }
- },
- "Microsoft.NETCore.DotNetHostResolver/2.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.DotNetAppHost": "2.0.0"
- }
- },
- "Microsoft.NETCore.Platforms/2.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.TestPlatform.ObjectModel/15.6.1": {
- "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.6.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyModel": "1.0.3",
- "Microsoft.TestPlatform.ObjectModel": "15.6.1",
- "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"
- }
- }
- },
- "MSTest.TestAdapter/1.2.0": {
- "type": "package",
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "System.Diagnostics.TextWriterTraceListener": "4.3.0"
- },
- "build": {
- "build/netcoreapp1.0/MSTest.TestAdapter.props": {}
- }
- },
- "MSTest.TestFramework/1.2.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {},
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {},
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {}
- }
- },
- "NETStandard.Library/2.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- },
- "build": {
- "build/netstandard2.0/NETStandard.Library.targets": {}
- }
- },
- "Newtonsoft.Json/9.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
- },
- "compile": {
- "lib/netstandard1.0/Newtonsoft.Json.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/Newtonsoft.Json.dll": {}
- }
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "System.AppContext/4.1.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.6/System.AppContext.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.AppContext.dll": {}
- }
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.dll": {}
- }
- },
- "System.Collections.Concurrent/4.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.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
- }
- },
- "System.Diagnostics.Process/4.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.3.0": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.TraceSource": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
- }
- },
- "System.Diagnostics.Tools/4.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.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Diagnostics.Tracing/4.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.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Globalization.dll": {}
- }
- },
- "System.Globalization.Extensions/4.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.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.IO.dll": {}
- }
- },
- "System.IO.FileSystem/4.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.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Reflection.dll": {}
- }
- },
- "System.Reflection.Emit/4.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.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
- }
- },
- "System.Reflection.TypeExtensions/4.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.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
- }
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.dll": {}
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
- }
- },
- "System.Runtime.Handles/4.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.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {}
- }
- },
- "System.Text.Encoding.Extensions/4.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.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.dll": {}
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.Tasks.dll": {}
- }
- },
- "System.Threading.Tasks.Extensions/4.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": {}
- }
- },
- "palindrome/1.0.0": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v2.0",
- "compile": {
- "bin/placeholder/palindrome.dll": {}
- },
- "runtime": {
- "bin/placeholder/palindrome.dll": {}
- }
- }
- }
- },
- "libraries": {
- "Microsoft.CodeCoverage/1.0.3": {
- "sha512": "5KfX12XPfvBomjrZv9nCBfQ6lhZdroVxXvGnY6MqzG83bjqdq6SQ3xxJFdPgHv6oli83M9oNhZlynYehjmboUg==",
- "type": "package",
- "path": "microsoft.codecoverage/1.0.3",
- "files": [
- "lib/netstandard1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
- "microsoft.codecoverage.1.0.3.nupkg.sha512",
- "microsoft.codecoverage.nuspec"
- ]
- },
- "Microsoft.CSharp/4.0.1": {
- "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
- "type": "package",
- "path": "microsoft.csharp/4.0.1",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/Microsoft.CSharp.dll",
- "lib/netstandard1.3/Microsoft.CSharp.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "microsoft.csharp.4.0.1.nupkg.sha512",
- "microsoft.csharp.nuspec",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/Microsoft.CSharp.dll",
- "ref/netcore50/Microsoft.CSharp.xml",
- "ref/netcore50/de/Microsoft.CSharp.xml",
- "ref/netcore50/es/Microsoft.CSharp.xml",
- "ref/netcore50/fr/Microsoft.CSharp.xml",
- "ref/netcore50/it/Microsoft.CSharp.xml",
- "ref/netcore50/ja/Microsoft.CSharp.xml",
- "ref/netcore50/ko/Microsoft.CSharp.xml",
- "ref/netcore50/ru/Microsoft.CSharp.xml",
- "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
- "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
- "ref/netstandard1.0/Microsoft.CSharp.dll",
- "ref/netstandard1.0/Microsoft.CSharp.xml",
- "ref/netstandard1.0/de/Microsoft.CSharp.xml",
- "ref/netstandard1.0/es/Microsoft.CSharp.xml",
- "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
- "ref/netstandard1.0/it/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
- "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
- "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "Microsoft.DotNet.PlatformAbstractions/1.0.3": {
- "sha512": "rF92Gp5L2asYrFNf0cKNBxzzGLh1krHuj6TRDk9wdjN2qdvJLaNYOn1s9oYkMlptYX436KiEFqxhLB+I5veXvQ==",
- "type": "package",
- "path": "microsoft.dotnet.platformabstractions/1.0.3",
- "files": [
- "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": [
- "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.6.1": {
- "sha512": "K2AZ+uRGm8ttYzWm+fdA/jIiLp8bh/63D/KcDNdJ0MbKDmu0FUoit8OLTOmtoJRUMzP/+kRFwGg0qxqI/p8ugQ==",
- "type": "package",
- "path": "microsoft.net.test.sdk/15.6.1",
- "files": [
- "build/net45/Microsoft.Net.Test.Sdk.props",
- "build/net45/Microsoft.Net.Test.Sdk.targets",
- "build/netcoreapp1.0/Microsoft.Net.Test.Sdk.props",
- "build/netcoreapp1.0/Microsoft.Net.Test.Sdk.targets",
- "build/uap10.0/Microsoft.Net.Test.Sdk.props",
- "buildMultiTargeting/Microsoft.Net.Test.Sdk.props",
- "microsoft.net.test.sdk.15.6.1.nupkg.sha512",
- "microsoft.net.test.sdk.nuspec"
- ]
- },
- "Microsoft.NETCore.App/2.0.0": {
- "sha512": "/mzXF+UtZef+VpzzN88EpvFq5U6z4rj54ZMq/J968H6pcvyLOmcupmTRpJ3CJm8ILoCGh9WI7qpDdiKtuzswrQ==",
- "type": "package",
- "path": "microsoft.netcore.app/2.0.0",
- "files": [
- "LICENSE.TXT",
- "Microsoft.NETCore.App.versions.txt",
- "THIRD-PARTY-NOTICES.TXT",
- "build/netcoreapp2.0/Microsoft.NETCore.App.PlatformManifest.txt",
- "build/netcoreapp2.0/Microsoft.NETCore.App.props",
- "build/netcoreapp2.0/Microsoft.NETCore.App.targets",
- "microsoft.netcore.app.2.0.0.nupkg.sha512",
- "microsoft.netcore.app.nuspec",
- "ref/netcoreapp/_._",
- "ref/netcoreapp2.0/Microsoft.CSharp.dll",
- "ref/netcoreapp2.0/Microsoft.CSharp.xml",
- "ref/netcoreapp2.0/Microsoft.VisualBasic.dll",
- "ref/netcoreapp2.0/Microsoft.VisualBasic.xml",
- "ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll",
- "ref/netcoreapp2.0/Microsoft.Win32.Primitives.xml",
- "ref/netcoreapp2.0/System.AppContext.dll",
- "ref/netcoreapp2.0/System.AppContext.xml",
- "ref/netcoreapp2.0/System.Buffers.dll",
- "ref/netcoreapp2.0/System.Buffers.xml",
- "ref/netcoreapp2.0/System.Collections.Concurrent.dll",
- "ref/netcoreapp2.0/System.Collections.Concurrent.xml",
- "ref/netcoreapp2.0/System.Collections.Immutable.dll",
- "ref/netcoreapp2.0/System.Collections.Immutable.xml",
- "ref/netcoreapp2.0/System.Collections.NonGeneric.dll",
- "ref/netcoreapp2.0/System.Collections.NonGeneric.xml",
- "ref/netcoreapp2.0/System.Collections.Specialized.dll",
- "ref/netcoreapp2.0/System.Collections.Specialized.xml",
- "ref/netcoreapp2.0/System.Collections.dll",
- "ref/netcoreapp2.0/System.Collections.xml",
- "ref/netcoreapp2.0/System.ComponentModel.Annotations.dll",
- "ref/netcoreapp2.0/System.ComponentModel.Annotations.xml",
- "ref/netcoreapp2.0/System.ComponentModel.Composition.dll",
- "ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll",
- "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll",
- "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.xml",
- "ref/netcoreapp2.0/System.ComponentModel.Primitives.dll",
- "ref/netcoreapp2.0/System.ComponentModel.Primitives.xml",
- "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll",
- "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.xml",
- "ref/netcoreapp2.0/System.ComponentModel.dll",
- "ref/netcoreapp2.0/System.ComponentModel.xml",
- "ref/netcoreapp2.0/System.Configuration.dll",
- "ref/netcoreapp2.0/System.Console.dll",
- "ref/netcoreapp2.0/System.Console.xml",
- "ref/netcoreapp2.0/System.Core.dll",
- "ref/netcoreapp2.0/System.Data.Common.dll",
- "ref/netcoreapp2.0/System.Data.Common.xml",
- "ref/netcoreapp2.0/System.Data.dll",
- "ref/netcoreapp2.0/System.Diagnostics.Contracts.dll",
- "ref/netcoreapp2.0/System.Diagnostics.Contracts.xml",
- "ref/netcoreapp2.0/System.Diagnostics.Debug.dll",
- "ref/netcoreapp2.0/System.Diagnostics.Debug.xml",
- "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll",
- "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.xml",
- "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll",
- "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.xml",
- "ref/netcoreapp2.0/System.Diagnostics.Process.dll",
- "ref/netcoreapp2.0/System.Diagnostics.Process.xml",
- "ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll",
- "ref/netcoreapp2.0/System.Diagnostics.StackTrace.xml",
- "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll",
- "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netcoreapp2.0/System.Diagnostics.Tools.dll",
- "ref/netcoreapp2.0/System.Diagnostics.Tools.xml",
- "ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll",
- "ref/netcoreapp2.0/System.Diagnostics.TraceSource.xml",
- "ref/netcoreapp2.0/System.Diagnostics.Tracing.dll",
- "ref/netcoreapp2.0/System.Diagnostics.Tracing.xml",
- "ref/netcoreapp2.0/System.Drawing.Primitives.dll",
- "ref/netcoreapp2.0/System.Drawing.Primitives.xml",
- "ref/netcoreapp2.0/System.Drawing.dll",
- "ref/netcoreapp2.0/System.Dynamic.Runtime.dll",
- "ref/netcoreapp2.0/System.Dynamic.Runtime.xml",
- "ref/netcoreapp2.0/System.Globalization.Calendars.dll",
- "ref/netcoreapp2.0/System.Globalization.Calendars.xml",
- "ref/netcoreapp2.0/System.Globalization.Extensions.dll",
- "ref/netcoreapp2.0/System.Globalization.Extensions.xml",
- "ref/netcoreapp2.0/System.Globalization.dll",
- "ref/netcoreapp2.0/System.Globalization.xml",
- "ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll",
- "ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll",
- "ref/netcoreapp2.0/System.IO.Compression.ZipFile.xml",
- "ref/netcoreapp2.0/System.IO.Compression.dll",
- "ref/netcoreapp2.0/System.IO.Compression.xml",
- "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll",
- "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.xml",
- "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll",
- "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.xml",
- "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll",
- "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.xml",
- "ref/netcoreapp2.0/System.IO.FileSystem.dll",
- "ref/netcoreapp2.0/System.IO.FileSystem.xml",
- "ref/netcoreapp2.0/System.IO.IsolatedStorage.dll",
- "ref/netcoreapp2.0/System.IO.IsolatedStorage.xml",
- "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll",
- "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.xml",
- "ref/netcoreapp2.0/System.IO.Pipes.dll",
- "ref/netcoreapp2.0/System.IO.Pipes.xml",
- "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll",
- "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.xml",
- "ref/netcoreapp2.0/System.IO.dll",
- "ref/netcoreapp2.0/System.IO.xml",
- "ref/netcoreapp2.0/System.Linq.Expressions.dll",
- "ref/netcoreapp2.0/System.Linq.Expressions.xml",
- "ref/netcoreapp2.0/System.Linq.Parallel.dll",
- "ref/netcoreapp2.0/System.Linq.Parallel.xml",
- "ref/netcoreapp2.0/System.Linq.Queryable.dll",
- "ref/netcoreapp2.0/System.Linq.Queryable.xml",
- "ref/netcoreapp2.0/System.Linq.dll",
- "ref/netcoreapp2.0/System.Linq.xml",
- "ref/netcoreapp2.0/System.Net.Http.dll",
- "ref/netcoreapp2.0/System.Net.Http.xml",
- "ref/netcoreapp2.0/System.Net.HttpListener.dll",
- "ref/netcoreapp2.0/System.Net.HttpListener.xml",
- "ref/netcoreapp2.0/System.Net.Mail.dll",
- "ref/netcoreapp2.0/System.Net.Mail.xml",
- "ref/netcoreapp2.0/System.Net.NameResolution.dll",
- "ref/netcoreapp2.0/System.Net.NameResolution.xml",
- "ref/netcoreapp2.0/System.Net.NetworkInformation.dll",
- "ref/netcoreapp2.0/System.Net.NetworkInformation.xml",
- "ref/netcoreapp2.0/System.Net.Ping.dll",
- "ref/netcoreapp2.0/System.Net.Ping.xml",
- "ref/netcoreapp2.0/System.Net.Primitives.dll",
- "ref/netcoreapp2.0/System.Net.Primitives.xml",
- "ref/netcoreapp2.0/System.Net.Requests.dll",
- "ref/netcoreapp2.0/System.Net.Requests.xml",
- "ref/netcoreapp2.0/System.Net.Security.dll",
- "ref/netcoreapp2.0/System.Net.Security.xml",
- "ref/netcoreapp2.0/System.Net.ServicePoint.dll",
- "ref/netcoreapp2.0/System.Net.ServicePoint.xml",
- "ref/netcoreapp2.0/System.Net.Sockets.dll",
- "ref/netcoreapp2.0/System.Net.Sockets.xml",
- "ref/netcoreapp2.0/System.Net.WebClient.dll",
- "ref/netcoreapp2.0/System.Net.WebClient.xml",
- "ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll",
- "ref/netcoreapp2.0/System.Net.WebHeaderCollection.xml",
- "ref/netcoreapp2.0/System.Net.WebProxy.dll",
- "ref/netcoreapp2.0/System.Net.WebProxy.xml",
- "ref/netcoreapp2.0/System.Net.WebSockets.Client.dll",
- "ref/netcoreapp2.0/System.Net.WebSockets.Client.xml",
- "ref/netcoreapp2.0/System.Net.WebSockets.dll",
- "ref/netcoreapp2.0/System.Net.WebSockets.xml",
- "ref/netcoreapp2.0/System.Net.dll",
- "ref/netcoreapp2.0/System.Numerics.Vectors.dll",
- "ref/netcoreapp2.0/System.Numerics.Vectors.xml",
- "ref/netcoreapp2.0/System.Numerics.dll",
- "ref/netcoreapp2.0/System.ObjectModel.dll",
- "ref/netcoreapp2.0/System.ObjectModel.xml",
- "ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll",
- "ref/netcoreapp2.0/System.Reflection.DispatchProxy.xml",
- "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll",
- "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.xml",
- "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll",
- "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.xml",
- "ref/netcoreapp2.0/System.Reflection.Emit.dll",
- "ref/netcoreapp2.0/System.Reflection.Emit.xml",
- "ref/netcoreapp2.0/System.Reflection.Extensions.dll",
- "ref/netcoreapp2.0/System.Reflection.Extensions.xml",
- "ref/netcoreapp2.0/System.Reflection.Metadata.dll",
- "ref/netcoreapp2.0/System.Reflection.Metadata.xml",
- "ref/netcoreapp2.0/System.Reflection.Primitives.dll",
- "ref/netcoreapp2.0/System.Reflection.Primitives.xml",
- "ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll",
- "ref/netcoreapp2.0/System.Reflection.TypeExtensions.xml",
- "ref/netcoreapp2.0/System.Reflection.dll",
- "ref/netcoreapp2.0/System.Reflection.xml",
- "ref/netcoreapp2.0/System.Resources.Reader.dll",
- "ref/netcoreapp2.0/System.Resources.Reader.xml",
- "ref/netcoreapp2.0/System.Resources.ResourceManager.dll",
- "ref/netcoreapp2.0/System.Resources.ResourceManager.xml",
- "ref/netcoreapp2.0/System.Resources.Writer.dll",
- "ref/netcoreapp2.0/System.Resources.Writer.xml",
- "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll",
- "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.xml",
- "ref/netcoreapp2.0/System.Runtime.Extensions.dll",
- "ref/netcoreapp2.0/System.Runtime.Extensions.xml",
- "ref/netcoreapp2.0/System.Runtime.Handles.dll",
- "ref/netcoreapp2.0/System.Runtime.Handles.xml",
- "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll",
- "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.xml",
- "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll",
- "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.xml",
- "ref/netcoreapp2.0/System.Runtime.InteropServices.dll",
- "ref/netcoreapp2.0/System.Runtime.InteropServices.xml",
- "ref/netcoreapp2.0/System.Runtime.Loader.dll",
- "ref/netcoreapp2.0/System.Runtime.Loader.xml",
- "ref/netcoreapp2.0/System.Runtime.Numerics.dll",
- "ref/netcoreapp2.0/System.Runtime.Numerics.xml",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.xml",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Json.xml",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.xml",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.xml",
- "ref/netcoreapp2.0/System.Runtime.Serialization.dll",
- "ref/netcoreapp2.0/System.Runtime.dll",
- "ref/netcoreapp2.0/System.Runtime.xml",
- "ref/netcoreapp2.0/System.Security.Claims.dll",
- "ref/netcoreapp2.0/System.Security.Claims.xml",
- "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll",
- "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.xml",
- "ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll",
- "ref/netcoreapp2.0/System.Security.Cryptography.Csp.xml",
- "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll",
- "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.xml",
- "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll",
- "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.xml",
- "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll",
- "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.xml",
- "ref/netcoreapp2.0/System.Security.Principal.dll",
- "ref/netcoreapp2.0/System.Security.Principal.xml",
- "ref/netcoreapp2.0/System.Security.SecureString.dll",
- "ref/netcoreapp2.0/System.Security.SecureString.xml",
- "ref/netcoreapp2.0/System.Security.dll",
- "ref/netcoreapp2.0/System.ServiceModel.Web.dll",
- "ref/netcoreapp2.0/System.ServiceProcess.dll",
- "ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll",
- "ref/netcoreapp2.0/System.Text.Encoding.Extensions.xml",
- "ref/netcoreapp2.0/System.Text.Encoding.dll",
- "ref/netcoreapp2.0/System.Text.Encoding.xml",
- "ref/netcoreapp2.0/System.Text.RegularExpressions.dll",
- "ref/netcoreapp2.0/System.Text.RegularExpressions.xml",
- "ref/netcoreapp2.0/System.Threading.Overlapped.dll",
- "ref/netcoreapp2.0/System.Threading.Overlapped.xml",
- "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll",
- "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.xml",
- "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll",
- "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.xml",
- "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll",
- "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.xml",
- "ref/netcoreapp2.0/System.Threading.Tasks.dll",
- "ref/netcoreapp2.0/System.Threading.Tasks.xml",
- "ref/netcoreapp2.0/System.Threading.Thread.dll",
- "ref/netcoreapp2.0/System.Threading.Thread.xml",
- "ref/netcoreapp2.0/System.Threading.ThreadPool.dll",
- "ref/netcoreapp2.0/System.Threading.ThreadPool.xml",
- "ref/netcoreapp2.0/System.Threading.Timer.dll",
- "ref/netcoreapp2.0/System.Threading.Timer.xml",
- "ref/netcoreapp2.0/System.Threading.dll",
- "ref/netcoreapp2.0/System.Threading.xml",
- "ref/netcoreapp2.0/System.Transactions.Local.dll",
- "ref/netcoreapp2.0/System.Transactions.Local.xml",
- "ref/netcoreapp2.0/System.Transactions.dll",
- "ref/netcoreapp2.0/System.ValueTuple.dll",
- "ref/netcoreapp2.0/System.ValueTuple.xml",
- "ref/netcoreapp2.0/System.Web.HttpUtility.dll",
- "ref/netcoreapp2.0/System.Web.HttpUtility.xml",
- "ref/netcoreapp2.0/System.Web.dll",
- "ref/netcoreapp2.0/System.Windows.dll",
- "ref/netcoreapp2.0/System.Xml.Linq.dll",
- "ref/netcoreapp2.0/System.Xml.ReaderWriter.dll",
- "ref/netcoreapp2.0/System.Xml.ReaderWriter.xml",
- "ref/netcoreapp2.0/System.Xml.Serialization.dll",
- "ref/netcoreapp2.0/System.Xml.XDocument.dll",
- "ref/netcoreapp2.0/System.Xml.XDocument.xml",
- "ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll",
- "ref/netcoreapp2.0/System.Xml.XPath.XDocument.xml",
- "ref/netcoreapp2.0/System.Xml.XPath.dll",
- "ref/netcoreapp2.0/System.Xml.XPath.xml",
- "ref/netcoreapp2.0/System.Xml.XmlDocument.dll",
- "ref/netcoreapp2.0/System.Xml.XmlDocument.xml",
- "ref/netcoreapp2.0/System.Xml.XmlSerializer.dll",
- "ref/netcoreapp2.0/System.Xml.XmlSerializer.xml",
- "ref/netcoreapp2.0/System.Xml.dll",
- "ref/netcoreapp2.0/System.dll",
- "ref/netcoreapp2.0/WindowsBase.dll",
- "ref/netcoreapp2.0/mscorlib.dll",
- "ref/netcoreapp2.0/netstandard.dll",
- "runtime.json"
- ]
- },
- "Microsoft.NETCore.DotNetAppHost/2.0.0": {
- "sha512": "L4GGkcI/Mxl8PKLRpFdGmLb5oI8sGIR05bDTGkzCoamAjdUl1Zhkov2swjEsZvKYT8kkdiz39LtwyGYuCJxm1A==",
- "type": "package",
- "path": "microsoft.netcore.dotnetapphost/2.0.0",
- "files": [
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "microsoft.netcore.dotnetapphost.2.0.0.nupkg.sha512",
- "microsoft.netcore.dotnetapphost.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.NETCore.DotNetHostPolicy/2.0.0": {
- "sha512": "rm7mMn0A93fwyAwVhbyOCcPuu2hZNL0A0dAur9sNG9pEkONPfCEQeF7m2mC8KpqZO0Ol6tpV5J0AF3HTXT3GXA==",
- "type": "package",
- "path": "microsoft.netcore.dotnethostpolicy/2.0.0",
- "files": [
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "microsoft.netcore.dotnethostpolicy.2.0.0.nupkg.sha512",
- "microsoft.netcore.dotnethostpolicy.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.NETCore.DotNetHostResolver/2.0.0": {
- "sha512": "uBbjpeSrwsaTCADZCzRk+3aBzNnMqkC4zftJWBsL+Zk+8u+W+/lMb2thM5Y4hiVrv1YQg9t6dKldXzOKkY+pQw==",
- "type": "package",
- "path": "microsoft.netcore.dotnethostresolver/2.0.0",
- "files": [
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "microsoft.netcore.dotnethostresolver.2.0.0.nupkg.sha512",
- "microsoft.netcore.dotnethostresolver.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.NETCore.Platforms/2.0.0": {
- "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
- "type": "package",
- "path": "microsoft.netcore.platforms/2.0.0",
- "files": [
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.platforms.2.0.0.nupkg.sha512",
- "microsoft.netcore.platforms.nuspec",
- "runtime.json",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "type": "package",
- "path": "microsoft.netcore.targets/1.1.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "microsoft.netcore.targets.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.TestPlatform.ObjectModel/15.6.1": {
- "sha512": "HJj5ZxGrr5o6f7fQQZNxqz1JH116W1TZTrzAEOSN5WWmu0gdBIhFC8RL4lw+R7FY9N6tUOf5KDlH7+bZtHwD/A==",
- "type": "package",
- "path": "microsoft.testplatform.objectmodel/15.6.1",
- "files": [
- "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.6.1.nupkg.sha512",
- "microsoft.testplatform.objectmodel.nuspec"
- ]
- },
- "Microsoft.TestPlatform.TestHost/15.6.1": {
- "sha512": "DK3JygY+7uYKK0fPS4EPauC9v3Lvp9NvoYPIgG6qIrs1FfPHrnUM8WfKJw7BVnI86GHjCt7kOxcoauGTTQaM8g==",
- "type": "package",
- "path": "microsoft.testplatform.testhost/15.6.1",
- "files": [
- "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.6.1.nupkg.sha512",
- "microsoft.testplatform.testhost.nuspec"
- ]
- },
- "Microsoft.Win32.Primitives/4.0.1": {
- "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
- "type": "package",
- "path": "microsoft.win32.primitives/4.0.1",
- "files": [
- "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": [
- "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"
- ]
- },
- "MSTest.TestAdapter/1.2.0": {
- "sha512": "n0xgVkGNisHCHJNTfDBQBWsp3pdFMEkvex3ah7ybAa4NEIXc+rp1Kpa4tsScTNZKH0uzpR6BZ14sJvtwPm4VgQ==",
- "type": "package",
- "path": "mstest.testadapter/1.2.0",
- "files": [
- "build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
- "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll",
- "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
- "build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
- "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
- "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
- "build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
- "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
- "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
- "build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
- "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
- "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
- "build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
- "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
- "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
- "build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
- "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
- "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
- "build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
- "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
- "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
- "build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
- "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
- "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
- "build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
- "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
- "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
- "build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
- "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
- "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
- "build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
- "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
- "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
- "build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
- "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
- "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
- "build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
- "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
- "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
- "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
- "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
- "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
- "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
- "build/net45/MSTest.TestAdapter.props",
- "build/net45/MSTest.TestAdapter.targets",
- "build/netcoreapp1.0/MSTest.TestAdapter.props",
- "build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
- "build/uap10.0/MSTest.TestAdapter.props",
- "build/uap10.0/MSTest.TestAdapter.targets",
- "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
- "mstest.testadapter.1.2.0.nupkg.sha512",
- "mstest.testadapter.nuspec"
- ]
- },
- "MSTest.TestFramework/1.2.0": {
- "sha512": "8MLtlVC0UrqrMeE7V4VmSEFiApgvtUHLizJv0W1DTCOrxyY4YPhlbcClUkLtw4I5sD5P/YWP2S+rL3/MW2pM3Q==",
- "type": "package",
- "path": "mstest.testframework/1.2.0",
- "files": [
- "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
- "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
- "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
- "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
- "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
- "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
- "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
- "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
- "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
- "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
- "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
- "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
- "mstest.testframework.1.2.0.nupkg.sha512",
- "mstest.testframework.nuspec"
- ]
- },
- "NETStandard.Library/2.0.0": {
- "sha512": "7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==",
- "type": "package",
- "path": "netstandard.library/2.0.0",
- "files": [
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "build/NETStandard.Library.targets",
- "build/netstandard2.0/NETStandard.Library.targets",
- "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
- "build/netstandard2.0/ref/System.AppContext.dll",
- "build/netstandard2.0/ref/System.Collections.Concurrent.dll",
- "build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
- "build/netstandard2.0/ref/System.Collections.Specialized.dll",
- "build/netstandard2.0/ref/System.Collections.dll",
- "build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
- "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
- "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
- "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
- "build/netstandard2.0/ref/System.ComponentModel.dll",
- "build/netstandard2.0/ref/System.Console.dll",
- "build/netstandard2.0/ref/System.Core.dll",
- "build/netstandard2.0/ref/System.Data.Common.dll",
- "build/netstandard2.0/ref/System.Data.dll",
- "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
- "build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
- "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
- "build/netstandard2.0/ref/System.Diagnostics.Process.dll",
- "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
- "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
- "build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
- "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
- "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
- "build/netstandard2.0/ref/System.Drawing.Primitives.dll",
- "build/netstandard2.0/ref/System.Drawing.dll",
- "build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
- "build/netstandard2.0/ref/System.Globalization.Calendars.dll",
- "build/netstandard2.0/ref/System.Globalization.Extensions.dll",
- "build/netstandard2.0/ref/System.Globalization.dll",
- "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
- "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
- "build/netstandard2.0/ref/System.IO.Compression.dll",
- "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
- "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
- "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
- "build/netstandard2.0/ref/System.IO.FileSystem.dll",
- "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
- "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
- "build/netstandard2.0/ref/System.IO.Pipes.dll",
- "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
- "build/netstandard2.0/ref/System.IO.dll",
- "build/netstandard2.0/ref/System.Linq.Expressions.dll",
- "build/netstandard2.0/ref/System.Linq.Parallel.dll",
- "build/netstandard2.0/ref/System.Linq.Queryable.dll",
- "build/netstandard2.0/ref/System.Linq.dll",
- "build/netstandard2.0/ref/System.Net.Http.dll",
- "build/netstandard2.0/ref/System.Net.NameResolution.dll",
- "build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
- "build/netstandard2.0/ref/System.Net.Ping.dll",
- "build/netstandard2.0/ref/System.Net.Primitives.dll",
- "build/netstandard2.0/ref/System.Net.Requests.dll",
- "build/netstandard2.0/ref/System.Net.Security.dll",
- "build/netstandard2.0/ref/System.Net.Sockets.dll",
- "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
- "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
- "build/netstandard2.0/ref/System.Net.WebSockets.dll",
- "build/netstandard2.0/ref/System.Net.dll",
- "build/netstandard2.0/ref/System.Numerics.dll",
- "build/netstandard2.0/ref/System.ObjectModel.dll",
- "build/netstandard2.0/ref/System.Reflection.Extensions.dll",
- "build/netstandard2.0/ref/System.Reflection.Primitives.dll",
- "build/netstandard2.0/ref/System.Reflection.dll",
- "build/netstandard2.0/ref/System.Resources.Reader.dll",
- "build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
- "build/netstandard2.0/ref/System.Resources.Writer.dll",
- "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
- "build/netstandard2.0/ref/System.Runtime.Extensions.dll",
- "build/netstandard2.0/ref/System.Runtime.Handles.dll",
- "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
- "build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
- "build/netstandard2.0/ref/System.Runtime.Numerics.dll",
- "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
- "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
- "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
- "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
- "build/netstandard2.0/ref/System.Runtime.Serialization.dll",
- "build/netstandard2.0/ref/System.Runtime.dll",
- "build/netstandard2.0/ref/System.Security.Claims.dll",
- "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
- "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
- "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
- "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
- "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
- "build/netstandard2.0/ref/System.Security.Principal.dll",
- "build/netstandard2.0/ref/System.Security.SecureString.dll",
- "build/netstandard2.0/ref/System.ServiceModel.Web.dll",
- "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
- "build/netstandard2.0/ref/System.Text.Encoding.dll",
- "build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
- "build/netstandard2.0/ref/System.Threading.Overlapped.dll",
- "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
- "build/netstandard2.0/ref/System.Threading.Tasks.dll",
- "build/netstandard2.0/ref/System.Threading.Thread.dll",
- "build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
- "build/netstandard2.0/ref/System.Threading.Timer.dll",
- "build/netstandard2.0/ref/System.Threading.dll",
- "build/netstandard2.0/ref/System.Transactions.dll",
- "build/netstandard2.0/ref/System.ValueTuple.dll",
- "build/netstandard2.0/ref/System.Web.dll",
- "build/netstandard2.0/ref/System.Windows.dll",
- "build/netstandard2.0/ref/System.Xml.Linq.dll",
- "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
- "build/netstandard2.0/ref/System.Xml.Serialization.dll",
- "build/netstandard2.0/ref/System.Xml.XDocument.dll",
- "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
- "build/netstandard2.0/ref/System.Xml.XPath.dll",
- "build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
- "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
- "build/netstandard2.0/ref/System.Xml.dll",
- "build/netstandard2.0/ref/System.dll",
- "build/netstandard2.0/ref/mscorlib.dll",
- "build/netstandard2.0/ref/netstandard.dll",
- "build/netstandard2.0/ref/netstandard.xml",
- "lib/netstandard1.0/_._",
- "netstandard.library.2.0.0.nupkg.sha512",
- "netstandard.library.nuspec"
- ]
- },
- "Newtonsoft.Json/9.0.1": {
- "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
- "type": "package",
- "path": "newtonsoft.json/9.0.1",
- "files": [
- "lib/net20/Newtonsoft.Json.dll",
- "lib/net20/Newtonsoft.Json.xml",
- "lib/net35/Newtonsoft.Json.dll",
- "lib/net35/Newtonsoft.Json.xml",
- "lib/net40/Newtonsoft.Json.dll",
- "lib/net40/Newtonsoft.Json.xml",
- "lib/net45/Newtonsoft.Json.dll",
- "lib/net45/Newtonsoft.Json.xml",
- "lib/netstandard1.0/Newtonsoft.Json.dll",
- "lib/netstandard1.0/Newtonsoft.Json.xml",
- "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
- "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
- "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
- "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
- "newtonsoft.json.9.0.1.nupkg.sha512",
- "newtonsoft.json.nuspec",
- "tools/install.ps1"
- ]
- },
- "runtime.native.System/4.3.0": {
- "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "type": "package",
- "path": "runtime.native.system/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.4.3.0.nupkg.sha512",
- "runtime.native.system.nuspec"
- ]
- },
- "System.AppContext/4.1.0": {
- "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
- "type": "package",
- "path": "system.appcontext/4.1.0",
- "files": [
- "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.3.0": {
- "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "type": "package",
- "path": "system.collections/4.3.0",
- "files": [
- "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.3.0.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": [
- "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": [
- "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": [
- "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": [
- "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": [
- "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": [
- "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": [
- "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": [
- "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.3.0": {
- "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "type": "package",
- "path": "system.diagnostics.debug/4.3.0",
- "files": [
- "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.3.0.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": [
- "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.3.0": {
- "sha512": "F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==",
- "type": "package",
- "path": "system.diagnostics.textwritertracelistener/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Diagnostics.TextWriterTraceListener.dll",
- "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Diagnostics.TextWriterTraceListener.dll",
- "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
- "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512",
- "system.diagnostics.textwritertracelistener.nuspec"
- ]
- },
- "System.Diagnostics.Tools/4.0.1": {
- "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
- "type": "package",
- "path": "system.diagnostics.tools/4.0.1",
- "files": [
- "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.3.0": {
- "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
- "type": "package",
- "path": "system.diagnostics.tracesource/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Diagnostics.TraceSource.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Diagnostics.TraceSource.dll",
- "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
- "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
- "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
- "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
- "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
- "system.diagnostics.tracesource.nuspec"
- ]
- },
- "System.Diagnostics.Tracing/4.1.0": {
- "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
- "type": "package",
- "path": "system.diagnostics.tracing/4.1.0",
- "files": [
- "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": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Dynamic.Runtime.dll",
- "lib/netstandard1.3/System.Dynamic.Runtime.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Dynamic.Runtime.dll",
- "ref/netcore50/System.Dynamic.Runtime.xml",
- "ref/netcore50/de/System.Dynamic.Runtime.xml",
- "ref/netcore50/es/System.Dynamic.Runtime.xml",
- "ref/netcore50/fr/System.Dynamic.Runtime.xml",
- "ref/netcore50/it/System.Dynamic.Runtime.xml",
- "ref/netcore50/ja/System.Dynamic.Runtime.xml",
- "ref/netcore50/ko/System.Dynamic.Runtime.xml",
- "ref/netcore50/ru/System.Dynamic.Runtime.xml",
- "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
- "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/System.Dynamic.Runtime.dll",
- "ref/netstandard1.0/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/System.Dynamic.Runtime.dll",
- "ref/netstandard1.3/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
- "system.dynamic.runtime.4.0.11.nupkg.sha512",
- "system.dynamic.runtime.nuspec"
- ]
- },
- "System.Globalization/4.3.0": {
- "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "type": "package",
- "path": "system.globalization/4.3.0",
- "files": [
- "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.3.0.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": [
- "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.3.0": {
- "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "type": "package",
- "path": "system.io/4.3.0",
- "files": [
- "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.3.0.nupkg.sha512",
- "system.io.nuspec"
- ]
- },
- "System.IO.FileSystem/4.0.1": {
- "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
- "type": "package",
- "path": "system.io.filesystem/4.0.1",
- "files": [
- "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": [
- "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": [
- "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": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Linq.Expressions.dll",
- "lib/netcore50/System.Linq.Expressions.dll",
- "lib/netstandard1.6/System.Linq.Expressions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Linq.Expressions.dll",
- "ref/netcore50/System.Linq.Expressions.dll",
- "ref/netcore50/System.Linq.Expressions.xml",
- "ref/netcore50/de/System.Linq.Expressions.xml",
- "ref/netcore50/es/System.Linq.Expressions.xml",
- "ref/netcore50/fr/System.Linq.Expressions.xml",
- "ref/netcore50/it/System.Linq.Expressions.xml",
- "ref/netcore50/ja/System.Linq.Expressions.xml",
- "ref/netcore50/ko/System.Linq.Expressions.xml",
- "ref/netcore50/ru/System.Linq.Expressions.xml",
- "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
- "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.0/System.Linq.Expressions.dll",
- "ref/netstandard1.0/System.Linq.Expressions.xml",
- "ref/netstandard1.0/de/System.Linq.Expressions.xml",
- "ref/netstandard1.0/es/System.Linq.Expressions.xml",
- "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.0/it/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.3/System.Linq.Expressions.dll",
- "ref/netstandard1.3/System.Linq.Expressions.xml",
- "ref/netstandard1.3/de/System.Linq.Expressions.xml",
- "ref/netstandard1.3/es/System.Linq.Expressions.xml",
- "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.3/it/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.6/System.Linq.Expressions.dll",
- "ref/netstandard1.6/System.Linq.Expressions.xml",
- "ref/netstandard1.6/de/System.Linq.Expressions.xml",
- "ref/netstandard1.6/es/System.Linq.Expressions.xml",
- "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.6/it/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
- "system.linq.expressions.4.1.0.nupkg.sha512",
- "system.linq.expressions.nuspec"
- ]
- },
- "System.ObjectModel/4.0.12": {
- "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
- "type": "package",
- "path": "system.objectmodel/4.0.12",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.ObjectModel.dll",
- "lib/netstandard1.3/System.ObjectModel.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.ObjectModel.dll",
- "ref/netcore50/System.ObjectModel.xml",
- "ref/netcore50/de/System.ObjectModel.xml",
- "ref/netcore50/es/System.ObjectModel.xml",
- "ref/netcore50/fr/System.ObjectModel.xml",
- "ref/netcore50/it/System.ObjectModel.xml",
- "ref/netcore50/ja/System.ObjectModel.xml",
- "ref/netcore50/ko/System.ObjectModel.xml",
- "ref/netcore50/ru/System.ObjectModel.xml",
- "ref/netcore50/zh-hans/System.ObjectModel.xml",
- "ref/netcore50/zh-hant/System.ObjectModel.xml",
- "ref/netstandard1.0/System.ObjectModel.dll",
- "ref/netstandard1.0/System.ObjectModel.xml",
- "ref/netstandard1.0/de/System.ObjectModel.xml",
- "ref/netstandard1.0/es/System.ObjectModel.xml",
- "ref/netstandard1.0/fr/System.ObjectModel.xml",
- "ref/netstandard1.0/it/System.ObjectModel.xml",
- "ref/netstandard1.0/ja/System.ObjectModel.xml",
- "ref/netstandard1.0/ko/System.ObjectModel.xml",
- "ref/netstandard1.0/ru/System.ObjectModel.xml",
- "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
- "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
- "ref/netstandard1.3/System.ObjectModel.dll",
- "ref/netstandard1.3/System.ObjectModel.xml",
- "ref/netstandard1.3/de/System.ObjectModel.xml",
- "ref/netstandard1.3/es/System.ObjectModel.xml",
- "ref/netstandard1.3/fr/System.ObjectModel.xml",
- "ref/netstandard1.3/it/System.ObjectModel.xml",
- "ref/netstandard1.3/ja/System.ObjectModel.xml",
- "ref/netstandard1.3/ko/System.ObjectModel.xml",
- "ref/netstandard1.3/ru/System.ObjectModel.xml",
- "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
- "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.objectmodel.4.0.12.nupkg.sha512",
- "system.objectmodel.nuspec"
- ]
- },
- "System.Private.DataContractSerialization/4.1.1": {
- "sha512": "lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==",
- "type": "package",
- "path": "system.private.datacontractserialization/4.1.1",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.3/System.Private.DataContractSerialization.dll",
- "ref/netstandard/_._",
- "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll",
- "system.private.datacontractserialization.4.1.1.nupkg.sha512",
- "system.private.datacontractserialization.nuspec"
- ]
- },
- "System.Reflection/4.3.0": {
- "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "type": "package",
- "path": "system.reflection/4.3.0",
- "files": [
- "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.3.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": [
- "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": [
- "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": [
- "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": [
- "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": [
- "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.3.0": {
- "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "type": "package",
- "path": "system.reflection.primitives/4.3.0",
- "files": [
- "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.3.0.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": [
- "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.3.0": {
- "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "type": "package",
- "path": "system.resources.resourcemanager/4.3.0",
- "files": [
- "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.3.0.nupkg.sha512",
- "system.resources.resourcemanager.nuspec"
- ]
- },
- "System.Runtime/4.3.0": {
- "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "type": "package",
- "path": "system.runtime/4.3.0",
- "files": [
- "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.3.0.nupkg.sha512",
- "system.runtime.nuspec"
- ]
- },
- "System.Runtime.Extensions/4.3.0": {
- "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "type": "package",
- "path": "system.runtime.extensions/4.3.0",
- "files": [
- "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.3.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": [
- "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": [
- "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": [
- "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": [
- "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": [
- "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": [
- "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.3.0": {
- "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "type": "package",
- "path": "system.text.encoding/4.3.0",
- "files": [
- "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.3.0.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": [
- "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": [
- "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.3.0": {
- "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "type": "package",
- "path": "system.threading/4.3.0",
- "files": [
- "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.3.0.nupkg.sha512",
- "system.threading.nuspec"
- ]
- },
- "System.Threading.Tasks/4.3.0": {
- "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "type": "package",
- "path": "system.threading.tasks/4.3.0",
- "files": [
- "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.3.0.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": [
- "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": [
- "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": [
- "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": [
- "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": [
- "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": [
- "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": [
- "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": [
- "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": [
- "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"
- ]
- },
- "palindrome/1.0.0": {
- "type": "project",
- "path": "../palindrome/palindrome.csproj",
- "msbuildProject": "../palindrome/palindrome.csproj"
- }
- },
- "projectFileDependencyGroups": {
- ".NETCoreApp,Version=v2.0": [
- "MSTest.TestAdapter >= 1.2.0",
- "MSTest.TestFramework >= 1.2.0",
- "Microsoft.NET.Test.Sdk >= 15.6.1",
- "Microsoft.NETCore.App >= 2.0.0",
- "palindrome >= 1.0.0"
- ]
- },
- "packageFolders": {
- "/Users/joshua/.nuget/packages/": {},
- "/usr/local/share/dotnet/sdk/NuGetFallbackFolder": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/palindrome.test.csproj",
- "projectName": "palindrome.test",
- "projectPath": "/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/palindrome.test.csproj",
- "packagesPath": "/Users/joshua/.nuget/packages/",
- "outputPath": "/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome.test/obj",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "/usr/local/share/dotnet/sdk/NuGetFallbackFolder"
- ],
- "configFilePaths": [
- "/Users/joshua/.config/NuGet/NuGet.Config"
- ],
- "originalTargetFrameworks": [
- "netcoreapp2.0"
- ],
- "sources": {
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "netcoreapp2.0": {
- "projectReferences": {
- "/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome/palindrome.csproj": {
- "projectPath": "/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome/palindrome.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- }
- },
- "frameworks": {
- "netcoreapp2.0": {
- "dependencies": {
- "Microsoft.NETCore.App": {
- "suppressParent": "All",
- "target": "Package",
- "version": "2.0",
- "autoReferenced": true
- },
- "Microsoft.NET.Test.Sdk": {
- "target": "Package",
- "version": "15.6.1"
- },
- "MSTest.TestAdapter": {
- "target": "Package",
- "version": "1.2.0"
- },
- "MSTest.TestFramework": {
- "target": "Package",
- "version": "1.2.0"
- }
- },
- "imports": [
- "net461"
- ],
- "assetTargetFallback": true,
- "warn": true
- }
- }
- }
-}
\ No newline at end of file
diff --git a/palindrome/palindrome.test/palindrome.test.csproj b/palindrome/palindrome.test/palindrome.test.csproj
index 0369a35..52c222b 100644
--- a/palindrome/palindrome.test/palindrome.test.csproj
+++ b/palindrome/palindrome.test/palindrome.test.csproj
@@ -15,4 +15,8 @@
+
+
+
+
diff --git a/palindrome/palindrome/Palindrome.cs b/palindrome/palindrome/Palindrome.cs
index 0aa58b0..09b885e 100644
--- a/palindrome/palindrome/Palindrome.cs
+++ b/palindrome/palindrome/Palindrome.cs
@@ -1,66 +1,53 @@
using System;
-namespace Palindrome // NOTE: Namespaces in C# are PascalCased (starting with a captial letter)
-{
+// Note, this is my solution. Please feel free to critique and ask questions.
+
+namespace Palindrome
+{
public class PalindromeChecker
{
- // NOTE: XML comments can be used, just be aware.
-
- ///
- /// Checks if a string is a palindrome.
- ///
- ///
- ///
-
-
- // I am calling this function to reverse the string without using arrays
- public string ReverseString(string input)
- {
- var Reversed = "";
-
- foreach (char c in input)
- {
- Reversed = c.ToString() + Reversed;
- }
-
- return Reversed;
- }
-
public bool IsPalindrome(string myString)
{
- // NOTE, Most C# code uses BSD style, in which braces for a new function are on a new line.
- // This is different than Javascript.
-
- // Null strings are not palindrome.
+ // Null strings are not a palindrome.
if (myString == null)
{
return false;
}
- // NOTE: This line has a problem: if (string.IsNullOrEmpty(myString) && myString != "")
- // If string.IsNullOrEmpty is true, then myString != "" is always false.
- // We already checked for null, here, so we can just go to the next case.
-
- // Empty and strings of one character are always palindromes.
+ // Empty string and strings of one character are always palindromes.
if (myString.Length < 2)
{
return true;
}
- // NOTE: It is worth try to code without using reverse (or writing reverse yourself).
-
- // convert string to array, reverse, convert back to string
- //char[] myArray = myString.ToCharArray();
- //Array.Reverse(myArray);
- //string myStringReverse = new string(myArray);
+ // Let us try to prove that this is *not* a palindrome.
+ // If we fail, it must be a palindrome.
+
+ // This is a common pattern, to prove the opposite assertion and by failing to
+ // do so, confirm the assertion is true.
+ // Integer division is fine here, even with the round down.
+ // We only need to check (about) half of the string to prove it is not
+ // a palindrome.
+ for (int i = 0; i < myString.Length / 2; i++)
+ {
+ // If the ith character does not match the Length - i - 1 character,
+ // we don't have a palindrome. Just return false.
+
+ if (myString[i] != myString[myString.Length - i - 1])
+ {
+ return false;
+ }
+ }
- // Note: We can just return of the comparison here.
- // If they are equal, the string is a palindrome, if not, the string is not.
+ // Take some time to analyze how the above works on paper.
+ // Pick a string, and track the values of i, myString.Length - i - 1
+ // and look at the pattern. It seems odd to try to do what a computer
+ // will do, but it is a critical skill.
- return myString == ReverseString(myString);
+ // If we made it this far, we must have a palindrome.
+ return true;
}
-
}
}
diff --git a/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.csproj.FileListAbsolute.txt b/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.csproj.FileListAbsolute.txt
deleted file mode 100644
index ba989c0..0000000
--- a/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-/Users/joshua/Desktop/palindrome/palindrome/bin/Debug/netcoreapp2.0/palindrome.deps.json
-/Users/joshua/Desktop/palindrome/palindrome/bin/Debug/netcoreapp2.0/palindrome.dll
-/Users/joshua/Desktop/palindrome/palindrome/bin/Debug/netcoreapp2.0/palindrome.pdb
-/Users/joshua/Desktop/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.csproj.CoreCompileInputs.cache
-/Users/joshua/Desktop/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.AssemblyInfoInputs.cache
-/Users/joshua/Desktop/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.AssemblyInfo.cs
-/Users/joshua/Desktop/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.dll
-/Users/joshua/Desktop/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.pdb
-C:/Git/intern/Coding-Challenges/palindrome/palindrome/bin/Debug/netcoreapp2.0/palindrome.deps.json
-C:/Git/intern/Coding-Challenges/palindrome/palindrome/bin/Debug/netcoreapp2.0/palindrome.dll
-C:/Git/intern/Coding-Challenges/palindrome/palindrome/bin/Debug/netcoreapp2.0/palindrome.pdb
-C:/Git/intern/Coding-Challenges/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.csprojResolveAssemblyReference.cache
-C:/Git/intern/Coding-Challenges/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.csproj.CoreCompileInputs.cache
-C:/Git/intern/Coding-Challenges/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.AssemblyInfoInputs.cache
-C:/Git/intern/Coding-Challenges/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.AssemblyInfo.cs
-C:/Git/intern/Coding-Challenges/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.dll
-C:/Git/intern/Coding-Challenges/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.pdb
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome/bin/Debug/netcoreapp2.0/palindrome.deps.json
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome/bin/Debug/netcoreapp2.0/palindrome.dll
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome/bin/Debug/netcoreapp2.0/palindrome.pdb
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.csprojResolveAssemblyReference.cache
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.csproj.CoreCompileInputs.cache
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.AssemblyInfoInputs.cache
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.AssemblyInfo.cs
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.dll
-/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome/obj/Debug/netcoreapp2.0/palindrome.pdb
diff --git a/palindrome/palindrome/obj/palindrome.csproj.nuget.cache b/palindrome/palindrome/obj/palindrome.csproj.nuget.cache
deleted file mode 100644
index b1ec365..0000000
--- a/palindrome/palindrome/obj/palindrome.csproj.nuget.cache
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "version": 1,
- "dgSpecHash": "JY/IVQ+8RHFspYLFm+Xh8LVnis5HzyYHrqTPIVWwOeiWrqJQNyUyVJQamu5DJITdksTISppvCpLefYSYzBZYtg==",
- "success": true
-}
\ No newline at end of file
diff --git a/palindrome/palindrome/obj/palindrome.csproj.nuget.g.props b/palindrome/palindrome/obj/palindrome.csproj.nuget.g.props
deleted file mode 100644
index 2928758..0000000
--- a/palindrome/palindrome/obj/palindrome.csproj.nuget.g.props
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
- True
- NuGet
- /Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome/obj/project.assets.json
- /Users/joshua/.nuget/packages/
- /Users/joshua/.nuget/packages/;/usr/local/share/dotnet/sdk/NuGetFallbackFolder
- PackageReference
- 4.3.1
-
-
- $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
-
-
-
-
-
\ No newline at end of file
diff --git a/palindrome/palindrome/obj/palindrome.csproj.nuget.g.targets b/palindrome/palindrome/obj/palindrome.csproj.nuget.g.targets
deleted file mode 100644
index ef1bc14..0000000
--- a/palindrome/palindrome/obj/palindrome.csproj.nuget.g.targets
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
-
-
-
-
-
-
\ No newline at end of file
diff --git a/palindrome/palindrome/obj/project.assets.json b/palindrome/palindrome/obj/project.assets.json
deleted file mode 100644
index f9a1137..0000000
--- a/palindrome/palindrome/obj/project.assets.json
+++ /dev/null
@@ -1,720 +0,0 @@
-{
- "version": 3,
- "targets": {
- ".NETCoreApp,Version=v2.0": {
- "Microsoft.NETCore.App/2.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.DotNetHostPolicy": "2.0.0",
- "Microsoft.NETCore.Platforms": "2.0.0",
- "NETStandard.Library": "2.0.0"
- },
- "compile": {
- "ref/netcoreapp2.0/Microsoft.CSharp.dll": {},
- "ref/netcoreapp2.0/Microsoft.VisualBasic.dll": {},
- "ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll": {},
- "ref/netcoreapp2.0/System.AppContext.dll": {},
- "ref/netcoreapp2.0/System.Buffers.dll": {},
- "ref/netcoreapp2.0/System.Collections.Concurrent.dll": {},
- "ref/netcoreapp2.0/System.Collections.Immutable.dll": {},
- "ref/netcoreapp2.0/System.Collections.NonGeneric.dll": {},
- "ref/netcoreapp2.0/System.Collections.Specialized.dll": {},
- "ref/netcoreapp2.0/System.Collections.dll": {},
- "ref/netcoreapp2.0/System.ComponentModel.Annotations.dll": {},
- "ref/netcoreapp2.0/System.ComponentModel.Composition.dll": {},
- "ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll": {},
- "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll": {},
- "ref/netcoreapp2.0/System.ComponentModel.Primitives.dll": {},
- "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll": {},
- "ref/netcoreapp2.0/System.ComponentModel.dll": {},
- "ref/netcoreapp2.0/System.Configuration.dll": {},
- "ref/netcoreapp2.0/System.Console.dll": {},
- "ref/netcoreapp2.0/System.Core.dll": {},
- "ref/netcoreapp2.0/System.Data.Common.dll": {},
- "ref/netcoreapp2.0/System.Data.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.Contracts.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.Debug.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.Process.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.Tools.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll": {},
- "ref/netcoreapp2.0/System.Diagnostics.Tracing.dll": {},
- "ref/netcoreapp2.0/System.Drawing.Primitives.dll": {},
- "ref/netcoreapp2.0/System.Drawing.dll": {},
- "ref/netcoreapp2.0/System.Dynamic.Runtime.dll": {},
- "ref/netcoreapp2.0/System.Globalization.Calendars.dll": {},
- "ref/netcoreapp2.0/System.Globalization.Extensions.dll": {},
- "ref/netcoreapp2.0/System.Globalization.dll": {},
- "ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll": {},
- "ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll": {},
- "ref/netcoreapp2.0/System.IO.Compression.dll": {},
- "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll": {},
- "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll": {},
- "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll": {},
- "ref/netcoreapp2.0/System.IO.FileSystem.dll": {},
- "ref/netcoreapp2.0/System.IO.IsolatedStorage.dll": {},
- "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll": {},
- "ref/netcoreapp2.0/System.IO.Pipes.dll": {},
- "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll": {},
- "ref/netcoreapp2.0/System.IO.dll": {},
- "ref/netcoreapp2.0/System.Linq.Expressions.dll": {},
- "ref/netcoreapp2.0/System.Linq.Parallel.dll": {},
- "ref/netcoreapp2.0/System.Linq.Queryable.dll": {},
- "ref/netcoreapp2.0/System.Linq.dll": {},
- "ref/netcoreapp2.0/System.Net.Http.dll": {},
- "ref/netcoreapp2.0/System.Net.HttpListener.dll": {},
- "ref/netcoreapp2.0/System.Net.Mail.dll": {},
- "ref/netcoreapp2.0/System.Net.NameResolution.dll": {},
- "ref/netcoreapp2.0/System.Net.NetworkInformation.dll": {},
- "ref/netcoreapp2.0/System.Net.Ping.dll": {},
- "ref/netcoreapp2.0/System.Net.Primitives.dll": {},
- "ref/netcoreapp2.0/System.Net.Requests.dll": {},
- "ref/netcoreapp2.0/System.Net.Security.dll": {},
- "ref/netcoreapp2.0/System.Net.ServicePoint.dll": {},
- "ref/netcoreapp2.0/System.Net.Sockets.dll": {},
- "ref/netcoreapp2.0/System.Net.WebClient.dll": {},
- "ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll": {},
- "ref/netcoreapp2.0/System.Net.WebProxy.dll": {},
- "ref/netcoreapp2.0/System.Net.WebSockets.Client.dll": {},
- "ref/netcoreapp2.0/System.Net.WebSockets.dll": {},
- "ref/netcoreapp2.0/System.Net.dll": {},
- "ref/netcoreapp2.0/System.Numerics.Vectors.dll": {},
- "ref/netcoreapp2.0/System.Numerics.dll": {},
- "ref/netcoreapp2.0/System.ObjectModel.dll": {},
- "ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {},
- "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll": {},
- "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll": {},
- "ref/netcoreapp2.0/System.Reflection.Emit.dll": {},
- "ref/netcoreapp2.0/System.Reflection.Extensions.dll": {},
- "ref/netcoreapp2.0/System.Reflection.Metadata.dll": {},
- "ref/netcoreapp2.0/System.Reflection.Primitives.dll": {},
- "ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll": {},
- "ref/netcoreapp2.0/System.Reflection.dll": {},
- "ref/netcoreapp2.0/System.Resources.Reader.dll": {},
- "ref/netcoreapp2.0/System.Resources.ResourceManager.dll": {},
- "ref/netcoreapp2.0/System.Resources.Writer.dll": {},
- "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Extensions.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Handles.dll": {},
- "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll": {},
- "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll": {},
- "ref/netcoreapp2.0/System.Runtime.InteropServices.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Loader.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Numerics.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll": {},
- "ref/netcoreapp2.0/System.Runtime.Serialization.dll": {},
- "ref/netcoreapp2.0/System.Runtime.dll": {},
- "ref/netcoreapp2.0/System.Security.Claims.dll": {},
- "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll": {},
- "ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll": {},
- "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll": {},
- "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll": {},
- "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll": {},
- "ref/netcoreapp2.0/System.Security.Principal.dll": {},
- "ref/netcoreapp2.0/System.Security.SecureString.dll": {},
- "ref/netcoreapp2.0/System.Security.dll": {},
- "ref/netcoreapp2.0/System.ServiceModel.Web.dll": {},
- "ref/netcoreapp2.0/System.ServiceProcess.dll": {},
- "ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll": {},
- "ref/netcoreapp2.0/System.Text.Encoding.dll": {},
- "ref/netcoreapp2.0/System.Text.RegularExpressions.dll": {},
- "ref/netcoreapp2.0/System.Threading.Overlapped.dll": {},
- "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll": {},
- "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll": {},
- "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll": {},
- "ref/netcoreapp2.0/System.Threading.Tasks.dll": {},
- "ref/netcoreapp2.0/System.Threading.Thread.dll": {},
- "ref/netcoreapp2.0/System.Threading.ThreadPool.dll": {},
- "ref/netcoreapp2.0/System.Threading.Timer.dll": {},
- "ref/netcoreapp2.0/System.Threading.dll": {},
- "ref/netcoreapp2.0/System.Transactions.Local.dll": {},
- "ref/netcoreapp2.0/System.Transactions.dll": {},
- "ref/netcoreapp2.0/System.ValueTuple.dll": {},
- "ref/netcoreapp2.0/System.Web.HttpUtility.dll": {},
- "ref/netcoreapp2.0/System.Web.dll": {},
- "ref/netcoreapp2.0/System.Windows.dll": {},
- "ref/netcoreapp2.0/System.Xml.Linq.dll": {},
- "ref/netcoreapp2.0/System.Xml.ReaderWriter.dll": {},
- "ref/netcoreapp2.0/System.Xml.Serialization.dll": {},
- "ref/netcoreapp2.0/System.Xml.XDocument.dll": {},
- "ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll": {},
- "ref/netcoreapp2.0/System.Xml.XPath.dll": {},
- "ref/netcoreapp2.0/System.Xml.XmlDocument.dll": {},
- "ref/netcoreapp2.0/System.Xml.XmlSerializer.dll": {},
- "ref/netcoreapp2.0/System.Xml.dll": {},
- "ref/netcoreapp2.0/System.dll": {},
- "ref/netcoreapp2.0/WindowsBase.dll": {},
- "ref/netcoreapp2.0/mscorlib.dll": {},
- "ref/netcoreapp2.0/netstandard.dll": {}
- },
- "build": {
- "build/netcoreapp2.0/Microsoft.NETCore.App.props": {},
- "build/netcoreapp2.0/Microsoft.NETCore.App.targets": {}
- }
- },
- "Microsoft.NETCore.DotNetAppHost/2.0.0": {
- "type": "package"
- },
- "Microsoft.NETCore.DotNetHostPolicy/2.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.DotNetHostResolver": "2.0.0"
- }
- },
- "Microsoft.NETCore.DotNetHostResolver/2.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.DotNetAppHost": "2.0.0"
- }
- },
- "Microsoft.NETCore.Platforms/2.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "NETStandard.Library/2.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- },
- "build": {
- "build/netstandard2.0/NETStandard.Library.targets": {}
- }
- }
- }
- },
- "libraries": {
- "Microsoft.NETCore.App/2.0.0": {
- "sha512": "/mzXF+UtZef+VpzzN88EpvFq5U6z4rj54ZMq/J968H6pcvyLOmcupmTRpJ3CJm8ILoCGh9WI7qpDdiKtuzswrQ==",
- "type": "package",
- "path": "microsoft.netcore.app/2.0.0",
- "files": [
- "LICENSE.TXT",
- "Microsoft.NETCore.App.versions.txt",
- "THIRD-PARTY-NOTICES.TXT",
- "build/netcoreapp2.0/Microsoft.NETCore.App.PlatformManifest.txt",
- "build/netcoreapp2.0/Microsoft.NETCore.App.props",
- "build/netcoreapp2.0/Microsoft.NETCore.App.targets",
- "microsoft.netcore.app.2.0.0.nupkg.sha512",
- "microsoft.netcore.app.nuspec",
- "ref/netcoreapp/_._",
- "ref/netcoreapp2.0/Microsoft.CSharp.dll",
- "ref/netcoreapp2.0/Microsoft.CSharp.xml",
- "ref/netcoreapp2.0/Microsoft.VisualBasic.dll",
- "ref/netcoreapp2.0/Microsoft.VisualBasic.xml",
- "ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll",
- "ref/netcoreapp2.0/Microsoft.Win32.Primitives.xml",
- "ref/netcoreapp2.0/System.AppContext.dll",
- "ref/netcoreapp2.0/System.AppContext.xml",
- "ref/netcoreapp2.0/System.Buffers.dll",
- "ref/netcoreapp2.0/System.Buffers.xml",
- "ref/netcoreapp2.0/System.Collections.Concurrent.dll",
- "ref/netcoreapp2.0/System.Collections.Concurrent.xml",
- "ref/netcoreapp2.0/System.Collections.Immutable.dll",
- "ref/netcoreapp2.0/System.Collections.Immutable.xml",
- "ref/netcoreapp2.0/System.Collections.NonGeneric.dll",
- "ref/netcoreapp2.0/System.Collections.NonGeneric.xml",
- "ref/netcoreapp2.0/System.Collections.Specialized.dll",
- "ref/netcoreapp2.0/System.Collections.Specialized.xml",
- "ref/netcoreapp2.0/System.Collections.dll",
- "ref/netcoreapp2.0/System.Collections.xml",
- "ref/netcoreapp2.0/System.ComponentModel.Annotations.dll",
- "ref/netcoreapp2.0/System.ComponentModel.Annotations.xml",
- "ref/netcoreapp2.0/System.ComponentModel.Composition.dll",
- "ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll",
- "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll",
- "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.xml",
- "ref/netcoreapp2.0/System.ComponentModel.Primitives.dll",
- "ref/netcoreapp2.0/System.ComponentModel.Primitives.xml",
- "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll",
- "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.xml",
- "ref/netcoreapp2.0/System.ComponentModel.dll",
- "ref/netcoreapp2.0/System.ComponentModel.xml",
- "ref/netcoreapp2.0/System.Configuration.dll",
- "ref/netcoreapp2.0/System.Console.dll",
- "ref/netcoreapp2.0/System.Console.xml",
- "ref/netcoreapp2.0/System.Core.dll",
- "ref/netcoreapp2.0/System.Data.Common.dll",
- "ref/netcoreapp2.0/System.Data.Common.xml",
- "ref/netcoreapp2.0/System.Data.dll",
- "ref/netcoreapp2.0/System.Diagnostics.Contracts.dll",
- "ref/netcoreapp2.0/System.Diagnostics.Contracts.xml",
- "ref/netcoreapp2.0/System.Diagnostics.Debug.dll",
- "ref/netcoreapp2.0/System.Diagnostics.Debug.xml",
- "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll",
- "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.xml",
- "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll",
- "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.xml",
- "ref/netcoreapp2.0/System.Diagnostics.Process.dll",
- "ref/netcoreapp2.0/System.Diagnostics.Process.xml",
- "ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll",
- "ref/netcoreapp2.0/System.Diagnostics.StackTrace.xml",
- "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll",
- "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netcoreapp2.0/System.Diagnostics.Tools.dll",
- "ref/netcoreapp2.0/System.Diagnostics.Tools.xml",
- "ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll",
- "ref/netcoreapp2.0/System.Diagnostics.TraceSource.xml",
- "ref/netcoreapp2.0/System.Diagnostics.Tracing.dll",
- "ref/netcoreapp2.0/System.Diagnostics.Tracing.xml",
- "ref/netcoreapp2.0/System.Drawing.Primitives.dll",
- "ref/netcoreapp2.0/System.Drawing.Primitives.xml",
- "ref/netcoreapp2.0/System.Drawing.dll",
- "ref/netcoreapp2.0/System.Dynamic.Runtime.dll",
- "ref/netcoreapp2.0/System.Dynamic.Runtime.xml",
- "ref/netcoreapp2.0/System.Globalization.Calendars.dll",
- "ref/netcoreapp2.0/System.Globalization.Calendars.xml",
- "ref/netcoreapp2.0/System.Globalization.Extensions.dll",
- "ref/netcoreapp2.0/System.Globalization.Extensions.xml",
- "ref/netcoreapp2.0/System.Globalization.dll",
- "ref/netcoreapp2.0/System.Globalization.xml",
- "ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll",
- "ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll",
- "ref/netcoreapp2.0/System.IO.Compression.ZipFile.xml",
- "ref/netcoreapp2.0/System.IO.Compression.dll",
- "ref/netcoreapp2.0/System.IO.Compression.xml",
- "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll",
- "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.xml",
- "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll",
- "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.xml",
- "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll",
- "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.xml",
- "ref/netcoreapp2.0/System.IO.FileSystem.dll",
- "ref/netcoreapp2.0/System.IO.FileSystem.xml",
- "ref/netcoreapp2.0/System.IO.IsolatedStorage.dll",
- "ref/netcoreapp2.0/System.IO.IsolatedStorage.xml",
- "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll",
- "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.xml",
- "ref/netcoreapp2.0/System.IO.Pipes.dll",
- "ref/netcoreapp2.0/System.IO.Pipes.xml",
- "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll",
- "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.xml",
- "ref/netcoreapp2.0/System.IO.dll",
- "ref/netcoreapp2.0/System.IO.xml",
- "ref/netcoreapp2.0/System.Linq.Expressions.dll",
- "ref/netcoreapp2.0/System.Linq.Expressions.xml",
- "ref/netcoreapp2.0/System.Linq.Parallel.dll",
- "ref/netcoreapp2.0/System.Linq.Parallel.xml",
- "ref/netcoreapp2.0/System.Linq.Queryable.dll",
- "ref/netcoreapp2.0/System.Linq.Queryable.xml",
- "ref/netcoreapp2.0/System.Linq.dll",
- "ref/netcoreapp2.0/System.Linq.xml",
- "ref/netcoreapp2.0/System.Net.Http.dll",
- "ref/netcoreapp2.0/System.Net.Http.xml",
- "ref/netcoreapp2.0/System.Net.HttpListener.dll",
- "ref/netcoreapp2.0/System.Net.HttpListener.xml",
- "ref/netcoreapp2.0/System.Net.Mail.dll",
- "ref/netcoreapp2.0/System.Net.Mail.xml",
- "ref/netcoreapp2.0/System.Net.NameResolution.dll",
- "ref/netcoreapp2.0/System.Net.NameResolution.xml",
- "ref/netcoreapp2.0/System.Net.NetworkInformation.dll",
- "ref/netcoreapp2.0/System.Net.NetworkInformation.xml",
- "ref/netcoreapp2.0/System.Net.Ping.dll",
- "ref/netcoreapp2.0/System.Net.Ping.xml",
- "ref/netcoreapp2.0/System.Net.Primitives.dll",
- "ref/netcoreapp2.0/System.Net.Primitives.xml",
- "ref/netcoreapp2.0/System.Net.Requests.dll",
- "ref/netcoreapp2.0/System.Net.Requests.xml",
- "ref/netcoreapp2.0/System.Net.Security.dll",
- "ref/netcoreapp2.0/System.Net.Security.xml",
- "ref/netcoreapp2.0/System.Net.ServicePoint.dll",
- "ref/netcoreapp2.0/System.Net.ServicePoint.xml",
- "ref/netcoreapp2.0/System.Net.Sockets.dll",
- "ref/netcoreapp2.0/System.Net.Sockets.xml",
- "ref/netcoreapp2.0/System.Net.WebClient.dll",
- "ref/netcoreapp2.0/System.Net.WebClient.xml",
- "ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll",
- "ref/netcoreapp2.0/System.Net.WebHeaderCollection.xml",
- "ref/netcoreapp2.0/System.Net.WebProxy.dll",
- "ref/netcoreapp2.0/System.Net.WebProxy.xml",
- "ref/netcoreapp2.0/System.Net.WebSockets.Client.dll",
- "ref/netcoreapp2.0/System.Net.WebSockets.Client.xml",
- "ref/netcoreapp2.0/System.Net.WebSockets.dll",
- "ref/netcoreapp2.0/System.Net.WebSockets.xml",
- "ref/netcoreapp2.0/System.Net.dll",
- "ref/netcoreapp2.0/System.Numerics.Vectors.dll",
- "ref/netcoreapp2.0/System.Numerics.Vectors.xml",
- "ref/netcoreapp2.0/System.Numerics.dll",
- "ref/netcoreapp2.0/System.ObjectModel.dll",
- "ref/netcoreapp2.0/System.ObjectModel.xml",
- "ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll",
- "ref/netcoreapp2.0/System.Reflection.DispatchProxy.xml",
- "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll",
- "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.xml",
- "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll",
- "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.xml",
- "ref/netcoreapp2.0/System.Reflection.Emit.dll",
- "ref/netcoreapp2.0/System.Reflection.Emit.xml",
- "ref/netcoreapp2.0/System.Reflection.Extensions.dll",
- "ref/netcoreapp2.0/System.Reflection.Extensions.xml",
- "ref/netcoreapp2.0/System.Reflection.Metadata.dll",
- "ref/netcoreapp2.0/System.Reflection.Metadata.xml",
- "ref/netcoreapp2.0/System.Reflection.Primitives.dll",
- "ref/netcoreapp2.0/System.Reflection.Primitives.xml",
- "ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll",
- "ref/netcoreapp2.0/System.Reflection.TypeExtensions.xml",
- "ref/netcoreapp2.0/System.Reflection.dll",
- "ref/netcoreapp2.0/System.Reflection.xml",
- "ref/netcoreapp2.0/System.Resources.Reader.dll",
- "ref/netcoreapp2.0/System.Resources.Reader.xml",
- "ref/netcoreapp2.0/System.Resources.ResourceManager.dll",
- "ref/netcoreapp2.0/System.Resources.ResourceManager.xml",
- "ref/netcoreapp2.0/System.Resources.Writer.dll",
- "ref/netcoreapp2.0/System.Resources.Writer.xml",
- "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll",
- "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.xml",
- "ref/netcoreapp2.0/System.Runtime.Extensions.dll",
- "ref/netcoreapp2.0/System.Runtime.Extensions.xml",
- "ref/netcoreapp2.0/System.Runtime.Handles.dll",
- "ref/netcoreapp2.0/System.Runtime.Handles.xml",
- "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll",
- "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.xml",
- "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll",
- "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.xml",
- "ref/netcoreapp2.0/System.Runtime.InteropServices.dll",
- "ref/netcoreapp2.0/System.Runtime.InteropServices.xml",
- "ref/netcoreapp2.0/System.Runtime.Loader.dll",
- "ref/netcoreapp2.0/System.Runtime.Loader.xml",
- "ref/netcoreapp2.0/System.Runtime.Numerics.dll",
- "ref/netcoreapp2.0/System.Runtime.Numerics.xml",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.xml",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Json.xml",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.xml",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll",
- "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.xml",
- "ref/netcoreapp2.0/System.Runtime.Serialization.dll",
- "ref/netcoreapp2.0/System.Runtime.dll",
- "ref/netcoreapp2.0/System.Runtime.xml",
- "ref/netcoreapp2.0/System.Security.Claims.dll",
- "ref/netcoreapp2.0/System.Security.Claims.xml",
- "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll",
- "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.xml",
- "ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll",
- "ref/netcoreapp2.0/System.Security.Cryptography.Csp.xml",
- "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll",
- "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.xml",
- "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll",
- "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.xml",
- "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll",
- "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.xml",
- "ref/netcoreapp2.0/System.Security.Principal.dll",
- "ref/netcoreapp2.0/System.Security.Principal.xml",
- "ref/netcoreapp2.0/System.Security.SecureString.dll",
- "ref/netcoreapp2.0/System.Security.SecureString.xml",
- "ref/netcoreapp2.0/System.Security.dll",
- "ref/netcoreapp2.0/System.ServiceModel.Web.dll",
- "ref/netcoreapp2.0/System.ServiceProcess.dll",
- "ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll",
- "ref/netcoreapp2.0/System.Text.Encoding.Extensions.xml",
- "ref/netcoreapp2.0/System.Text.Encoding.dll",
- "ref/netcoreapp2.0/System.Text.Encoding.xml",
- "ref/netcoreapp2.0/System.Text.RegularExpressions.dll",
- "ref/netcoreapp2.0/System.Text.RegularExpressions.xml",
- "ref/netcoreapp2.0/System.Threading.Overlapped.dll",
- "ref/netcoreapp2.0/System.Threading.Overlapped.xml",
- "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll",
- "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.xml",
- "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll",
- "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.xml",
- "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll",
- "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.xml",
- "ref/netcoreapp2.0/System.Threading.Tasks.dll",
- "ref/netcoreapp2.0/System.Threading.Tasks.xml",
- "ref/netcoreapp2.0/System.Threading.Thread.dll",
- "ref/netcoreapp2.0/System.Threading.Thread.xml",
- "ref/netcoreapp2.0/System.Threading.ThreadPool.dll",
- "ref/netcoreapp2.0/System.Threading.ThreadPool.xml",
- "ref/netcoreapp2.0/System.Threading.Timer.dll",
- "ref/netcoreapp2.0/System.Threading.Timer.xml",
- "ref/netcoreapp2.0/System.Threading.dll",
- "ref/netcoreapp2.0/System.Threading.xml",
- "ref/netcoreapp2.0/System.Transactions.Local.dll",
- "ref/netcoreapp2.0/System.Transactions.Local.xml",
- "ref/netcoreapp2.0/System.Transactions.dll",
- "ref/netcoreapp2.0/System.ValueTuple.dll",
- "ref/netcoreapp2.0/System.ValueTuple.xml",
- "ref/netcoreapp2.0/System.Web.HttpUtility.dll",
- "ref/netcoreapp2.0/System.Web.HttpUtility.xml",
- "ref/netcoreapp2.0/System.Web.dll",
- "ref/netcoreapp2.0/System.Windows.dll",
- "ref/netcoreapp2.0/System.Xml.Linq.dll",
- "ref/netcoreapp2.0/System.Xml.ReaderWriter.dll",
- "ref/netcoreapp2.0/System.Xml.ReaderWriter.xml",
- "ref/netcoreapp2.0/System.Xml.Serialization.dll",
- "ref/netcoreapp2.0/System.Xml.XDocument.dll",
- "ref/netcoreapp2.0/System.Xml.XDocument.xml",
- "ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll",
- "ref/netcoreapp2.0/System.Xml.XPath.XDocument.xml",
- "ref/netcoreapp2.0/System.Xml.XPath.dll",
- "ref/netcoreapp2.0/System.Xml.XPath.xml",
- "ref/netcoreapp2.0/System.Xml.XmlDocument.dll",
- "ref/netcoreapp2.0/System.Xml.XmlDocument.xml",
- "ref/netcoreapp2.0/System.Xml.XmlSerializer.dll",
- "ref/netcoreapp2.0/System.Xml.XmlSerializer.xml",
- "ref/netcoreapp2.0/System.Xml.dll",
- "ref/netcoreapp2.0/System.dll",
- "ref/netcoreapp2.0/WindowsBase.dll",
- "ref/netcoreapp2.0/mscorlib.dll",
- "ref/netcoreapp2.0/netstandard.dll",
- "runtime.json"
- ]
- },
- "Microsoft.NETCore.DotNetAppHost/2.0.0": {
- "sha512": "L4GGkcI/Mxl8PKLRpFdGmLb5oI8sGIR05bDTGkzCoamAjdUl1Zhkov2swjEsZvKYT8kkdiz39LtwyGYuCJxm1A==",
- "type": "package",
- "path": "microsoft.netcore.dotnetapphost/2.0.0",
- "files": [
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "microsoft.netcore.dotnetapphost.2.0.0.nupkg.sha512",
- "microsoft.netcore.dotnetapphost.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.NETCore.DotNetHostPolicy/2.0.0": {
- "sha512": "rm7mMn0A93fwyAwVhbyOCcPuu2hZNL0A0dAur9sNG9pEkONPfCEQeF7m2mC8KpqZO0Ol6tpV5J0AF3HTXT3GXA==",
- "type": "package",
- "path": "microsoft.netcore.dotnethostpolicy/2.0.0",
- "files": [
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "microsoft.netcore.dotnethostpolicy.2.0.0.nupkg.sha512",
- "microsoft.netcore.dotnethostpolicy.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.NETCore.DotNetHostResolver/2.0.0": {
- "sha512": "uBbjpeSrwsaTCADZCzRk+3aBzNnMqkC4zftJWBsL+Zk+8u+W+/lMb2thM5Y4hiVrv1YQg9t6dKldXzOKkY+pQw==",
- "type": "package",
- "path": "microsoft.netcore.dotnethostresolver/2.0.0",
- "files": [
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "microsoft.netcore.dotnethostresolver.2.0.0.nupkg.sha512",
- "microsoft.netcore.dotnethostresolver.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.NETCore.Platforms/2.0.0": {
- "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
- "type": "package",
- "path": "microsoft.netcore.platforms/2.0.0",
- "files": [
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.platforms.2.0.0.nupkg.sha512",
- "microsoft.netcore.platforms.nuspec",
- "runtime.json",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "NETStandard.Library/2.0.0": {
- "sha512": "7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==",
- "type": "package",
- "path": "netstandard.library/2.0.0",
- "files": [
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "build/NETStandard.Library.targets",
- "build/netstandard2.0/NETStandard.Library.targets",
- "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
- "build/netstandard2.0/ref/System.AppContext.dll",
- "build/netstandard2.0/ref/System.Collections.Concurrent.dll",
- "build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
- "build/netstandard2.0/ref/System.Collections.Specialized.dll",
- "build/netstandard2.0/ref/System.Collections.dll",
- "build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
- "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
- "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
- "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
- "build/netstandard2.0/ref/System.ComponentModel.dll",
- "build/netstandard2.0/ref/System.Console.dll",
- "build/netstandard2.0/ref/System.Core.dll",
- "build/netstandard2.0/ref/System.Data.Common.dll",
- "build/netstandard2.0/ref/System.Data.dll",
- "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
- "build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
- "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
- "build/netstandard2.0/ref/System.Diagnostics.Process.dll",
- "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
- "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
- "build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
- "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
- "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
- "build/netstandard2.0/ref/System.Drawing.Primitives.dll",
- "build/netstandard2.0/ref/System.Drawing.dll",
- "build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
- "build/netstandard2.0/ref/System.Globalization.Calendars.dll",
- "build/netstandard2.0/ref/System.Globalization.Extensions.dll",
- "build/netstandard2.0/ref/System.Globalization.dll",
- "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
- "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
- "build/netstandard2.0/ref/System.IO.Compression.dll",
- "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
- "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
- "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
- "build/netstandard2.0/ref/System.IO.FileSystem.dll",
- "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
- "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
- "build/netstandard2.0/ref/System.IO.Pipes.dll",
- "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
- "build/netstandard2.0/ref/System.IO.dll",
- "build/netstandard2.0/ref/System.Linq.Expressions.dll",
- "build/netstandard2.0/ref/System.Linq.Parallel.dll",
- "build/netstandard2.0/ref/System.Linq.Queryable.dll",
- "build/netstandard2.0/ref/System.Linq.dll",
- "build/netstandard2.0/ref/System.Net.Http.dll",
- "build/netstandard2.0/ref/System.Net.NameResolution.dll",
- "build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
- "build/netstandard2.0/ref/System.Net.Ping.dll",
- "build/netstandard2.0/ref/System.Net.Primitives.dll",
- "build/netstandard2.0/ref/System.Net.Requests.dll",
- "build/netstandard2.0/ref/System.Net.Security.dll",
- "build/netstandard2.0/ref/System.Net.Sockets.dll",
- "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
- "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
- "build/netstandard2.0/ref/System.Net.WebSockets.dll",
- "build/netstandard2.0/ref/System.Net.dll",
- "build/netstandard2.0/ref/System.Numerics.dll",
- "build/netstandard2.0/ref/System.ObjectModel.dll",
- "build/netstandard2.0/ref/System.Reflection.Extensions.dll",
- "build/netstandard2.0/ref/System.Reflection.Primitives.dll",
- "build/netstandard2.0/ref/System.Reflection.dll",
- "build/netstandard2.0/ref/System.Resources.Reader.dll",
- "build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
- "build/netstandard2.0/ref/System.Resources.Writer.dll",
- "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
- "build/netstandard2.0/ref/System.Runtime.Extensions.dll",
- "build/netstandard2.0/ref/System.Runtime.Handles.dll",
- "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
- "build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
- "build/netstandard2.0/ref/System.Runtime.Numerics.dll",
- "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
- "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
- "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
- "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
- "build/netstandard2.0/ref/System.Runtime.Serialization.dll",
- "build/netstandard2.0/ref/System.Runtime.dll",
- "build/netstandard2.0/ref/System.Security.Claims.dll",
- "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
- "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
- "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
- "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
- "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
- "build/netstandard2.0/ref/System.Security.Principal.dll",
- "build/netstandard2.0/ref/System.Security.SecureString.dll",
- "build/netstandard2.0/ref/System.ServiceModel.Web.dll",
- "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
- "build/netstandard2.0/ref/System.Text.Encoding.dll",
- "build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
- "build/netstandard2.0/ref/System.Threading.Overlapped.dll",
- "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
- "build/netstandard2.0/ref/System.Threading.Tasks.dll",
- "build/netstandard2.0/ref/System.Threading.Thread.dll",
- "build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
- "build/netstandard2.0/ref/System.Threading.Timer.dll",
- "build/netstandard2.0/ref/System.Threading.dll",
- "build/netstandard2.0/ref/System.Transactions.dll",
- "build/netstandard2.0/ref/System.ValueTuple.dll",
- "build/netstandard2.0/ref/System.Web.dll",
- "build/netstandard2.0/ref/System.Windows.dll",
- "build/netstandard2.0/ref/System.Xml.Linq.dll",
- "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
- "build/netstandard2.0/ref/System.Xml.Serialization.dll",
- "build/netstandard2.0/ref/System.Xml.XDocument.dll",
- "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
- "build/netstandard2.0/ref/System.Xml.XPath.dll",
- "build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
- "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
- "build/netstandard2.0/ref/System.Xml.dll",
- "build/netstandard2.0/ref/System.dll",
- "build/netstandard2.0/ref/mscorlib.dll",
- "build/netstandard2.0/ref/netstandard.dll",
- "build/netstandard2.0/ref/netstandard.xml",
- "lib/netstandard1.0/_._",
- "netstandard.library.2.0.0.nupkg.sha512",
- "netstandard.library.nuspec"
- ]
- }
- },
- "projectFileDependencyGroups": {
- ".NETCoreApp,Version=v2.0": [
- "Microsoft.NETCore.App >= 2.0.0"
- ]
- },
- "packageFolders": {
- "/Users/joshua/.nuget/packages/": {},
- "/usr/local/share/dotnet/sdk/NuGetFallbackFolder": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome/palindrome.csproj",
- "projectName": "palindrome",
- "projectPath": "/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome/palindrome.csproj",
- "packagesPath": "/Users/joshua/.nuget/packages/",
- "outputPath": "/Users/joshua/Documents/GitHub/PHP-Internship/palindrome/palindrome/obj",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "/usr/local/share/dotnet/sdk/NuGetFallbackFolder"
- ],
- "configFilePaths": [
- "/Users/joshua/.config/NuGet/NuGet.Config"
- ],
- "originalTargetFrameworks": [
- "netcoreapp2.0"
- ],
- "sources": {
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "netcoreapp2.0": {
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- }
- },
- "frameworks": {
- "netcoreapp2.0": {
- "dependencies": {
- "Microsoft.NETCore.App": {
- "suppressParent": "All",
- "target": "Package",
- "version": "2.0",
- "autoReferenced": true
- }
- },
- "imports": [
- "net461"
- ],
- "assetTargetFallback": true,
- "warn": true
- }
- }
- }
-}
\ No newline at end of file