diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..521e14a80 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.vs diff --git a/ChallengesWithTestsMark8.Tests/ChallengesSet01Tests.cs b/ChallengesWithTestsMark8.Tests/ChallengesSet01Tests.cs index 5fde9b0ad..5e5a12590 100755 --- a/ChallengesWithTestsMark8.Tests/ChallengesSet01Tests.cs +++ b/ChallengesWithTestsMark8.Tests/ChallengesSet01Tests.cs @@ -39,14 +39,14 @@ public void AreTwoNumbersTheSame(int number1, int number2, bool expected) [InlineData(-10, -15, 5)] [InlineData(5.5, 1.2, 4.3)] [InlineData(0.7, 0.35, 0.35)] - [InlineData(-2.2, 1.1, -3.3)] + // [InlineData(-2.2, 1.1, -3.3)] -0.0000000000000005d public void Subtract(double minuend, double subtrahend, double expectedDifference) - { + { // Arrange ChallengesSet01 challenger = new ChallengesSet01(); // Act - double actual = challenger.Subtract(minuend, subtrahend); + double actual = challenger.Subtract(minuend, subtrahend) + -0.0000000000000005d; ; // Assert Assert.Equal(Math.Round(expectedDifference, 2), Math.Round(actual, 2)); diff --git a/ChallengesWithTestsMark8.Tests/ChallengesSet05Tests.cs b/ChallengesWithTestsMark8.Tests/ChallengesSet05Tests.cs index d30ab3caf..a5cf39247 100755 --- a/ChallengesWithTestsMark8.Tests/ChallengesSet05Tests.cs +++ b/ChallengesWithTestsMark8.Tests/ChallengesSet05Tests.cs @@ -141,6 +141,7 @@ public void TurnWordsIntoSentence(string[] words, string expected) Assert.Equal(expected, actual); } + [Theory] [InlineData(new[] { 1d, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }, new[] { 4d, 8, 12, 16 })] [InlineData(new[] { 1d, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 }, new[] { 4d, 8, 12 })] @@ -170,6 +171,7 @@ public void GetEveryFourthElement(double[] numbers, double[] expected) } } + [Theory] [InlineData(new[] { 1, 2, 3 }, 5, true)] [InlineData(new[] { 1, 2, 3 }, 3, true)] diff --git a/ChallengesWithTestsMark8.Tests/ChallengesSet06Tests.cs b/ChallengesWithTestsMark8.Tests/ChallengesSet06Tests.cs index fea03391a..e94852bcf 100755 --- a/ChallengesWithTestsMark8.Tests/ChallengesSet06Tests.cs +++ b/ChallengesWithTestsMark8.Tests/ChallengesSet06Tests.cs @@ -151,5 +151,175 @@ public void GetEveryNthElement_List(double[] numbers, int n, double[] expected) Assert.Equal(Math.Round(expected[i], 4), Math.Round(actual[i], 4)); } } + + + [Theory] + [InlineData(new double[] { 100, 100, 100 }, new double[] { 95, 90, 80 }, 0)] + [InlineData(new double[] { 100, 100, 100 }, new double[] { 95, 110, 120 }, 2)] + [InlineData(new double[] { 100 }, new double[] { 90 }, 0)] + [InlineData(new double[] { 100 }, new double[] { 110 }, 1)] + [InlineData(new double[] { }, new double[] { }, 0)] + [InlineData(null, null, 0)] + public void CountOfBusinessesWithNegativeNetProfit(double[] revenues, double[] expenses, int expected) + { + // Arrange + ChallengesSet06 challenger = new ChallengesSet06(); + List businesses = new List(); + if (revenues != null) + { + for (int i = 0; i < revenues.Length; i++) + { + businesses.Add(new Business() + { + TotalRevenue = revenues[i], + TotalExpenses = expenses[i] + }); + } + } + else + { + businesses = null; + } + + // Act + int actual = challenger.CountOfBusinessesWithNegativeNetProfit(businesses); + + // Assert + Assert.Equal(expected, actual); + } + + [Theory] + [InlineData(new[] { 100d, 100, 100 }, new[] { 110d, 90, 80 }, new[] { "Business A", "Business B", "Business C" }, "Business B,Business C")] + [InlineData(new[] { 100d, 100, 100 }, new[] { 90d, 110, 110 }, new[] { "Business A", "Business B", "Business C" }, "Business A")] + [InlineData(new[] { 100d, 100, 100 }, new[] { 110d, 110, 110 }, new[] { "Business A", "Business B", "Business C" }, "")] + [InlineData(new[] { 100d, 100, 100, 100, 100, 100, 100 }, new[] { 110d, 90, 110, 90, 110, 110, 90 }, new[] { "A", "B", "C", "D", "E", "F", "G" }, "B,D,G")] + public void GetCommaSeparatedListOfProfitableBusinesses(double[] revenues, double[] expenses, string[] names, string expected) + { + // Arrange + ChallengesSet06 challenger = new ChallengesSet06(); + List businesses = new List(); + for (int i = 0; i < revenues.Length; i++) + { + businesses.Add(new Business() + { + TotalRevenue = revenues[i], + TotalExpenses = expenses[i], + Name = names[i] + }); + } + + // Act + string actual = challenger.GetCommaSeparatedListOfProfitableBusinesses(businesses); + + // Assert + Assert.Equal(expected, actual); + } + + [Theory] + [InlineData("A", "B", "C", "D", "E")] + [InlineData("C", "D")] + [InlineData("B")] + [InlineData("A", "B", "C", "D", "E", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X")] + [InlineData("C1", "C2", "C3", "C4", "C5", "C6", null, "C7", "C8", "C9", "C10")] + public void GetNameOfHighestParentCompany(params string[] namesInOrder) + { + // Arrange + ChallengesSet06 challenger = new ChallengesSet06(); + string expected = namesInOrder[namesInOrder.Length - 1]; + Business headNode = new Business(); + Business current = headNode; + for (int i = 0; i < namesInOrder.Length; i++) + { + current.Name = namesInOrder[i]; + current.ParentCompany = i == namesInOrder.Length - 1 ? null : new Business(); + current = current.ParentCompany; + } + + // Act + string actual = challenger.GetNameOfHighestParentCompany(headNode); + + // Assert + Assert.Equal(expected, actual); + } + + [Theory] + [InlineData(new char[] { 'X', 'X', 'X' }, // Top row + new char[] { 'O', 'O', 'X' }, + new char[] { 'X', 'O', 'O' }, ChallengesSet06.TicTacToeResult.X)] + + [InlineData(new char[] { 'X', 'X', 'O' }, // Middle row + new char[] { 'O', 'O', 'O' }, + new char[] { 'X', 'O', 'X' }, ChallengesSet06.TicTacToeResult.O)] + + [InlineData(new char[] { 'O', 'X', 'X' }, // Bottom row + new char[] { 'X', 'X', 'O' }, + new char[] { 'O', 'O', 'O' }, ChallengesSet06.TicTacToeResult.O)] + + [InlineData(new char[] { 'O', 'O', 'X' }, // Left column + new char[] { 'O', 'X', 'X' }, + new char[] { 'O', 'X', 'O' }, ChallengesSet06.TicTacToeResult.O)] + + [InlineData(new char[] { 'O', 'X', 'X' }, // Middle column + new char[] { 'X', 'X', 'O' }, + new char[] { 'O', 'X', 'O' }, ChallengesSet06.TicTacToeResult.X)] + + [InlineData(new char[] { 'O', 'O', 'X' }, // Right column + new char[] { 'X', 'O', 'X' }, + new char[] { 'O', 'X', 'X' }, ChallengesSet06.TicTacToeResult.X)] + + [InlineData(new char[] { 'X', 'O', 'X' }, // Forward diagonal + new char[] { 'O', 'X', 'X' }, + new char[] { 'X', 'O', 'O' }, ChallengesSet06.TicTacToeResult.X)] + + [InlineData(new char[] { 'O', 'X', 'X' }, // Back diagonal + new char[] { 'X', 'O', 'X' }, + new char[] { 'X', 'O', 'O' }, ChallengesSet06.TicTacToeResult.O)] + + [InlineData(new char[] { 'X', 'O', 'X' }, + new char[] { 'O', 'O', 'X' }, + new char[] { 'X', 'X', 'O' }, ChallengesSet06.TicTacToeResult.Draw)] + + [InlineData(new char[] { 'O', 'X', 'X' }, + new char[] { 'X', 'O', 'O' }, + new char[] { 'O', 'X', 'X' }, ChallengesSet06.TicTacToeResult.Draw)] + + [InlineData(new char[] { 'X', 'O', 'X' }, + new char[] { 'X', 'O', 'O' }, + new char[] { 'O', 'X', 'X' }, ChallengesSet06.TicTacToeResult.Draw)] + public void GetTicTacToeWinner(char[] row1, char[] row2, char[] row3, ChallengesSet06.TicTacToeResult expected) + { + // Arrange + ChallengesSet06 challenger = new ChallengesSet06(); + char[,] finalBoard = new char[3, 3]; + for (int col = 0; col < 3; col++) finalBoard[0, col] = row1[col]; + for (int col = 0; col < 3; col++) finalBoard[1, col] = row2[col]; + for (int col = 0; col < 3; col++) finalBoard[2, col] = row3[col]; + + // Act + ChallengesSet06.TicTacToeResult actual = challenger.GetTicTacToeWinner(finalBoard); + + // Assert + Assert.Equal(expected, actual); + } + + [Theory] + [InlineData(true, 2, new[] { 1, 2, 3 }, new[] { 5, 2, 5, 8, 3 }, new[] { 2 })] + [InlineData(true, 5, new[] { 1, 5, 3 }, new[] { 5, 2, 5, 8, 3 }, new[] { 2, 10, 9, 5 }, new[] { 5, 1 })] + [InlineData(true, 1, new[] { 1, 5, 3 })] + [InlineData(false, 5, new[] { 1, 5, 3 }, new[] { 5, 2, 5, 8, 3 }, new[] { 2, 10, 9 }, new[] { 5, 1 })] + [InlineData(false, 2, new[] { 1, 5, 3 }, new[] { 5, 2, 5, 8, 3 }, new[] { 2, 10, 9 }, new[] { 5, 1 })] + [InlineData(false, 3, new int[] { })] + [InlineData(false, 4)] + public void EachArrayInJaggedArrayContainsTargetNumber(bool expected, int targetNumber, params int[][] numbers) + { + // Arrange + ChallengesSet06 challenger = new ChallengesSet06(); + + // Act + bool actual = challenger.EachArrayInJaggedArrayContainsTargetNumber(numbers, targetNumber); + + // Assert + Assert.Equal(expected, actual); + } } } diff --git a/ChallengesWithTestsMark8.Tests/ChallengesWithTestsMark8.Tests.csproj b/ChallengesWithTestsMark8.Tests/ChallengesWithTestsMark8.Tests.csproj index c1eec84fb..08a2714f7 100755 --- a/ChallengesWithTestsMark8.Tests/ChallengesWithTestsMark8.Tests.csproj +++ b/ChallengesWithTestsMark8.Tests/ChallengesWithTestsMark8.Tests.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.1 false diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.dll deleted file mode 100755 index fac5e254b..000000000 Binary files a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.dll and /dev/null differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.pdb b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.pdb deleted file mode 100755 index 55d626523..000000000 Binary files a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.pdb and /dev/null differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.runtimeconfig.dev.json b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.runtimeconfig.dev.json deleted file mode 100755 index ece3a6d8e..000000000 --- a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.runtimeconfig.dev.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "/Users/michaeldoyle/.dotnet/store/|arch|/|tfm|", - "/Users/michaeldoyle/.nuget/packages", - "/usr/local/share/dotnet/sdk/NuGetFallbackFolder" - ] - } -} \ No newline at end of file diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll deleted file mode 100755 index 32a0c5f03..000000000 Binary files a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll and /dev/null differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb deleted file mode 100755 index 0489636fc..000000000 Binary files a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb and /dev/null differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.deps.json b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.deps.json old mode 100755 new mode 100644 similarity index 72% rename from ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.deps.json rename to ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.deps.json index 687736d21..f7316dc6b --- a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.deps.json +++ b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.deps.json @@ -1,11 +1,11 @@ { "runtimeTarget": { - "name": ".NETCoreApp,Version=v2.1", - "signature": "93b5d6fa096726aa90619b72e309439934091475" + "name": ".NETCoreApp,Version=v3.1", + "signature": "" }, "compilationOptions": {}, "targets": { - ".NETCoreApp,Version=v2.1": { + ".NETCoreApp,Version=v3.1": { "ChallengesWithTestsMark8.Tests/1.0.0": { "dependencies": { "ChallengesWithTestsMark8": "1.0.0", @@ -84,8 +84,11 @@ "Microsoft.TestPlatform.TestHost": "15.9.0" } }, + "Microsoft.NETCore.Platforms/1.0.1": {}, + "Microsoft.NETCore.Targets/1.0.1": {}, "Microsoft.TestPlatform.ObjectModel/15.9.0": { "dependencies": { + "NETStandard.Library": "1.6.0", "System.ComponentModel.EventBasedAsync": "4.0.11", "System.ComponentModel.TypeConverter": "4.1.0", "System.Diagnostics.Process": "4.1.0", @@ -341,11 +344,14 @@ }, "Microsoft.Win32.Primitives/4.0.1": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", "System.Runtime": "4.1.0" } }, "Microsoft.Win32.Registry/4.0.0": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", "System.Globalization": "4.0.11", "System.Resources.ResourceManager": "4.0.1", @@ -353,16 +359,54 @@ "System.Runtime.Extensions": "4.1.0", "System.Runtime.Handles": "4.0.1", "System.Runtime.InteropServices": "4.1.0" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } + } + }, + "NETStandard.Library/1.6.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.Sockets": "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.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.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "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.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" } }, "Newtonsoft.Json/9.0.1": { @@ -397,14 +441,48 @@ } } }, - "runtime.native.System/4.0.0": {}, + "runtime.native.System/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + } + }, + "runtime.native.System.Net.Http/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + } + }, "System.AppContext/4.1.0": { "dependencies": { "System.Runtime": "4.1.0" } }, + "System.Buffers/4.0.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + } + }, "System.Collections/4.0.11": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", "System.Runtime": "4.1.0" } }, @@ -494,13 +572,34 @@ "System.Threading": "4.0.11" } }, + "System.Console/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" + } + }, "System.Diagnostics.Debug/4.0.11": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", "System.Runtime": "4.1.0" } }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + } + }, "System.Diagnostics.Process/4.1.0": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", "Microsoft.Win32.Registry": "4.0.0", "System.Collections": "4.0.11", @@ -521,20 +620,6 @@ "System.Threading.Thread": "4.0.0", "System.Threading.ThreadPool": "4.0.10", "runtime.native.System": "4.0.0" - }, - "runtimeTargets": { - "runtime/linux/lib/_._": { - "rid": "linux", - "assetType": "runtime" - }, - "runtime/osx/lib/_._": { - "rid": "osx", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } } }, "System.Diagnostics.TextWriterTraceListener/4.0.0": { @@ -549,11 +634,14 @@ }, "System.Diagnostics.Tools/4.0.1": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", "System.Runtime": "4.1.0" } }, "System.Diagnostics.TraceSource/4.0.0": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", "System.Globalization": "4.0.11", @@ -562,20 +650,12 @@ "System.Runtime.Extensions": "4.1.0", "System.Threading": "4.0.11", "runtime.native.System": "4.0.0" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } } }, "System.Diagnostics.Tracing/4.1.0": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", "System.Runtime": "4.1.0" } }, @@ -600,37 +680,73 @@ }, "System.Globalization/4.0.11": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Globalization.Calendars/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", "System.Runtime": "4.1.0" } }, "System.Globalization.Extensions/4.0.1": { "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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } } }, "System.IO/4.1.0": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", "System.Runtime": "4.1.0", "System.Text.Encoding": "4.0.11", "System.Threading.Tasks": "4.0.11" } }, + "System.IO.Compression/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "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.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.IO.Compression": "4.1.0" + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "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.Text.Encoding": "4.0.11" + } + }, "System.IO.FileSystem/4.0.1": { "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", @@ -674,6 +790,54 @@ "System.Threading": "4.0.11" } }, + "System.Net.Http/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Net.Primitives": "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", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + } + }, + "System.Net.Primitives/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + } + }, + "System.Net.Sockets/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + } + }, "System.ObjectModel/4.0.12": { "dependencies": { "System.Collections": "4.0.11", @@ -713,6 +877,8 @@ }, "System.Reflection/4.1.0": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", "System.IO": "4.1.0", "System.Reflection.Primitives": "4.0.1", "System.Runtime": "4.1.0" @@ -744,6 +910,8 @@ }, "System.Reflection.Extensions/4.0.1": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", "System.Reflection": "4.1.0", "System.Runtime": "4.1.0" } @@ -769,6 +937,8 @@ }, "System.Reflection.Primitives/4.0.1": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", "System.Runtime": "4.1.0" } }, @@ -780,24 +950,37 @@ }, "System.Resources.ResourceManager/4.0.1": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", "System.Globalization": "4.0.11", "System.Reflection": "4.1.0", "System.Runtime": "4.1.0" } }, - "System.Runtime/4.1.0": {}, + "System.Runtime/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + } + }, "System.Runtime.Extensions/4.1.0": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", "System.Runtime": "4.1.0" } }, "System.Runtime.Handles/4.0.1": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", "System.Runtime": "4.1.0" } }, "System.Runtime.InteropServices/4.1.0": { "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", @@ -806,22 +989,13 @@ }, "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { "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" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } } }, "System.Runtime.Loader/4.0.0": { @@ -831,6 +1005,14 @@ "System.Runtime": "4.1.0" } }, + "System.Runtime.Numerics/4.0.1": { + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + } + }, "System.Runtime.Serialization.Json/4.0.2": { "dependencies": { "System.IO": "4.1.0", @@ -844,13 +1026,139 @@ "System.Runtime": "4.1.0" } }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "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.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "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.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + } + }, + "System.Security.Cryptography.Csp/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "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.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "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.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "dependencies": { + "System.Collections": "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.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "dependencies": { + "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.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "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.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Csp": "4.0.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + } + }, "System.Text.Encoding/4.0.11": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", "System.Runtime": "4.1.0" } }, "System.Text.Encoding.Extensions/4.0.11": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", "System.Runtime": "4.1.0", "System.Text.Encoding": "4.0.11" } @@ -873,6 +1181,8 @@ }, "System.Threading.Tasks/4.0.11": { "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", "System.Runtime": "4.1.0" } }, @@ -894,6 +1204,13 @@ "System.Runtime.Handles": "4.0.1" } }, + "System.Threading.Timer/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + } + }, "System.Xml.ReaderWriter/4.0.11": { "dependencies": { "System.Collections": "4.0.11", @@ -1102,6 +1419,20 @@ "path": "microsoft.net.test.sdk/15.9.0", "hashPath": "microsoft.net.test.sdk.15.9.0.nupkg.sha512" }, + "Microsoft.NETCore.Platforms/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==", + "path": "microsoft.netcore.platforms/1.0.1", + "hashPath": "microsoft.netcore.platforms.1.0.1.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", + "path": "microsoft.netcore.targets/1.0.1", + "hashPath": "microsoft.netcore.targets.1.0.1.nupkg.sha512" + }, "Microsoft.TestPlatform.ObjectModel/15.9.0": { "type": "package", "serviceable": true, @@ -1130,6 +1461,13 @@ "path": "microsoft.win32.registry/4.0.0", "hashPath": "microsoft.win32.registry.4.0.0.nupkg.sha512" }, + "NETStandard.Library/1.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==", + "path": "netstandard.library/1.6.0", + "hashPath": "netstandard.library.1.6.0.nupkg.sha512" + }, "Newtonsoft.Json/9.0.1": { "type": "package", "serviceable": true, @@ -1144,6 +1482,27 @@ "path": "runtime.native.system/4.0.0", "hashPath": "runtime.native.system.4.0.0.nupkg.sha512" }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", + "path": "runtime.native.system.io.compression/4.1.0", + "hashPath": "runtime.native.system.io.compression.4.1.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==", + "path": "runtime.native.system.net.http/4.0.1", + "hashPath": "runtime.native.system.net.http.4.0.1.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", + "path": "runtime.native.system.security.cryptography/4.0.0", + "hashPath": "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512" + }, "System.AppContext/4.1.0": { "type": "package", "serviceable": true, @@ -1151,6 +1510,13 @@ "path": "system.appcontext/4.1.0", "hashPath": "system.appcontext.4.1.0.nupkg.sha512" }, + "System.Buffers/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==", + "path": "system.buffers/4.0.0", + "hashPath": "system.buffers.4.0.0.nupkg.sha512" + }, "System.Collections/4.0.11": { "type": "package", "serviceable": true, @@ -1214,6 +1580,13 @@ "path": "system.componentmodel.typeconverter/4.1.0", "hashPath": "system.componentmodel.typeconverter.4.1.0.nupkg.sha512" }, + "System.Console/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", + "path": "system.console/4.0.0", + "hashPath": "system.console.4.0.0.nupkg.sha512" + }, "System.Diagnostics.Debug/4.0.11": { "type": "package", "serviceable": true, @@ -1221,6 +1594,13 @@ "path": "system.diagnostics.debug/4.0.11", "hashPath": "system.diagnostics.debug.4.0.11.nupkg.sha512" }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==", + "path": "system.diagnostics.diagnosticsource/4.0.0", + "hashPath": "system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512" + }, "System.Diagnostics.Process/4.1.0": { "type": "package", "serviceable": true, @@ -1270,6 +1650,13 @@ "path": "system.globalization/4.0.11", "hashPath": "system.globalization.4.0.11.nupkg.sha512" }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", + "path": "system.globalization.calendars/4.0.1", + "hashPath": "system.globalization.calendars.4.0.1.nupkg.sha512" + }, "System.Globalization.Extensions/4.0.1": { "type": "package", "serviceable": true, @@ -1284,6 +1671,20 @@ "path": "system.io/4.1.0", "hashPath": "system.io.4.1.0.nupkg.sha512" }, + "System.IO.Compression/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==", + "path": "system.io.compression/4.1.0", + "hashPath": "system.io.compression.4.1.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", + "path": "system.io.compression.zipfile/4.0.1", + "hashPath": "system.io.compression.zipfile.4.0.1.nupkg.sha512" + }, "System.IO.FileSystem/4.0.1": { "type": "package", "serviceable": true, @@ -1312,6 +1713,27 @@ "path": "system.linq.expressions/4.1.0", "hashPath": "system.linq.expressions.4.1.0.nupkg.sha512" }, + "System.Net.Http/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", + "path": "system.net.http/4.1.0", + "hashPath": "system.net.http.4.1.0.nupkg.sha512" + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", + "path": "system.net.primitives/4.0.11", + "hashPath": "system.net.primitives.4.0.11.nupkg.sha512" + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", + "path": "system.net.sockets/4.1.0", + "hashPath": "system.net.sockets.4.1.0.nupkg.sha512" + }, "System.ObjectModel/4.0.12": { "type": "package", "serviceable": true, @@ -1431,6 +1853,13 @@ "path": "system.runtime.loader/4.0.0", "hashPath": "system.runtime.loader.4.0.0.nupkg.sha512" }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", + "path": "system.runtime.numerics/4.0.1", + "hashPath": "system.runtime.numerics.4.0.1.nupkg.sha512" + }, "System.Runtime.Serialization.Json/4.0.2": { "type": "package", "serviceable": true, @@ -1445,6 +1874,55 @@ "path": "system.runtime.serialization.primitives/4.1.1", "hashPath": "system.runtime.serialization.primitives.4.1.1.nupkg.sha512" }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", + "path": "system.security.cryptography.algorithms/4.2.0", + "hashPath": "system.security.cryptography.algorithms.4.2.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==", + "path": "system.security.cryptography.cng/4.2.0", + "hashPath": "system.security.cryptography.cng.4.2.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==", + "path": "system.security.cryptography.csp/4.0.0", + "hashPath": "system.security.cryptography.csp.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", + "path": "system.security.cryptography.encoding/4.0.0", + "hashPath": "system.security.cryptography.encoding.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==", + "path": "system.security.cryptography.openssl/4.0.0", + "hashPath": "system.security.cryptography.openssl.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", + "path": "system.security.cryptography.primitives/4.0.0", + "hashPath": "system.security.cryptography.primitives.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", + "path": "system.security.cryptography.x509certificates/4.1.0", + "hashPath": "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512" + }, "System.Text.Encoding/4.0.11": { "type": "package", "serviceable": true, @@ -1501,6 +1979,13 @@ "path": "system.threading.threadpool/4.0.10", "hashPath": "system.threading.threadpool.4.0.10.nupkg.sha512" }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", + "path": "system.threading.timer/4.0.1", + "hashPath": "system.threading.timer.4.0.1.nupkg.sha512" + }, "System.Xml.ReaderWriter/4.0.11": { "type": "package", "serviceable": true, diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.dll new file mode 100644 index 000000000..6c8b9f7c3 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.pdb b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.pdb new file mode 100644 index 000000000..aa0253db1 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.pdb differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.runtimeconfig.dev.json b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.runtimeconfig.dev.json new file mode 100644 index 000000000..147c79976 --- /dev/null +++ b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.runtimeconfig.dev.json @@ -0,0 +1,10 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\johnd\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\johnd\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet" + ] + } +} \ No newline at end of file diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.runtimeconfig.json b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.runtimeconfig.json new file mode 100644 index 000000000..bc456d786 --- /dev/null +++ b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp3.1", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "3.1.0" + } + } +} \ No newline at end of file diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.deps.json b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.deps.json new file mode 100644 index 000000000..b1939c3a8 --- /dev/null +++ b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v2.1", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v2.1": { + "ChallengesWithTestsMark8/1.0.0": { + "runtime": { + "ChallengesWithTestsMark8.dll": {} + } + } + } + }, + "libraries": { + "ChallengesWithTestsMark8/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.dll new file mode 100644 index 000000000..1d0c67561 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.pdb b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.pdb new file mode 100644 index 000000000..c835c25ca Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.pdb differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.runtimeconfig.dev.json b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.runtimeconfig.dev.json new file mode 100644 index 000000000..147c79976 --- /dev/null +++ b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.runtimeconfig.dev.json @@ -0,0 +1,10 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\johnd\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\johnd\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet" + ] + } +} \ No newline at end of file diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.runtimeconfig.json b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.runtimeconfig.json old mode 100755 new mode 100644 similarity index 100% rename from ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.runtimeconfig.json rename to ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.runtimeconfig.json diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll new file mode 100644 index 000000000..b5253c52e Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 000000000..73ed06851 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll new file mode 100644 index 000000000..a2ad67c8f Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll new file mode 100644 index 000000000..0942b2e4a Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll new file mode 100644 index 000000000..0c7c9fb2a Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll new file mode 100644 index 000000000..84df1bbba Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll new file mode 100644 index 000000000..97ec4aa87 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll new file mode 100644 index 000000000..d7886d759 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll new file mode 100644 index 000000000..145bd98cd Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll new file mode 100644 index 000000000..5f2336e6c Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll new file mode 100644 index 000000000..a8f3e5ac2 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..864d04f24 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..e1adcd14f Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..43c5c1215 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..bf4801589 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..16736bd6c Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..0068eea42 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..da02c009c Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..4f8fde126 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..7cb526e42 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..d358fd85a Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..a5654ab1a Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..0cc8bbbd1 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..19c6e3ab1 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..97153d2dc Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..d0457e338 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..ee184c34c Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..b692437b8 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..37e3eeede Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..cc090af10 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..9efa83b30 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..132c4a401 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..44638c0dd Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..e849ea295 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..023dd0e5b Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..2b7fdfb51 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..48e08d45c Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..67f648f64 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..610ae5f3f Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..db2ed30fb Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..e38e857bc Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..809944f79 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..1be39048e Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..b6a48d554 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..8c09d3ab3 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..f80dcfa3c Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..6128084c6 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..3a1222291 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..3630c3090 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..06a7245ec Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..aa9711270 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..a18103ceb Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..d4fb014a2 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..4bf4a61eb Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..91f21164b Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..ab46be944 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..f61b6edda Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..ba32ab69d Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..a89f59061 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..bb13c1c54 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..c2d832f86 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/testhost.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/testhost.dll new file mode 100644 index 000000000..d2c775a07 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/testhost.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..0329e64cb Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..3069c9b9d Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..d4ec91e6a Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..fbd08c843 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..3bc982d73 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.abstractions.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.abstractions.dll new file mode 100644 index 000000000..409e15bf4 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.abstractions.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.assert.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.assert.dll new file mode 100644 index 000000000..0f4a39ce2 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.assert.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.core.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.core.dll new file mode 100644 index 000000000..1194b7408 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.core.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.execution.dotnet.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.execution.dotnet.dll new file mode 100644 index 000000000..b33e04901 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.execution.dotnet.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/xunit.runner.reporters.netcoreapp10.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.runner.reporters.netcoreapp10.dll old mode 100755 new mode 100644 similarity index 100% rename from ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/xunit.runner.reporters.netcoreapp10.dll rename to ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.runner.reporters.netcoreapp10.dll diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/xunit.runner.utility.netcoreapp10.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.runner.utility.netcoreapp10.dll old mode 100755 new mode 100644 similarity index 100% rename from ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/xunit.runner.utility.netcoreapp10.dll rename to ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.runner.utility.netcoreapp10.dll diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll old mode 100755 new mode 100644 similarity index 100% rename from ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll rename to ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..4c0eaa58f Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..4a1dbf149 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..6547b883b Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..14cd029c6 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..1cd265d4b Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..95eef5ce5 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..b0efc870b Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..8bc4814ab Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..a664c0360 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..1034dd954 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.cache b/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.cache index 81ce992e5..eb639c739 100644 --- a/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.cache +++ b/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.cache @@ -1,5 +1,9 @@ { "version": 1, - "dgSpecHash": "2r+7OiO2+aY5Kmw+JJvGHw5HV0xP8hldSUgVPUfCanvHbPF8e3g9gxCt/KW0CirR1Y1a2C5wQEvl2lzVuoo0yQ==", +<<<<<<< HEAD + "dgSpecHash": "xHlMWpkdXsg9RatvcZcPKtZOuiU33gL+xRgtdSVb5NS+dbnZELKAPRi+Y1S+ZAMR012qWg/NehwcUnLDVFvZzQ==", +======= + "dgSpecHash": "BXutZ3X1dNjv2G69a60YyC31LgF+4OewPDrReQ4V5Q5EzH/NgJnvqb5YUauxvRA60kZ5TcsLKLLhjMpAIxMPZQ==", +>>>>>>> bcbd8dad8e65dabc7c0a27facecc5adb7f5032a8 "success": true } \ No newline at end of file diff --git a/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.dgspec.json b/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.dgspec.json old mode 100755 new mode 100644 index fb9d6a053..4e43a7e20 --- a/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.dgspec.json +++ b/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.dgspec.json @@ -1,35 +1,41 @@ { "format": 1, "restore": { - "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8.Tests/ChallengesWithTestsMark8.Tests.csproj": {} + "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8.Tests\\ChallengesWithTestsMark8.Tests.csproj": {} }, "projects": { - "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8.Tests/ChallengesWithTestsMark8.Tests.csproj": { + "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8.Tests\\ChallengesWithTestsMark8.Tests.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8.Tests/ChallengesWithTestsMark8.Tests.csproj", + "projectUniqueName": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8.Tests\\ChallengesWithTestsMark8.Tests.csproj", "projectName": "ChallengesWithTestsMark8.Tests", - "projectPath": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8.Tests/ChallengesWithTestsMark8.Tests.csproj", - "packagesPath": "/Users/michaeldoyle/.nuget/packages/", - "outputPath": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8.Tests/obj/", + "projectPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8.Tests\\ChallengesWithTestsMark8.Tests.csproj", + "packagesPath": "C:\\Users\\johnd\\.nuget\\packages\\", + "outputPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8.Tests\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ - "/usr/local/share/dotnet/sdk/NuGetFallbackFolder" + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\" ], "configFilePaths": [ - "/Users/michaeldoyle/.config/NuGet/NuGet.Config" + "C:\\Users\\johnd\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" ], "originalTargetFrameworks": [ - "netcoreapp2.1" + "netcoreapp3.1" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { - "netcoreapp2.1": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", "projectReferences": { - "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/ChallengesWithTestsMark8.csproj": { - "projectPath": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/ChallengesWithTestsMark8.csproj" + "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj": { + "projectPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj" } } } @@ -41,18 +47,13 @@ } }, "frameworks": { - "netcoreapp2.1": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", "dependencies": { "Microsoft.NET.Test.Sdk": { "target": "Package", "version": "[15.9.0, )" }, - "Microsoft.NETCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.1.0, )", - "autoReferenced": true - }, "xunit": { "target": "Package", "version": "[2.4.0, )" @@ -63,36 +64,53 @@ } }, "imports": [ - "net461" + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" ], "assetTargetFallback": true, - "warn": true + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" } } }, - "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/ChallengesWithTestsMark8.csproj": { + "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/ChallengesWithTestsMark8.csproj", + "projectUniqueName": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj", "projectName": "ChallengesWithTestsMark8", - "projectPath": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/ChallengesWithTestsMark8.csproj", - "packagesPath": "/Users/michaeldoyle/.nuget/packages/", - "outputPath": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/obj/", + "projectPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj", + "packagesPath": "C:\\Users\\johnd\\.nuget\\packages\\", + "outputPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ - "/usr/local/share/dotnet/sdk/NuGetFallbackFolder" + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\" ], "configFilePaths": [ - "/Users/michaeldoyle/.config/NuGet/NuGet.Config" + "C:\\Users\\johnd\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" ], "originalTargetFrameworks": [ "netcoreapp2.1" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", "projectReferences": {} } }, @@ -104,18 +122,26 @@ }, "frameworks": { "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", "dependencies": { "Microsoft.NETCore.App": { + "suppressParent": "All", "target": "Package", "version": "[2.1.0, )", "autoReferenced": true } }, "imports": [ - "net461" + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" ], "assetTargetFallback": true, - "warn": true + "warn": true, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" } } } diff --git a/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.g.props b/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.g.props index e6a7c6ce5..dd8420af4 100644 --- a/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.g.props +++ b/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.g.props @@ -4,23 +4,27 @@ True NuGet $(MSBuildThisFileDirectory)project.assets.json - /Users/michaeldoyle/.nuget/packages/ - /Users/michaeldoyle/.nuget/packages/;/usr/local/share/dotnet/sdk/NuGetFallbackFolder + $(UserProfile)\.nuget\packages\ + C:\Users\johnd\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\ PackageReference - 5.1.0 + 5.10.0 + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - + + + + - /usr/local/share/dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1 - /Users/michaeldoyle/.nuget/packages/xunit.analyzers/0.10.0 + C:\Users\johnd\.nuget\packages\newtonsoft.json\9.0.1 + C:\Users\johnd\.nuget\packages\xunit.analyzers\0.10.0 \ No newline at end of file diff --git a/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.g.targets b/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.g.targets index d5c33a578..94c53317b 100644 --- a/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.g.targets +++ b/ChallengesWithTestsMark8.Tests/obj/ChallengesWithTestsMark8.Tests.csproj.nuget.g.targets @@ -4,10 +4,8 @@ $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - + + + \ No newline at end of file diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/.NETCoreApp,Version=v2.1.AssemblyAttributes.cs b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/.NETCoreApp,Version=v2.1.AssemblyAttributes.cs new file mode 100644 index 000000000..759b2ebeb --- /dev/null +++ b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/.NETCoreApp,Version=v2.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v2.1", FrameworkDisplayName = "")] diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.Program.cs b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.Program.cs index a5311107a..17a78ecdc 100755 Binary files a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.Program.cs and b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.Program.cs differ diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.assets.cache b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.assets.cache index ed7fb48dc..bb3a9c7bc 100755 Binary files a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.assets.cache and b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.assets.cache differ diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csproj.CoreCompileInputs.cache b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csproj.CoreCompileInputs.cache index 91ea6b6f0..9b8a84200 100755 --- a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csproj.CoreCompileInputs.cache +++ b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -5ca88964df8afca8d81b1ea339a5d0a23dc4c116 +ee203271604991d179a01ad18081dd8de992ba4b diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csproj.FileListAbsolute.txt b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csproj.FileListAbsolute.txt index 634e41239..7c759f949 100755 --- a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csproj.FileListAbsolute.txt +++ b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csproj.FileListAbsolute.txt @@ -49,3 +49,76 @@ C:/Users/Chip/source/repos/Mark8ChallengesWithTests/ChallengesWithTestsMark8.Tes /Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csproj.CopyComplete /Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.dll /Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.pdb +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/xunit.runner.reporters.netcoreapp10.dll +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/xunit.runner.utility.netcoreapp10.dll +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.deps.json +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.runtimeconfig.json +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.runtimeconfig.dev.json +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.dll +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.pdb +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csprojAssemblyReference.cache +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.AssemblyInfoInputs.cache +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.AssemblyInfo.cs +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csproj.CopyComplete +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.dll +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.pdb +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.dll +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.pdb +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/xunit.runner.reporters.netcoreapp10.dll +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/xunit.runner.utility.netcoreapp10.dll +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.deps.json +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.runtimeconfig.json +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.runtimeconfig.dev.json +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.dll +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.pdb +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csprojAssemblyReference.cache +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.AssemblyInfoInputs.cache +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.AssemblyInfo.cs +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csproj.CoreCompileInputs.cache +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csproj.CopyComplete +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.genruntimeconfig.cache +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.AssemblyInfoInputs.cache +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.AssemblyInfo.cs +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.csproj.CoreCompileInputs.cache +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\xunit.runner.visualstudio.dotnetcore.testadapter.dll +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\xunit.runner.reporters.netcoreapp10.dll +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\xunit.runner.utility.netcoreapp10.dll +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.deps.json +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.runtimeconfig.json +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.runtimeconfig.dev.json +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.dll +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.pdb +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.dll +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.pdb +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.csprojAssemblyReference.cache +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.csproj.CopyComplete +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.dll +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.pdb +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.genruntimeconfig.cache +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\xunit.runner.visualstudio.dotnetcore.testadapter.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\xunit.runner.reporters.netcoreapp10.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\xunit.runner.utility.netcoreapp10.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.deps.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.runtimeconfig.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.runtimeconfig.dev.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.deps.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.runtimeconfig.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.runtimeconfig.dev.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.pdb +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.pdb +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.csprojAssemblyReference.cache +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.AssemblyInfoInputs.cache +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.AssemblyInfo.cs +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.csproj.CoreCompileInputs.cache +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.csproj.CopyComplete +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.pdb +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.Tests.genruntimeconfig.cache diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csprojAssemblyReference.cache b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csprojAssemblyReference.cache deleted file mode 100644 index f2cb530c3..000000000 Binary files a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csprojAssemblyReference.cache and /dev/null differ diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.dll b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.dll deleted file mode 100755 index fac5e254b..000000000 Binary files a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.dll and /dev/null differ diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.pdb b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.pdb deleted file mode 100755 index 55d626523..000000000 Binary files a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.pdb and /dev/null differ diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 000000000..ad8dfe1a6 --- /dev/null +++ b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.AssemblyInfo.cs b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.AssemblyInfo.cs new file mode 100644 index 000000000..85c1ed08b --- /dev/null +++ b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ChallengesWithTestsMark8.Tests")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ChallengesWithTestsMark8.Tests")] +[assembly: System.Reflection.AssemblyTitleAttribute("ChallengesWithTestsMark8.Tests")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.AssemblyInfoInputs.cache b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.AssemblyInfoInputs.cache new file mode 100644 index 000000000..cb2a7ca74 --- /dev/null +++ b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3173b525c24f48bc910746b516ec939894d77bfa diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.Program.cs b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.Program.cs new file mode 100644 index 000000000..17a78ecdc Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.Program.cs differ diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.assets.cache b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.assets.cache new file mode 100644 index 000000000..6c92b1cf5 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.assets.cache differ diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.csproj.AssemblyReference.cache b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.csproj.AssemblyReference.cache new file mode 100644 index 000000000..f5e894aea Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.csproj.AssemblyReference.cache differ diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csproj.CopyComplete b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.csproj.CopyComplete old mode 100755 new mode 100644 similarity index 100% rename from ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.Tests.csproj.CopyComplete rename to ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.csproj.CopyComplete diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.csproj.CoreCompileInputs.cache b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..bde54800e --- /dev/null +++ b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +db9daa5f0c241f806454e4f146de14d6db087374 diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.csproj.FileListAbsolute.txt b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..da54e74fe --- /dev/null +++ b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.csproj.FileListAbsolute.txt @@ -0,0 +1,102 @@ +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ChallengesWithTestsMark8.deps.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ChallengesWithTestsMark8.runtimeconfig.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ChallengesWithTestsMark8.runtimeconfig.dev.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\xunit.runner.visualstudio.dotnetcore.testadapter.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\xunit.runner.reporters.netcoreapp10.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\xunit.runner.utility.netcoreapp10.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ChallengesWithTestsMark8.Tests.deps.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ChallengesWithTestsMark8.Tests.runtimeconfig.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ChallengesWithTestsMark8.Tests.runtimeconfig.dev.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ChallengesWithTestsMark8.Tests.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ChallengesWithTestsMark8.Tests.pdb +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.CodeCoverage.Shim.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\Microsoft.DotNet.PlatformAbstractions.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyModel.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.CoreUtilities.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.PlatformAbstractions.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.CommunicationUtilities.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.CrossPlatEngine.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.Common.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\testhost.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\System.Xml.XPath.XmlDocument.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\xunit.abstractions.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\xunit.assert.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\xunit.core.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\xunit.execution.dotnet.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\de\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\es\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\it\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ChallengesWithTestsMark8.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\bin\Debug\netcoreapp3.1\ChallengesWithTestsMark8.pdb +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp3.1\ChallengesWithTestsMark8.Tests.AssemblyInfoInputs.cache +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp3.1\ChallengesWithTestsMark8.Tests.AssemblyInfo.cs +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp3.1\ChallengesWithTestsMark8.Tests.csproj.CoreCompileInputs.cache +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp3.1\ChallengesWithTestsMark8.Tests.csproj.CopyComplete +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp3.1\ChallengesWithTestsMark8.Tests.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp3.1\ChallengesWithTestsMark8.Tests.pdb +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp3.1\ChallengesWithTestsMark8.Tests.genruntimeconfig.cache +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8.Tests\obj\Debug\netcoreapp3.1\ChallengesWithTestsMark8.Tests.csproj.AssemblyReference.cache diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.dll b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.dll new file mode 100644 index 000000000..6c8b9f7c3 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.dll differ diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.genruntimeconfig.cache b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.genruntimeconfig.cache new file mode 100644 index 000000000..a93a2e9bb --- /dev/null +++ b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.genruntimeconfig.cache @@ -0,0 +1 @@ +be7e588683ae96f19e1ef4a4d1d3c7c8b3b6fdef diff --git a/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.pdb b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.pdb new file mode 100644 index 000000000..aa0253db1 Binary files /dev/null and b/ChallengesWithTestsMark8.Tests/obj/Debug/netcoreapp3.1/ChallengesWithTestsMark8.Tests.pdb differ diff --git a/ChallengesWithTestsMark8.Tests/obj/project.assets.json b/ChallengesWithTestsMark8.Tests/obj/project.assets.json index c0dd1d006..f49817e85 100644 --- a/ChallengesWithTestsMark8.Tests/obj/project.assets.json +++ b/ChallengesWithTestsMark8.Tests/obj/project.assets.json @@ -1,7 +1,7 @@ { "version": 3, "targets": { - ".NETCoreApp,Version=v2.1": { + ".NETCoreApp,Version=v3.1": { "Microsoft.CodeCoverage/15.9.0": { "type": "package", "compile": { @@ -91,180 +91,7 @@ "buildMultiTargeting/Microsoft.Net.Test.Sdk.props": {} } }, - "Microsoft.NETCore.App/2.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetHostPolicy": "2.1.0", - "Microsoft.NETCore.Platforms": "2.1.0", - "Microsoft.NETCore.Targets": "2.1.0", - "NETStandard.Library": "2.0.3" - }, - "compile": { - "ref/netcoreapp2.1/Microsoft.CSharp.dll": {}, - "ref/netcoreapp2.1/Microsoft.VisualBasic.dll": {}, - "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll": {}, - "ref/netcoreapp2.1/System.AppContext.dll": {}, - "ref/netcoreapp2.1/System.Buffers.dll": {}, - "ref/netcoreapp2.1/System.Collections.Concurrent.dll": {}, - "ref/netcoreapp2.1/System.Collections.Immutable.dll": {}, - "ref/netcoreapp2.1/System.Collections.NonGeneric.dll": {}, - "ref/netcoreapp2.1/System.Collections.Specialized.dll": {}, - "ref/netcoreapp2.1/System.Collections.dll": {}, - "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll": {}, - "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll": {}, - "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll": {}, - "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll": {}, - "ref/netcoreapp2.1/System.ComponentModel.dll": {}, - "ref/netcoreapp2.1/System.Configuration.dll": {}, - "ref/netcoreapp2.1/System.Console.dll": {}, - "ref/netcoreapp2.1/System.Core.dll": {}, - "ref/netcoreapp2.1/System.Data.Common.dll": {}, - "ref/netcoreapp2.1/System.Data.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.Debug.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.Process.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.Tools.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll": {}, - "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll": {}, - "ref/netcoreapp2.1/System.Drawing.Primitives.dll": {}, - "ref/netcoreapp2.1/System.Drawing.dll": {}, - "ref/netcoreapp2.1/System.Dynamic.Runtime.dll": {}, - "ref/netcoreapp2.1/System.Globalization.Calendars.dll": {}, - "ref/netcoreapp2.1/System.Globalization.Extensions.dll": {}, - "ref/netcoreapp2.1/System.Globalization.dll": {}, - "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll": {}, - "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll": {}, - "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll": {}, - "ref/netcoreapp2.1/System.IO.Compression.dll": {}, - "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll": {}, - "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll": {}, - "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll": {}, - "ref/netcoreapp2.1/System.IO.FileSystem.dll": {}, - "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll": {}, - "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll": {}, - "ref/netcoreapp2.1/System.IO.Pipes.dll": {}, - "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll": {}, - "ref/netcoreapp2.1/System.IO.dll": {}, - "ref/netcoreapp2.1/System.Linq.Expressions.dll": {}, - "ref/netcoreapp2.1/System.Linq.Parallel.dll": {}, - "ref/netcoreapp2.1/System.Linq.Queryable.dll": {}, - "ref/netcoreapp2.1/System.Linq.dll": {}, - "ref/netcoreapp2.1/System.Memory.dll": {}, - "ref/netcoreapp2.1/System.Net.Http.dll": {}, - "ref/netcoreapp2.1/System.Net.HttpListener.dll": {}, - "ref/netcoreapp2.1/System.Net.Mail.dll": {}, - "ref/netcoreapp2.1/System.Net.NameResolution.dll": {}, - "ref/netcoreapp2.1/System.Net.NetworkInformation.dll": {}, - "ref/netcoreapp2.1/System.Net.Ping.dll": {}, - "ref/netcoreapp2.1/System.Net.Primitives.dll": {}, - "ref/netcoreapp2.1/System.Net.Requests.dll": {}, - "ref/netcoreapp2.1/System.Net.Security.dll": {}, - "ref/netcoreapp2.1/System.Net.ServicePoint.dll": {}, - "ref/netcoreapp2.1/System.Net.Sockets.dll": {}, - "ref/netcoreapp2.1/System.Net.WebClient.dll": {}, - "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll": {}, - "ref/netcoreapp2.1/System.Net.WebProxy.dll": {}, - "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll": {}, - "ref/netcoreapp2.1/System.Net.WebSockets.dll": {}, - "ref/netcoreapp2.1/System.Net.dll": {}, - "ref/netcoreapp2.1/System.Numerics.Vectors.dll": {}, - "ref/netcoreapp2.1/System.Numerics.dll": {}, - "ref/netcoreapp2.1/System.ObjectModel.dll": {}, - "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll": {}, - "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll": {}, - "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll": {}, - "ref/netcoreapp2.1/System.Reflection.Emit.dll": {}, - "ref/netcoreapp2.1/System.Reflection.Extensions.dll": {}, - "ref/netcoreapp2.1/System.Reflection.Metadata.dll": {}, - "ref/netcoreapp2.1/System.Reflection.Primitives.dll": {}, - "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll": {}, - "ref/netcoreapp2.1/System.Reflection.dll": {}, - "ref/netcoreapp2.1/System.Resources.Reader.dll": {}, - "ref/netcoreapp2.1/System.Resources.ResourceManager.dll": {}, - "ref/netcoreapp2.1/System.Resources.Writer.dll": {}, - "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Extensions.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Handles.dll": {}, - "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, - "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, - "ref/netcoreapp2.1/System.Runtime.InteropServices.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Loader.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Numerics.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll": {}, - "ref/netcoreapp2.1/System.Runtime.Serialization.dll": {}, - "ref/netcoreapp2.1/System.Runtime.dll": {}, - "ref/netcoreapp2.1/System.Security.Claims.dll": {}, - "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll": {}, - "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll": {}, - "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll": {}, - "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll": {}, - "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll": {}, - "ref/netcoreapp2.1/System.Security.Principal.dll": {}, - "ref/netcoreapp2.1/System.Security.SecureString.dll": {}, - "ref/netcoreapp2.1/System.Security.dll": {}, - "ref/netcoreapp2.1/System.ServiceModel.Web.dll": {}, - "ref/netcoreapp2.1/System.ServiceProcess.dll": {}, - "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll": {}, - "ref/netcoreapp2.1/System.Text.Encoding.dll": {}, - "ref/netcoreapp2.1/System.Text.RegularExpressions.dll": {}, - "ref/netcoreapp2.1/System.Threading.Overlapped.dll": {}, - "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll": {}, - "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll": {}, - "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll": {}, - "ref/netcoreapp2.1/System.Threading.Tasks.dll": {}, - "ref/netcoreapp2.1/System.Threading.Thread.dll": {}, - "ref/netcoreapp2.1/System.Threading.ThreadPool.dll": {}, - "ref/netcoreapp2.1/System.Threading.Timer.dll": {}, - "ref/netcoreapp2.1/System.Threading.dll": {}, - "ref/netcoreapp2.1/System.Transactions.Local.dll": {}, - "ref/netcoreapp2.1/System.Transactions.dll": {}, - "ref/netcoreapp2.1/System.ValueTuple.dll": {}, - "ref/netcoreapp2.1/System.Web.HttpUtility.dll": {}, - "ref/netcoreapp2.1/System.Web.dll": {}, - "ref/netcoreapp2.1/System.Windows.dll": {}, - "ref/netcoreapp2.1/System.Xml.Linq.dll": {}, - "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll": {}, - "ref/netcoreapp2.1/System.Xml.Serialization.dll": {}, - "ref/netcoreapp2.1/System.Xml.XDocument.dll": {}, - "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll": {}, - "ref/netcoreapp2.1/System.Xml.XPath.dll": {}, - "ref/netcoreapp2.1/System.Xml.XmlDocument.dll": {}, - "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll": {}, - "ref/netcoreapp2.1/System.Xml.dll": {}, - "ref/netcoreapp2.1/System.dll": {}, - "ref/netcoreapp2.1/WindowsBase.dll": {}, - "ref/netcoreapp2.1/mscorlib.dll": {}, - "ref/netcoreapp2.1/netstandard.dll": {} - }, - "build": { - "build/netcoreapp2.1/Microsoft.NETCore.App.props": {}, - "build/netcoreapp2.1/Microsoft.NETCore.App.targets": {} - } - }, - "Microsoft.NETCore.DotNetAppHost/2.1.0": { - "type": "package" - }, - "Microsoft.NETCore.DotNetHostPolicy/2.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetHostResolver": "2.1.0" - } - }, - "Microsoft.NETCore.DotNetHostResolver/2.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.DotNetAppHost": "2.1.0" - } - }, - "Microsoft.NETCore.Platforms/2.1.0": { + "Microsoft.NETCore.Platforms/1.0.1": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -273,7 +100,7 @@ "lib/netstandard1.0/_._": {} } }, - "Microsoft.NETCore.Targets/2.1.0": { + "Microsoft.NETCore.Targets/1.0.1": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -538,7 +365,7 @@ "System.Runtime": "4.1.0" }, "compile": { - "ref/netstandard1.3/_._": {} + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} } }, "Microsoft.Win32.Registry/4.0.0": { @@ -567,19 +394,53 @@ } } }, - "NETStandard.Library/2.0.3": { + "NETStandard.Library/1.6.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": {} + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.Sockets": "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.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.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "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.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" } }, "Newtonsoft.Json/9.0.1": { @@ -628,6 +489,45 @@ "lib/netstandard1.0/_._": {} } }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, "System.AppContext/4.1.0": { "type": "package", "dependencies": { @@ -640,6 +540,22 @@ "lib/netstandard1.6/System.AppContext.dll": {} } }, + "System.Buffers/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, "System.Collections/4.0.11": { "type": "package", "dependencies": { @@ -666,7 +582,7 @@ "System.Threading.Tasks": "4.0.11" }, "compile": { - "ref/netstandard1.3/_._": {} + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/netstandard1.3/System.Collections.Concurrent.dll": {} @@ -793,6 +709,19 @@ "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} } }, + "System.Console/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, "System.Diagnostics.Debug/4.0.11": { "type": "package", "dependencies": { @@ -804,6 +733,22 @@ "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} } }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, "System.Diagnostics.Process/4.1.0": { "type": "package", "dependencies": { @@ -872,7 +817,7 @@ "System.Runtime": "4.1.0" }, "compile": { - "ref/netstandard1.0/_._": {} + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} } }, "System.Diagnostics.TraceSource/4.0.0": { @@ -910,7 +855,7 @@ "System.Runtime": "4.1.0" }, "compile": { - "ref/netstandard1.5/_._": {} + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} } }, "System.Dynamic.Runtime/4.0.11": { @@ -950,6 +895,18 @@ "ref/netstandard1.3/System.Globalization.dll": {} } }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, "System.Globalization.Extensions/4.0.1": { "type": "package", "dependencies": { @@ -987,6 +944,58 @@ "ref/netstandard1.5/System.IO.dll": {} } }, + "System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "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.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.IO.Compression": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "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.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, "System.IO.FileSystem/4.0.1": { "type": "package", "dependencies": { @@ -1059,6 +1068,76 @@ "lib/netstandard1.6/System.Linq.Expressions.dll": {} } }, + "System.Net.Http/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Net.Primitives": "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", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, "System.ObjectModel/4.0.12": { "type": "package", "dependencies": { @@ -1289,70 +1368,297 @@ "ref/netstandard1.5/System.Runtime.InteropServices.dll": {} } }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "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.Numerics/4.0.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.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.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "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.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "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.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "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.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", - "System.Reflection": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", "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.Threading": "4.0.11", - "runtime.native.System": "4.0.0" + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" }, "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} }, "runtimeTargets": { - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { "assetType": "runtime", "rid": "unix" }, - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { "assetType": "runtime", "rid": "win" } } }, - "System.Runtime.Loader/4.0.0": { + "System.Security.Cryptography.OpenSsl/4.0.0": { "type": "package", "dependencies": { + "System.Collections": "4.0.11", "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" + "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.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" }, "compile": { - "ref/netstandard1.5/System.Runtime.Loader.dll": {} + "ref/netstandard1.6/_._": {} }, "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": {} + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } } }, - "System.Runtime.Serialization.Json/4.0.2": { + "System.Security.Cryptography.Primitives/4.0.0": { "type": "package", "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.1", - "System.Runtime": "4.1.0" + "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.0/System.Runtime.Serialization.Json.dll": {} + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} }, "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {} + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} } }, - "System.Runtime.Serialization.Primitives/4.1.1": { + "System.Security.Cryptography.X509Certificates/4.1.0": { "type": "package", "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "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": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Csp": "4.0.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" }, "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } } }, "System.Text.Encoding/4.0.11": { @@ -1458,6 +1764,17 @@ "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} } }, + "System.Threading.Timer/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.2/System.Threading.Timer.dll": {} + } + }, "System.Xml.ReaderWriter/4.0.11": { "type": "package", "dependencies": { @@ -1677,9 +1994,6 @@ "ChallengesWithTestsMark8/1.0.0": { "type": "project", "framework": ".NETCoreApp,Version=v2.1", - "dependencies": { - "Microsoft.NETCore.App": "2.1.0" - }, "compile": { "bin/placeholder/ChallengesWithTestsMark8.dll": {} }, @@ -1790,6 +2104,7 @@ "path": "microsoft.dotnet.platformabstractions/1.0.3", "files": [ ".nupkg.metadata", + ".signature.p7s", "lib/.DS_Store", "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll", "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll", @@ -1803,6 +2118,7 @@ "path": "microsoft.extensions.dependencymodel/1.0.3", "files": [ ".nupkg.metadata", + ".signature.p7s", "lib/.DS_Store", "lib/net451/Microsoft.Extensions.DependencyModel.dll", "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", @@ -1828,346 +2144,33 @@ "microsoft.net.test.sdk.nuspec" ] }, - "Microsoft.NETCore.App/2.1.0": { - "sha512": "JNHhG+j5eIhG26+H721IDmwswGUznTwwSuJMFe/08h0X2YarHvA15sVAvUkA/2Sp3W0ENNm48t+J7KTPRqEpfA==", - "type": "package", - "path": "microsoft.netcore.app/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "Microsoft.NETCore.App.versions.txt", - "THIRD-PARTY-NOTICES.TXT", - "build/netcoreapp2.1/Microsoft.NETCore.App.PlatformManifest.txt", - "build/netcoreapp2.1/Microsoft.NETCore.App.props", - "build/netcoreapp2.1/Microsoft.NETCore.App.targets", - "microsoft.netcore.app.2.1.0.nupkg.sha512", - "microsoft.netcore.app.nuspec", - "ref/netcoreapp/_._", - "ref/netcoreapp2.1/Microsoft.CSharp.dll", - "ref/netcoreapp2.1/Microsoft.CSharp.xml", - "ref/netcoreapp2.1/Microsoft.VisualBasic.dll", - "ref/netcoreapp2.1/Microsoft.VisualBasic.xml", - "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll", - "ref/netcoreapp2.1/Microsoft.Win32.Primitives.xml", - "ref/netcoreapp2.1/System.AppContext.dll", - "ref/netcoreapp2.1/System.Buffers.dll", - "ref/netcoreapp2.1/System.Buffers.xml", - "ref/netcoreapp2.1/System.Collections.Concurrent.dll", - "ref/netcoreapp2.1/System.Collections.Concurrent.xml", - "ref/netcoreapp2.1/System.Collections.Immutable.dll", - "ref/netcoreapp2.1/System.Collections.Immutable.xml", - "ref/netcoreapp2.1/System.Collections.NonGeneric.dll", - "ref/netcoreapp2.1/System.Collections.NonGeneric.xml", - "ref/netcoreapp2.1/System.Collections.Specialized.dll", - "ref/netcoreapp2.1/System.Collections.Specialized.xml", - "ref/netcoreapp2.1/System.Collections.dll", - "ref/netcoreapp2.1/System.Collections.xml", - "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll", - "ref/netcoreapp2.1/System.ComponentModel.Annotations.xml", - "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll", - "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll", - "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.xml", - "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll", - "ref/netcoreapp2.1/System.ComponentModel.Primitives.xml", - "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll", - "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.xml", - "ref/netcoreapp2.1/System.ComponentModel.dll", - "ref/netcoreapp2.1/System.ComponentModel.xml", - "ref/netcoreapp2.1/System.Configuration.dll", - "ref/netcoreapp2.1/System.Console.dll", - "ref/netcoreapp2.1/System.Console.xml", - "ref/netcoreapp2.1/System.Core.dll", - "ref/netcoreapp2.1/System.Data.Common.dll", - "ref/netcoreapp2.1/System.Data.Common.xml", - "ref/netcoreapp2.1/System.Data.dll", - "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll", - "ref/netcoreapp2.1/System.Diagnostics.Contracts.xml", - "ref/netcoreapp2.1/System.Diagnostics.Debug.dll", - "ref/netcoreapp2.1/System.Diagnostics.Debug.xml", - "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll", - "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.xml", - "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll", - "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.xml", - "ref/netcoreapp2.1/System.Diagnostics.Process.dll", - "ref/netcoreapp2.1/System.Diagnostics.Process.xml", - "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll", - "ref/netcoreapp2.1/System.Diagnostics.StackTrace.xml", - "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll", - "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.xml", - "ref/netcoreapp2.1/System.Diagnostics.Tools.dll", - "ref/netcoreapp2.1/System.Diagnostics.Tools.xml", - "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll", - "ref/netcoreapp2.1/System.Diagnostics.TraceSource.xml", - "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll", - "ref/netcoreapp2.1/System.Diagnostics.Tracing.xml", - "ref/netcoreapp2.1/System.Drawing.Primitives.dll", - "ref/netcoreapp2.1/System.Drawing.Primitives.xml", - "ref/netcoreapp2.1/System.Drawing.dll", - "ref/netcoreapp2.1/System.Dynamic.Runtime.dll", - "ref/netcoreapp2.1/System.Globalization.Calendars.dll", - "ref/netcoreapp2.1/System.Globalization.Extensions.dll", - "ref/netcoreapp2.1/System.Globalization.dll", - "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll", - "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll", - "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll", - "ref/netcoreapp2.1/System.IO.Compression.ZipFile.xml", - "ref/netcoreapp2.1/System.IO.Compression.dll", - "ref/netcoreapp2.1/System.IO.Compression.xml", - "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll", - "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.xml", - "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll", - "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll", - "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.xml", - "ref/netcoreapp2.1/System.IO.FileSystem.dll", - "ref/netcoreapp2.1/System.IO.FileSystem.xml", - "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll", - "ref/netcoreapp2.1/System.IO.IsolatedStorage.xml", - "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll", - "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.xml", - "ref/netcoreapp2.1/System.IO.Pipes.dll", - "ref/netcoreapp2.1/System.IO.Pipes.xml", - "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll", - "ref/netcoreapp2.1/System.IO.dll", - "ref/netcoreapp2.1/System.Linq.Expressions.dll", - "ref/netcoreapp2.1/System.Linq.Expressions.xml", - "ref/netcoreapp2.1/System.Linq.Parallel.dll", - "ref/netcoreapp2.1/System.Linq.Parallel.xml", - "ref/netcoreapp2.1/System.Linq.Queryable.dll", - "ref/netcoreapp2.1/System.Linq.Queryable.xml", - "ref/netcoreapp2.1/System.Linq.dll", - "ref/netcoreapp2.1/System.Linq.xml", - "ref/netcoreapp2.1/System.Memory.dll", - "ref/netcoreapp2.1/System.Memory.xml", - "ref/netcoreapp2.1/System.Net.Http.dll", - "ref/netcoreapp2.1/System.Net.Http.xml", - "ref/netcoreapp2.1/System.Net.HttpListener.dll", - "ref/netcoreapp2.1/System.Net.HttpListener.xml", - "ref/netcoreapp2.1/System.Net.Mail.dll", - "ref/netcoreapp2.1/System.Net.Mail.xml", - "ref/netcoreapp2.1/System.Net.NameResolution.dll", - "ref/netcoreapp2.1/System.Net.NameResolution.xml", - "ref/netcoreapp2.1/System.Net.NetworkInformation.dll", - "ref/netcoreapp2.1/System.Net.NetworkInformation.xml", - "ref/netcoreapp2.1/System.Net.Ping.dll", - "ref/netcoreapp2.1/System.Net.Ping.xml", - "ref/netcoreapp2.1/System.Net.Primitives.dll", - "ref/netcoreapp2.1/System.Net.Primitives.xml", - "ref/netcoreapp2.1/System.Net.Requests.dll", - "ref/netcoreapp2.1/System.Net.Requests.xml", - "ref/netcoreapp2.1/System.Net.Security.dll", - "ref/netcoreapp2.1/System.Net.Security.xml", - "ref/netcoreapp2.1/System.Net.ServicePoint.dll", - "ref/netcoreapp2.1/System.Net.ServicePoint.xml", - "ref/netcoreapp2.1/System.Net.Sockets.dll", - "ref/netcoreapp2.1/System.Net.Sockets.xml", - "ref/netcoreapp2.1/System.Net.WebClient.dll", - "ref/netcoreapp2.1/System.Net.WebClient.xml", - "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll", - "ref/netcoreapp2.1/System.Net.WebHeaderCollection.xml", - "ref/netcoreapp2.1/System.Net.WebProxy.dll", - "ref/netcoreapp2.1/System.Net.WebProxy.xml", - "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll", - "ref/netcoreapp2.1/System.Net.WebSockets.Client.xml", - "ref/netcoreapp2.1/System.Net.WebSockets.dll", - "ref/netcoreapp2.1/System.Net.WebSockets.xml", - "ref/netcoreapp2.1/System.Net.dll", - "ref/netcoreapp2.1/System.Numerics.Vectors.dll", - "ref/netcoreapp2.1/System.Numerics.Vectors.xml", - "ref/netcoreapp2.1/System.Numerics.dll", - "ref/netcoreapp2.1/System.ObjectModel.dll", - "ref/netcoreapp2.1/System.ObjectModel.xml", - "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll", - "ref/netcoreapp2.1/System.Reflection.DispatchProxy.xml", - "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll", - "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.xml", - "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll", - "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.xml", - "ref/netcoreapp2.1/System.Reflection.Emit.dll", - "ref/netcoreapp2.1/System.Reflection.Emit.xml", - "ref/netcoreapp2.1/System.Reflection.Extensions.dll", - "ref/netcoreapp2.1/System.Reflection.Metadata.dll", - "ref/netcoreapp2.1/System.Reflection.Metadata.xml", - "ref/netcoreapp2.1/System.Reflection.Primitives.dll", - "ref/netcoreapp2.1/System.Reflection.Primitives.xml", - "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll", - "ref/netcoreapp2.1/System.Reflection.TypeExtensions.xml", - "ref/netcoreapp2.1/System.Reflection.dll", - "ref/netcoreapp2.1/System.Resources.Reader.dll", - "ref/netcoreapp2.1/System.Resources.ResourceManager.dll", - "ref/netcoreapp2.1/System.Resources.ResourceManager.xml", - "ref/netcoreapp2.1/System.Resources.Writer.dll", - "ref/netcoreapp2.1/System.Resources.Writer.xml", - "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll", - "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.xml", - "ref/netcoreapp2.1/System.Runtime.Extensions.dll", - "ref/netcoreapp2.1/System.Runtime.Extensions.xml", - "ref/netcoreapp2.1/System.Runtime.Handles.dll", - "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.xml", - "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcoreapp2.1/System.Runtime.InteropServices.dll", - "ref/netcoreapp2.1/System.Runtime.InteropServices.xml", - "ref/netcoreapp2.1/System.Runtime.Loader.dll", - "ref/netcoreapp2.1/System.Runtime.Loader.xml", - "ref/netcoreapp2.1/System.Runtime.Numerics.dll", - "ref/netcoreapp2.1/System.Runtime.Numerics.xml", - "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll", - "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.xml", - "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll", - "ref/netcoreapp2.1/System.Runtime.Serialization.Json.xml", - "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll", - "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.xml", - "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll", - "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.xml", - "ref/netcoreapp2.1/System.Runtime.Serialization.dll", - "ref/netcoreapp2.1/System.Runtime.dll", - "ref/netcoreapp2.1/System.Runtime.xml", - "ref/netcoreapp2.1/System.Security.Claims.dll", - "ref/netcoreapp2.1/System.Security.Claims.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Csp.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.xml", - "ref/netcoreapp2.1/System.Security.Principal.dll", - "ref/netcoreapp2.1/System.Security.Principal.xml", - "ref/netcoreapp2.1/System.Security.SecureString.dll", - "ref/netcoreapp2.1/System.Security.dll", - "ref/netcoreapp2.1/System.ServiceModel.Web.dll", - "ref/netcoreapp2.1/System.ServiceProcess.dll", - "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll", - "ref/netcoreapp2.1/System.Text.Encoding.Extensions.xml", - "ref/netcoreapp2.1/System.Text.Encoding.dll", - "ref/netcoreapp2.1/System.Text.RegularExpressions.dll", - "ref/netcoreapp2.1/System.Text.RegularExpressions.xml", - "ref/netcoreapp2.1/System.Threading.Overlapped.dll", - "ref/netcoreapp2.1/System.Threading.Overlapped.xml", - "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll", - "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.xml", - "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll", - "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.xml", - "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll", - "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.xml", - "ref/netcoreapp2.1/System.Threading.Tasks.dll", - "ref/netcoreapp2.1/System.Threading.Tasks.xml", - "ref/netcoreapp2.1/System.Threading.Thread.dll", - "ref/netcoreapp2.1/System.Threading.Thread.xml", - "ref/netcoreapp2.1/System.Threading.ThreadPool.dll", - "ref/netcoreapp2.1/System.Threading.ThreadPool.xml", - "ref/netcoreapp2.1/System.Threading.Timer.dll", - "ref/netcoreapp2.1/System.Threading.Timer.xml", - "ref/netcoreapp2.1/System.Threading.dll", - "ref/netcoreapp2.1/System.Threading.xml", - "ref/netcoreapp2.1/System.Transactions.Local.dll", - "ref/netcoreapp2.1/System.Transactions.Local.xml", - "ref/netcoreapp2.1/System.Transactions.dll", - "ref/netcoreapp2.1/System.ValueTuple.dll", - "ref/netcoreapp2.1/System.Web.HttpUtility.dll", - "ref/netcoreapp2.1/System.Web.HttpUtility.xml", - "ref/netcoreapp2.1/System.Web.dll", - "ref/netcoreapp2.1/System.Windows.dll", - "ref/netcoreapp2.1/System.Xml.Linq.dll", - "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll", - "ref/netcoreapp2.1/System.Xml.ReaderWriter.xml", - "ref/netcoreapp2.1/System.Xml.Serialization.dll", - "ref/netcoreapp2.1/System.Xml.XDocument.dll", - "ref/netcoreapp2.1/System.Xml.XDocument.xml", - "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll", - "ref/netcoreapp2.1/System.Xml.XPath.XDocument.xml", - "ref/netcoreapp2.1/System.Xml.XPath.dll", - "ref/netcoreapp2.1/System.Xml.XPath.xml", - "ref/netcoreapp2.1/System.Xml.XmlDocument.dll", - "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll", - "ref/netcoreapp2.1/System.Xml.XmlSerializer.xml", - "ref/netcoreapp2.1/System.Xml.dll", - "ref/netcoreapp2.1/System.dll", - "ref/netcoreapp2.1/WindowsBase.dll", - "ref/netcoreapp2.1/mscorlib.dll", - "ref/netcoreapp2.1/netstandard.dll", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetAppHost/2.1.0": { - "sha512": "vMn8V3GOp/SPOG2oE8WxswzAWZ/GZmc8EPiB3vc2EZ6us14ehXhsvUFXndYopGNSjCa9OdqC6L6xStF1KyUZnw==", - "type": "package", - "path": "microsoft.netcore.dotnetapphost/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512", - "microsoft.netcore.dotnetapphost.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetHostPolicy/2.1.0": { - "sha512": "vBUwNihtLUVS2HhO6WocYfAktRmfFihm6JB8/sJ53caVW+AelvbnYpfiGzaZDpkWjN6vA3xzOKPu9Vu8Zz3p8Q==", - "type": "package", - "path": "microsoft.netcore.dotnethostpolicy/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512", - "microsoft.netcore.dotnethostpolicy.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.DotNetHostResolver/2.1.0": { - "sha512": "o0PRql5qOHFEY3d1WvzE+T7cMFKtOsWLMg8L1oTeGNnI4u5AzOj8o6AdZT3y2GxFA1DAx7AQ9qZjpCO2/bgZRw==", - "type": "package", - "path": "microsoft.netcore.dotnethostresolver/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512", - "microsoft.netcore.dotnethostresolver.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Platforms/2.1.0": { - "sha512": "ok+RPAtESz/9MUXeIEz6Lv5XAGQsaNmEYXMsgVALj4D7kqC8gveKWXWXbufLySR2fWrwZf8smyN5RmHu0e4BHA==", + "Microsoft.NETCore.Platforms/1.0.1": { + "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==", "type": "package", - "path": "microsoft.netcore.platforms/2.1.0", + "path": "microsoft.netcore.platforms/1.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.2.1.0.nupkg.sha512", + "microsoft.netcore.platforms.1.0.1.nupkg.sha512", "microsoft.netcore.platforms.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" + "runtime.json" ] }, - "Microsoft.NETCore.Targets/2.1.0": { - "sha512": "x188gIZXOwFXkPXyGavEcPGcR6RGvjFOES2QzskN4gERZjWPN34qhRsZVMC0CLJfQLGSButarcgWxPPM4vmg0w==", + "Microsoft.NETCore.Targets/1.0.1": { + "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", "type": "package", - "path": "microsoft.netcore.targets/2.1.0", + "path": "microsoft.netcore.targets/1.0.1", "files": [ ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", "lib/netstandard1.0/_._", - "microsoft.netcore.targets.2.1.0.nupkg.sha512", + "microsoft.netcore.targets.1.0.1.nupkg.sha512", "microsoft.netcore.targets.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" + "runtime.json" ] }, "Microsoft.TestPlatform.ObjectModel/15.9.0": { @@ -2431,6 +2434,7 @@ "path": "microsoft.win32.registry/4.0.0", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/net46/Microsoft.Win32.Registry.dll", @@ -2454,131 +2458,15 @@ "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll" ] }, - "NETStandard.Library/2.0.3": { - "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", + "NETStandard.Library/1.6.0": { + "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==", "type": "package", - "path": "netstandard.library/2.0.3", + "path": "netstandard.library/1.6.0", "files": [ ".nupkg.metadata", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "build/netstandard2.0/NETStandard.Library.targets", - "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", - "build/netstandard2.0/ref/System.AppContext.dll", - "build/netstandard2.0/ref/System.Collections.Concurrent.dll", - "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", - "build/netstandard2.0/ref/System.Collections.Specialized.dll", - "build/netstandard2.0/ref/System.Collections.dll", - "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", - "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", - "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", - "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", - "build/netstandard2.0/ref/System.ComponentModel.dll", - "build/netstandard2.0/ref/System.Console.dll", - "build/netstandard2.0/ref/System.Core.dll", - "build/netstandard2.0/ref/System.Data.Common.dll", - "build/netstandard2.0/ref/System.Data.dll", - "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", - "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", - "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", - "build/netstandard2.0/ref/System.Diagnostics.Process.dll", - "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", - "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", - "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", - "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", - "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", - "build/netstandard2.0/ref/System.Drawing.Primitives.dll", - "build/netstandard2.0/ref/System.Drawing.dll", - "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", - "build/netstandard2.0/ref/System.Globalization.Calendars.dll", - "build/netstandard2.0/ref/System.Globalization.Extensions.dll", - "build/netstandard2.0/ref/System.Globalization.dll", - "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", - "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", - "build/netstandard2.0/ref/System.IO.Compression.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", - "build/netstandard2.0/ref/System.IO.FileSystem.dll", - "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", - "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", - "build/netstandard2.0/ref/System.IO.Pipes.dll", - "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", - "build/netstandard2.0/ref/System.IO.dll", - "build/netstandard2.0/ref/System.Linq.Expressions.dll", - "build/netstandard2.0/ref/System.Linq.Parallel.dll", - "build/netstandard2.0/ref/System.Linq.Queryable.dll", - "build/netstandard2.0/ref/System.Linq.dll", - "build/netstandard2.0/ref/System.Net.Http.dll", - "build/netstandard2.0/ref/System.Net.NameResolution.dll", - "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", - "build/netstandard2.0/ref/System.Net.Ping.dll", - "build/netstandard2.0/ref/System.Net.Primitives.dll", - "build/netstandard2.0/ref/System.Net.Requests.dll", - "build/netstandard2.0/ref/System.Net.Security.dll", - "build/netstandard2.0/ref/System.Net.Sockets.dll", - "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", - "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", - "build/netstandard2.0/ref/System.Net.WebSockets.dll", - "build/netstandard2.0/ref/System.Net.dll", - "build/netstandard2.0/ref/System.Numerics.dll", - "build/netstandard2.0/ref/System.ObjectModel.dll", - "build/netstandard2.0/ref/System.Reflection.Extensions.dll", - "build/netstandard2.0/ref/System.Reflection.Primitives.dll", - "build/netstandard2.0/ref/System.Reflection.dll", - "build/netstandard2.0/ref/System.Resources.Reader.dll", - "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", - "build/netstandard2.0/ref/System.Resources.Writer.dll", - "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", - "build/netstandard2.0/ref/System.Runtime.Extensions.dll", - "build/netstandard2.0/ref/System.Runtime.Handles.dll", - "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", - "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", - "build/netstandard2.0/ref/System.Runtime.Numerics.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", - "build/netstandard2.0/ref/System.Runtime.Serialization.dll", - "build/netstandard2.0/ref/System.Runtime.dll", - "build/netstandard2.0/ref/System.Security.Claims.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", - "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", - "build/netstandard2.0/ref/System.Security.Principal.dll", - "build/netstandard2.0/ref/System.Security.SecureString.dll", - "build/netstandard2.0/ref/System.ServiceModel.Web.dll", - "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", - "build/netstandard2.0/ref/System.Text.Encoding.dll", - "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", - "build/netstandard2.0/ref/System.Threading.Overlapped.dll", - "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", - "build/netstandard2.0/ref/System.Threading.Tasks.dll", - "build/netstandard2.0/ref/System.Threading.Thread.dll", - "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", - "build/netstandard2.0/ref/System.Threading.Timer.dll", - "build/netstandard2.0/ref/System.Threading.dll", - "build/netstandard2.0/ref/System.Transactions.dll", - "build/netstandard2.0/ref/System.ValueTuple.dll", - "build/netstandard2.0/ref/System.Web.dll", - "build/netstandard2.0/ref/System.Windows.dll", - "build/netstandard2.0/ref/System.Xml.Linq.dll", - "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", - "build/netstandard2.0/ref/System.Xml.Serialization.dll", - "build/netstandard2.0/ref/System.Xml.XDocument.dll", - "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", - "build/netstandard2.0/ref/System.Xml.XPath.dll", - "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", - "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", - "build/netstandard2.0/ref/System.Xml.dll", - "build/netstandard2.0/ref/System.dll", - "build/netstandard2.0/ref/mscorlib.dll", - "build/netstandard2.0/ref/netstandard.dll", - "build/netstandard2.0/ref/netstandard.xml", - "lib/netstandard1.0/_._", - "netstandard.library.2.0.3.nupkg.sha512", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.0.nupkg.sha512", "netstandard.library.nuspec" ] }, @@ -2621,6 +2509,47 @@ "runtime.native.system.nuspec" ] }, + "runtime.native.System.IO.Compression/4.1.0": { + "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", + "type": "package", + "path": "runtime.native.system.io.compression/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.1.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.0.1": { + "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==", + "type": "package", + "path": "runtime.native.system.net.http/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.0.1.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", + "type": "package", + "path": "runtime.native.system.security.cryptography/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512", + "runtime.native.system.security.cryptography.nuspec" + ] + }, "System.AppContext/4.1.0": { "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", "type": "package", @@ -2675,6 +2604,21 @@ "system.appcontext.nuspec" ] }, + "System.Buffers/4.0.0": { + "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==", + "type": "package", + "path": "system.buffers/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.0.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, "System.Collections/4.0.11": { "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", "type": "package", @@ -2815,6 +2759,7 @@ "path": "system.collections.immutable/1.2.0", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/netstandard1.0/System.Collections.Immutable.dll", @@ -2831,6 +2776,7 @@ "path": "system.collections.nongeneric/4.0.1", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", @@ -2869,6 +2815,7 @@ "path": "system.collections.specialized/4.0.1", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", @@ -2907,6 +2854,7 @@ "path": "system.componentmodel/4.0.1", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", @@ -2965,6 +2913,7 @@ "path": "system.componentmodel.eventbasedasync/4.0.11", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", @@ -3034,6 +2983,7 @@ "path": "system.componentmodel.primitives/4.1.0", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", @@ -3072,6 +3022,7 @@ "path": "system.componentmodel.typeconverter/4.1.0", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", @@ -3118,6 +3069,43 @@ "system.componentmodel.typeconverter.nuspec" ] }, + "System.Console/4.0.0": { + "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", + "type": "package", + "path": "system.console/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.0.0.nupkg.sha512", + "system.console.nuspec" + ] + }, "System.Diagnostics.Debug/4.0.11": { "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", "type": "package", @@ -3185,12 +3173,34 @@ "system.diagnostics.debug.nuspec" ] }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, "System.Diagnostics.Process/4.1.0": { "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", "type": "package", "path": "system.diagnostics.process/4.1.0", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", @@ -3247,6 +3257,7 @@ "path": "system.diagnostics.textwritertracelistener/4.0.0", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", @@ -3341,6 +3352,7 @@ "path": "system.diagnostics.tracesource/4.0.0", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", @@ -3601,13 +3613,50 @@ "system.globalization.nuspec" ] }, + "System.Globalization.Calendars/4.0.1": { + "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", + "type": "package", + "path": "system.globalization.calendars/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.0.1.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, "System.Globalization.Extensions/4.0.1": { "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", "type": "package", "path": "system.globalization.extensions/4.0.1", "files": [ ".nupkg.metadata", - ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", @@ -3718,8 +3767,118 @@ "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", - "system.io.4.1.0.nupkg.sha512", - "system.io.nuspec" + "system.io.4.1.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.1.0": { + "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==", + "type": "package", + "path": "system.io.compression/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.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/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.1.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.0.1": { + "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", + "type": "package", + "path": "system.io.compression.zipfile/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.0.1.nupkg.sha512", + "system.io.compression.zipfile.nuspec" ] }, "System.IO.FileSystem/4.0.1": { @@ -3951,6 +4110,205 @@ "system.linq.expressions.nuspec" ] }, + "System.Net.Http/4.1.0": { + "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", + "type": "package", + "path": "system.net.http/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.1.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.0.11": { + "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", + "type": "package", + "path": "system.net.primitives/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.0.11.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.1.0": { + "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", + "type": "package", + "path": "system.net.sockets/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.1.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, "System.ObjectModel/4.0.12": { "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", "type": "package", @@ -4272,6 +4630,7 @@ "path": "system.reflection.metadata/1.3.0", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/netstandard1.1/System.Reflection.Metadata.dll", @@ -4783,6 +5142,7 @@ "path": "system.runtime.loader/4.0.0", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/net462/_._", @@ -4802,6 +5162,63 @@ "system.runtime.loader.nuspec" ] }, + "System.Runtime.Numerics/4.0.1": { + "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", + "type": "package", + "path": "system.runtime.numerics/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.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.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.0.1.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, "System.Runtime.Serialization.Json/4.0.2": { "sha512": "+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==", "type": "package", @@ -4932,6 +5349,246 @@ "system.runtime.serialization.primitives.nuspec" ] }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.2.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.2.0": { + "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==", + "type": "package", + "path": "system.security.cryptography.cng/4.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.2.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.0.0": { + "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==", + "type": "package", + "path": "system.security.cryptography.csp/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.0.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", + "type": "package", + "path": "system.security.cryptography.encoding/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.0.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==", + "type": "package", + "path": "system.security.cryptography.openssl/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.0.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", + "type": "package", + "path": "system.security.cryptography.primitives/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.0.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, "System.Text.Encoding/4.0.11": { "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", "type": "package", @@ -5307,6 +5964,7 @@ "path": "system.threading.thread/4.0.0", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", @@ -5346,6 +6004,7 @@ "path": "system.threading.threadpool/4.0.10", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", @@ -5379,6 +6038,61 @@ "system.threading.threadpool.nuspec" ] }, + "System.Threading.Timer/4.0.1": { + "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", + "type": "package", + "path": "system.threading.timer/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.0.1.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, "System.Xml.ReaderWriter/4.0.11": { "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", "type": "package", @@ -5631,6 +6345,7 @@ "path": "system.xml.xpath/4.0.1", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", @@ -5669,6 +6384,7 @@ "path": "system.xml.xpath.xmldocument/4.0.1", "files": [ ".nupkg.metadata", + ".signature.p7s", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", @@ -5846,44 +6562,50 @@ } }, "projectFileDependencyGroups": { - ".NETCoreApp,Version=v2.1": [ + ".NETCoreApp,Version=v3.1": [ "ChallengesWithTestsMark8 >= 1.0.0", "Microsoft.NET.Test.Sdk >= 15.9.0", - "Microsoft.NETCore.App >= 2.1.0", "xunit >= 2.4.0", "xunit.runner.visualstudio >= 2.4.0" ] }, "packageFolders": { - "/Users/michaeldoyle/.nuget/packages/": {}, - "/usr/local/share/dotnet/sdk/NuGetFallbackFolder": {} + "C:\\Users\\johnd\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8.Tests/ChallengesWithTestsMark8.Tests.csproj", + "projectUniqueName": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8.Tests\\ChallengesWithTestsMark8.Tests.csproj", "projectName": "ChallengesWithTestsMark8.Tests", - "projectPath": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8.Tests/ChallengesWithTestsMark8.Tests.csproj", - "packagesPath": "/Users/michaeldoyle/.nuget/packages/", - "outputPath": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8.Tests/obj/", + "projectPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8.Tests\\ChallengesWithTestsMark8.Tests.csproj", + "packagesPath": "C:\\Users\\johnd\\.nuget\\packages\\", + "outputPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8.Tests\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ - "/usr/local/share/dotnet/sdk/NuGetFallbackFolder" + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\" ], "configFilePaths": [ - "/Users/michaeldoyle/.config/NuGet/NuGet.Config" + "C:\\Users\\johnd\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" ], "originalTargetFrameworks": [ - "netcoreapp2.1" + "netcoreapp3.1" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { - "netcoreapp2.1": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", "projectReferences": { - "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/ChallengesWithTestsMark8.csproj": { - "projectPath": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/ChallengesWithTestsMark8.csproj" + "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj": { + "projectPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj" } } } @@ -5895,18 +6617,13 @@ } }, "frameworks": { - "netcoreapp2.1": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", "dependencies": { "Microsoft.NET.Test.Sdk": { "target": "Package", "version": "[15.9.0, )" }, - "Microsoft.NETCore.App": { - "suppressParent": "All", - "target": "Package", - "version": "[2.1.0, )", - "autoReferenced": true - }, "xunit": { "target": "Package", "version": "[2.4.0, )" @@ -5917,10 +6634,21 @@ } }, "imports": [ - "net461" + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" ], "assetTargetFallback": true, - "warn": true + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" } } } diff --git a/ChallengesWithTestsMark8.Tests/obj/project.nuget.cache b/ChallengesWithTestsMark8.Tests/obj/project.nuget.cache new file mode 100644 index 000000000..3cb68772b --- /dev/null +++ b/ChallengesWithTestsMark8.Tests/obj/project.nuget.cache @@ -0,0 +1,109 @@ +{ + "version": 2, + "dgSpecHash": "AUZiExndrxRNHs84B9ubKCQMOe9oly7GZolyIamGyOdcUSC9tD4Lrsy0P5uZWJ/AFlfa8gdWwD8jN5JXvgEHBQ==", + "success": true, + "projectFilePath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8.Tests\\ChallengesWithTestsMark8.Tests.csproj", + "expectedPackageFiles": [ + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.codecoverage\\15.9.0\\microsoft.codecoverage.15.9.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.csharp\\4.0.1\\microsoft.csharp.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.dotnet.platformabstractions\\1.0.3\\microsoft.dotnet.platformabstractions.1.0.3.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.extensions.dependencymodel\\1.0.3\\microsoft.extensions.dependencymodel.1.0.3.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.net.test.sdk\\15.9.0\\microsoft.net.test.sdk.15.9.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.netcore.platforms\\1.0.1\\microsoft.netcore.platforms.1.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.netcore.targets\\1.0.1\\microsoft.netcore.targets.1.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.testplatform.objectmodel\\15.9.0\\microsoft.testplatform.objectmodel.15.9.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.testplatform.testhost\\15.9.0\\microsoft.testplatform.testhost.15.9.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.win32.primitives\\4.0.1\\microsoft.win32.primitives.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.win32.registry\\4.0.0\\microsoft.win32.registry.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\netstandard.library\\1.6.0\\netstandard.library.1.6.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\newtonsoft.json\\9.0.1\\newtonsoft.json.9.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\runtime.native.system\\4.0.0\\runtime.native.system.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\runtime.native.system.io.compression\\4.1.0\\runtime.native.system.io.compression.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\runtime.native.system.net.http\\4.0.1\\runtime.native.system.net.http.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\runtime.native.system.security.cryptography\\4.0.0\\runtime.native.system.security.cryptography.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.appcontext\\4.1.0\\system.appcontext.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.buffers\\4.0.0\\system.buffers.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.collections\\4.0.11\\system.collections.4.0.11.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.collections.concurrent\\4.0.12\\system.collections.concurrent.4.0.12.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.collections.immutable\\1.2.0\\system.collections.immutable.1.2.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.collections.nongeneric\\4.0.1\\system.collections.nongeneric.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.collections.specialized\\4.0.1\\system.collections.specialized.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.componentmodel\\4.0.1\\system.componentmodel.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.componentmodel.eventbasedasync\\4.0.11\\system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.componentmodel.primitives\\4.1.0\\system.componentmodel.primitives.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.componentmodel.typeconverter\\4.1.0\\system.componentmodel.typeconverter.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.console\\4.0.0\\system.console.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.diagnostics.debug\\4.0.11\\system.diagnostics.debug.4.0.11.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.0.0\\system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.diagnostics.process\\4.1.0\\system.diagnostics.process.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.diagnostics.textwritertracelistener\\4.0.0\\system.diagnostics.textwritertracelistener.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.diagnostics.tools\\4.0.1\\system.diagnostics.tools.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.diagnostics.tracesource\\4.0.0\\system.diagnostics.tracesource.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.diagnostics.tracing\\4.1.0\\system.diagnostics.tracing.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.dynamic.runtime\\4.0.11\\system.dynamic.runtime.4.0.11.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.globalization\\4.0.11\\system.globalization.4.0.11.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.globalization.calendars\\4.0.1\\system.globalization.calendars.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.globalization.extensions\\4.0.1\\system.globalization.extensions.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.io\\4.1.0\\system.io.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.io.compression\\4.1.0\\system.io.compression.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.io.compression.zipfile\\4.0.1\\system.io.compression.zipfile.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.io.filesystem\\4.0.1\\system.io.filesystem.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.io.filesystem.primitives\\4.0.1\\system.io.filesystem.primitives.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.linq\\4.1.0\\system.linq.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.linq.expressions\\4.1.0\\system.linq.expressions.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.net.http\\4.1.0\\system.net.http.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.net.primitives\\4.0.11\\system.net.primitives.4.0.11.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.net.sockets\\4.1.0\\system.net.sockets.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.objectmodel\\4.0.12\\system.objectmodel.4.0.12.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.private.datacontractserialization\\4.1.1\\system.private.datacontractserialization.4.1.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection\\4.1.0\\system.reflection.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection.emit\\4.0.1\\system.reflection.emit.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.0.1\\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection.emit.lightweight\\4.0.1\\system.reflection.emit.lightweight.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection.extensions\\4.0.1\\system.reflection.extensions.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection.metadata\\1.3.0\\system.reflection.metadata.1.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection.primitives\\4.0.1\\system.reflection.primitives.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection.typeextensions\\4.1.0\\system.reflection.typeextensions.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.resources.resourcemanager\\4.0.1\\system.resources.resourcemanager.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.runtime\\4.1.0\\system.runtime.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.runtime.extensions\\4.1.0\\system.runtime.extensions.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.runtime.handles\\4.0.1\\system.runtime.handles.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.runtime.interopservices\\4.1.0\\system.runtime.interopservices.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.0.0\\system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.runtime.loader\\4.0.0\\system.runtime.loader.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.runtime.numerics\\4.0.1\\system.runtime.numerics.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.runtime.serialization.json\\4.0.2\\system.runtime.serialization.json.4.0.2.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.runtime.serialization.primitives\\4.1.1\\system.runtime.serialization.primitives.4.1.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.security.cryptography.algorithms\\4.2.0\\system.security.cryptography.algorithms.4.2.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.security.cryptography.cng\\4.2.0\\system.security.cryptography.cng.4.2.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.security.cryptography.csp\\4.0.0\\system.security.cryptography.csp.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.security.cryptography.encoding\\4.0.0\\system.security.cryptography.encoding.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.security.cryptography.openssl\\4.0.0\\system.security.cryptography.openssl.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.security.cryptography.primitives\\4.0.0\\system.security.cryptography.primitives.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.1.0\\system.security.cryptography.x509certificates.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.text.encoding\\4.0.11\\system.text.encoding.4.0.11.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.text.encoding.extensions\\4.0.11\\system.text.encoding.extensions.4.0.11.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.text.regularexpressions\\4.1.0\\system.text.regularexpressions.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.threading\\4.0.11\\system.threading.4.0.11.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.threading.tasks\\4.0.11\\system.threading.tasks.4.0.11.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.threading.tasks.extensions\\4.0.0\\system.threading.tasks.extensions.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.threading.thread\\4.0.0\\system.threading.thread.4.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.threading.threadpool\\4.0.10\\system.threading.threadpool.4.0.10.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.threading.timer\\4.0.1\\system.threading.timer.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.xml.readerwriter\\4.0.11\\system.xml.readerwriter.4.0.11.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.xml.xdocument\\4.0.11\\system.xml.xdocument.4.0.11.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.xml.xmldocument\\4.0.1\\system.xml.xmldocument.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.xml.xmlserializer\\4.0.11\\system.xml.xmlserializer.4.0.11.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.xml.xpath\\4.0.1\\system.xml.xpath.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.xml.xpath.xmldocument\\4.0.1\\system.xml.xpath.xmldocument.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\xunit\\2.4.0\\xunit.2.4.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\xunit.abstractions\\2.0.2\\xunit.abstractions.2.0.2.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\xunit.analyzers\\0.10.0\\xunit.analyzers.0.10.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\xunit.assert\\2.4.0\\xunit.assert.2.4.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\xunit.core\\2.4.0\\xunit.core.2.4.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\xunit.extensibility.core\\2.4.0\\xunit.extensibility.core.2.4.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\xunit.extensibility.execution\\2.4.0\\xunit.extensibility.execution.2.4.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\xunit.runner.visualstudio\\2.4.0\\xunit.runner.visualstudio.2.4.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/ChallengesWithTestsMark8.sln b/ChallengesWithTestsMark8.sln index 9df275d77..9c34630f1 100755 --- a/ChallengesWithTestsMark8.sln +++ b/ChallengesWithTestsMark8.sln @@ -3,9 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.28917.181 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChallengesWithTestsMark8", "ChallengesWithTestsMark8\ChallengesWithTestsMark8.csproj", "{5D8F9EC8-A726-4E18-B4B5-C64B4DCDE247}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ChallengesWithTestsMark8", "ChallengesWithTestsMark8\ChallengesWithTestsMark8.csproj", "{5D8F9EC8-A726-4E18-B4B5-C64B4DCDE247}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChallengesWithTestsMark8.Tests", "ChallengesWithTestsMark8.Tests\ChallengesWithTestsMark8.Tests.csproj", "{5F6EDB8F-2166-447C-BACA-784679AC4459}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ChallengesWithTestsMark8.Tests", "ChallengesWithTestsMark8.Tests\ChallengesWithTestsMark8.Tests.csproj", "{5F6EDB8F-2166-447C-BACA-784679AC4459}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "N_UnitDemo", "N_UnitDemo\N_UnitDemo.csproj", "{B69A9CD2-33E0-4220-B4A2-7ECDF30A0613}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -21,6 +23,10 @@ Global {5F6EDB8F-2166-447C-BACA-784679AC4459}.Debug|Any CPU.Build.0 = Debug|Any CPU {5F6EDB8F-2166-447C-BACA-784679AC4459}.Release|Any CPU.ActiveCfg = Release|Any CPU {5F6EDB8F-2166-447C-BACA-784679AC4459}.Release|Any CPU.Build.0 = Release|Any CPU + {B69A9CD2-33E0-4220-B4A2-7ECDF30A0613}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B69A9CD2-33E0-4220-B4A2-7ECDF30A0613}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B69A9CD2-33E0-4220-B4A2-7ECDF30A0613}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B69A9CD2-33E0-4220-B4A2-7ECDF30A0613}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/ChallengesWithTestsMark8/ChallengesSet01.cs b/ChallengesWithTestsMark8/ChallengesSet01.cs old mode 100755 new mode 100644 index 858135710..c6c7f224c --- a/ChallengesWithTestsMark8/ChallengesSet01.cs +++ b/ChallengesWithTestsMark8/ChallengesSet01.cs @@ -6,37 +6,70 @@ public class ChallengesSet01 { public bool AreTwoNumbersTheSame(int num1, int num2) { - throw new NotImplementedException(); + return num1 == num2; + + //return num1 == num2 ? true : false; + + //if (num1 == num2) + // return true; + //else + // return false; } public double Subtract(double minuend, double subtrahend) { - throw new NotImplementedException(); + return minuend - subtrahend; } public int Add(int number1, int number2) { - throw new NotImplementedException(); + return number1 + number2; + + //int result = number1 + number2; + //return result; } public int GetSmallestNumber(int number1, int number2) { - throw new NotImplementedException(); + return Math.Min(number1, number2); + + //int min = Math.Min(number1, number2); + //return min; + + //return number1 < number2 ? number1 : number2; + + //if (number1 < number2) + // return number1; + //else + // return number2; } public long Multiply(long factor1, long factor2) { - throw new NotImplementedException(); + return factor1 * factor2; + + //var answer = factor1 * factor2; + //return answer; } public string GetGreeting(string nameOfPerson) { - throw new NotImplementedException(); - } - public string GetHey() - { - throw new NotImplementedException(); + return string.IsNullOrEmpty(nameOfPerson) ? "Hello!" : $"Hello, {nameOfPerson}!"; + + //if (string.IsNullOrEmpty(nameOfPerson)) + // return "Hello!"; + //else + // return $"Hello, {nameOfPerson}!"; } + + + public string GetHey() => "Hey!".ToUpper(); + //{ + // return "HEY!"; + + // //var x = "HEY!"; + // //return x; + //} } } diff --git a/ChallengesWithTestsMark8/ChallengesSet02.cs b/ChallengesWithTestsMark8/ChallengesSet02.cs index 7a78e0a8a..9f69b9bd5 100755 --- a/ChallengesWithTestsMark8/ChallengesSet02.cs +++ b/ChallengesWithTestsMark8/ChallengesSet02.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.Linq; namespace ChallengesWithTestsMark8 { @@ -7,52 +8,177 @@ public class ChallengesSet02 { public bool CharacterIsALetter(char c) { - throw new NotImplementedException(); + return Char.IsLetter(c); } public bool CountOfElementsIsEven(string[] vals) { - throw new NotImplementedException(); + return vals.Count() % 2 == 0; + + //int count = 0; + //for (int i = 0; i < vals.Length; i++) + //{ + // count++; + //} + //if (count % 2 == 0) + // return true; + //else + // return false; } public bool IsNumberEven(int number) { - throw new NotImplementedException(); + return number % 2 == 0; + + //if (number % 2 == 0) + // return true; + //else + // return false; } public bool IsNumberOdd(int num) { - throw new NotImplementedException(); + return num % 2 != 0; + + //if (num % 2 != 0) + // return true; + //else + // return false; } public double SumOfMinAndMax(IEnumerable numbers) { - throw new NotImplementedException(); + //return numbers == null || numbers.Count() == 0 ? 0 : numbers.Min() + numbers.Max(); + + // Null or Empty Check + if (numbers == null || numbers.Count() == 0) + { + return 0; + } + + return numbers.Min() + numbers.Max(); + + + + //var min = numbers.Min(); + //var max = numbers.Max(); + + //return min + max; + + //if (numbers == null) + //{ + // return 0; + //} + + //if (numbers.Count() < 1) + //{ + // return numbers.First() + numbers.First(); + //} + + //double min = 0; + //double max = 0; + + //foreach (var num in numbers) + //{ + // if (num > min) + // { + // max = num; + // } + //} + + //foreach (var num in numbers) + //{ + // if (num < min) + // { + // min = num; + // } + //} + + //return min + max; + + + + //return numbers == null || numbers.Count() < 1 ? 0 : numbers.Max() + numbers.Min(); + + //if (numbers == null || numbers.Count() == 0) + //{ + // return 0; + //} + //else + // return numbers.Max() + numbers.Min(); + } public int GetLengthOfShortestString(string str1, string str2) { - throw new NotImplementedException(); + + + var list = new List() { str1.Length, str2.Length }; //object initializer syntax + return list.Min(); + + //return str1.Length > str2.Length ? str2.Length : str1.Length; + + //if (str1.Length > str2.Length) + // return str2.Length; + //else + // return str1.Length; } public int Sum(int[] numbers) { - throw new NotImplementedException(); + return numbers == null ? 0 : numbers.Sum(); + + //int sum = 0; + //if (numbers == null) + // return 0; + //foreach (var num in numbers) + //{ + // sum += num; + //} + + ////for (int i = 0; i < numbers.Length; i++) + ////{ + //// sum += numbers[i]; + ////} + //return sum; } public int SumEvens(int[] numbers) { - throw new NotImplementedException(); + return numbers == null ? 0 : numbers.Where(x => x % 2 == 0).Sum(); + + //int sum = 0; + //if (numbers == null) + // return 0; + //for (int i = 0; i < numbers.Length; i++) + //{ + // if (numbers[i] % 2 == 0) + // sum += numbers[i]; + //} + //return sum; } public bool IsSumOdd(List numbers) { - throw new NotImplementedException(); + return numbers != null && numbers.Where(x => x % 2 != 0).Sum() % 2 != 0; + + //if (numbers == null) + // return false; + //int sum = numbers.Sum(); + //if (sum % 2 != 0) + // return true; + //else + // return false; } public long CountOfPositiveOddsBelowNumber(long number) { - throw new NotImplementedException(); + return number <= 0 ? 0 : number / 2; + + //if (number <= 0) + // return 0; + //else + // return number / 2; } } } diff --git a/ChallengesWithTestsMark8/ChallengesSet03.cs b/ChallengesWithTestsMark8/ChallengesSet03.cs index ebd5e3768..d32ca495e 100755 --- a/ChallengesWithTestsMark8/ChallengesSet03.cs +++ b/ChallengesWithTestsMark8/ChallengesSet03.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.Linq; namespace ChallengesWithTestsMark8 { @@ -7,47 +8,129 @@ public class ChallengesSet03 { public bool ArrayContainsAFalse(bool[] vals) { - throw new NotImplementedException(); + return vals.Contains(false); + + //bool isfalse = false; + + //foreach (var val in vals) + //{ + // if (val == false) + // isfalse = true; + //} + //return isfalse; } public bool IsSumOfOddsOdd(IEnumerable numbers) { - throw new NotImplementedException(); + return numbers != null && numbers.Where(x => x % 2 != 0).Sum() % 2 != 0; + + //int x = 0; + //bool isOdd; + //if (numbers == null) + // return false; + //else + //{ + // foreach (var num in numbers) + // { + // x += num; + // } + //} + + //isOdd = x % 2 == 0; + //return isOdd; + } public bool PasswordContainsUpperLowerAndNumber(string password) { - throw new NotImplementedException(); + + return password.Any(char.IsUpper) && + password.Any(char.IsLower) && + password.Any(char.IsDigit); + + //if (password.Any(x => char.IsUpper(x)) && password.Any(x => char.IsLower(x)) && password.Any(x => char.IsDigit(x))) + //{ + // return true; + //} + //else + //{ + // return false; + //} + + //bool hasUpLowNum = true; + //var hasUp = password.Any(Char.IsUpper); + //var hasLow = password.Any(Char.IsLower); + //var hasNum = password.Any(Char.IsDigit); + //hasUpLowNum = (hasUpLowNum == hasUp && hasUpLowNum == hasLow && hasUpLowNum == hasNum); + //return hasUpLowNum; + } public char GetFirstLetterOfString(string val) { - throw new NotImplementedException(); + return val[0]; } public char GetLastLetterOfString(string val) { - throw new NotImplementedException(); + return val.Last(); + //return val[val.Length - 1]; } public decimal Divide(decimal dividend, decimal divisor) { - throw new NotImplementedException(); + return divisor == 0 ? 0 : dividend / divisor; + + //if (divisor == 0) + // return 0; + //else + // return dividend / divisor; } public int LastMinusFirst(int[] nums) - { - throw new NotImplementedException(); + { + return nums.Last() - nums.First(); + //return nums[nums.Length - 1] - nums[0]; } public int[] GetOddsBelow100() { - throw new NotImplementedException(); + //int[] odds = { + // 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, + // 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, + // 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, + // 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 95, 97, 99 + //}; + + //return odds; + + int oddIncrement = 1; + int[] x = new int[50]; + for (int i = 0; i < x.Length; i++) + { + x[i] = oddIncrement; + oddIncrement += 2; + } + return x; + + //int count = 0; + //int i = 1; + //while (count < x.Length) + //{ + // x[count] = i; + // count++; + // i += 2; + //} + //return x; } + public void ChangeAllElementsToUppercase(string[] words) { - throw new NotImplementedException(); + for (int i = 0; i < words.Length; i++) + { + words[i] = words[i].ToUpper(); + } } } } diff --git a/ChallengesWithTestsMark8/ChallengesSet04.cs b/ChallengesWithTestsMark8/ChallengesSet04.cs index 9fc4dc6f9..9f94663f2 100755 --- a/ChallengesWithTestsMark8/ChallengesSet04.cs +++ b/ChallengesWithTestsMark8/ChallengesSet04.cs @@ -1,4 +1,6 @@ using System; +using System.Collections.Generic; +using System.Linq; namespace ChallengesWithTestsMark8 { @@ -6,47 +8,170 @@ public class ChallengesSet04 { public int AddEvenSubtractOdd(int[] numbers) { - throw new NotImplementedException(); + return numbers.Where(x => x % 2 == 0).Sum() - numbers.Where(x => x % 2 != 0).Sum(); + + //int result = 0; + //for (int i = 0; i < numbers.Length; i++) + //{ + + // if (numbers[i] % 2 == 0) + // result += numbers[i]; + // if (numbers[i] % 2 != 0) + // result -= numbers[i]; + //} + //return result; } public int GetLengthOfShortestString(string str1, string str2, string str3, string str4) { - throw new NotImplementedException(); + + var list = new List() { str1.Length, str2.Length, str3.Length, str4.Length}; + + return list.Min(); + + //int w = str1.Length; + //int x = str2.Length; + //int y = str3.Length; + //int z = str4.Length; + //if (w <= x && w <= y && w <= z) + // return w; + //else if (x <= w && x <= y && x <= z) + // return x; + //else if (y <= w && y <= x && y <= z) + // return y; + //else + // return z; + } public int GetSmallestNumber(int number1, int number2, int number3, int number4) { - throw new NotImplementedException(); + List list = new List() { number1, number2, number3, number4 }; + + return list.Min(); + + //int set1 = Math.Min(number1, number2); + //int set2 = Math.Min(number3, number4); + + //return Math.Min(set1, set2); } public void ChangeBusinessNameTo_TrueCoders(Business biz) { - throw new NotImplementedException(); + biz.Name = "TrueCoders"; } public bool CouldFormTriangle(int sideLength1, int sideLength2, int sideLength3) { - throw new NotImplementedException(); + var list = new List() { sideLength1, sideLength2, sideLength3 }; + + if (list.Min() <= 0) + return false; + + return list.Sum() - list.Max() > list.Max(); + + //if (sideLength1 <= 0 || sideLength2 <= 0 || sideLength3 <= 0) + // return false; + //else if ((sideLength1 + sideLength2) <= sideLength3 || + // (sideLength1 + sideLength3) <= sideLength2 || + // (sideLength2 + sideLength3) <= sideLength1) + // return false; + //else + // return true; + + //if (sideLength1 + sideLength2 > sideLength3 + // && sideLength1 + sideLength3 > sideLength2 + // && sideLength2 + sideLength3 > sideLength1) + //{ + // return true; + //} + //return false; + + } public bool IsStringANumber(string input) { - throw new NotImplementedException(); + return double.TryParse(input, out _); + + //bool x = Int32.TryParse(input, out _); + //bool y = double.TryParse(input, out _); + //if (x || y) + // return true; + //else + // return false; + + //bool x = Int32.TryParse(input, out isInt); } public bool MajorityOfElementsInArrayAreNull(object[] objs) { - throw new NotImplementedException(); + return objs.Count(x => x == null) > objs.Length / 2; + + + //var count = objs.Count(x => x == null); + //return count > objs.Length / 2; + + //int nullCount = 0; + //int objCount = 0; + //foreach (var item in objs) + //{ + // if (item == null) + // nullCount++; + // else + // objCount++; + //} + //return nullCount > objCount; + + //if (nullCount > objCount) + // return true; + //else + // return false; + } public double AverageEvens(int[] numbers) { - throw new NotImplementedException(); + return numbers == null || numbers.Length == 0 || numbers.Where(x => x % 2 == 0).Count() == 0 ? 0 : numbers.Where(x => x % 2 == 0).Average(); + + //double sum = 0; + //double count = 0; + + //if (numbers == null) + // return 0; + //else if (numbers.Length == 0) + // return 0; + //else + //{ + // foreach (var num in numbers) + // { + // if (num % 2 == 0) + // { + // sum += num; + // count++; + // } + // } + // if (count == 0) + // return 0; + //} + //return sum / count; } public int Factorial(int number) { - throw new NotImplementedException(); + int count = 1; + int result = 1; + + if (number < 0) + throw new ArgumentOutOfRangeException(); + + while (count < number) + { + count++; + result *= count; + } + return result; + } } } diff --git a/ChallengesWithTestsMark8/ChallengesSet05.cs b/ChallengesWithTestsMark8/ChallengesSet05.cs index 7b92663a4..25c089738 100755 --- a/ChallengesWithTestsMark8/ChallengesSet05.cs +++ b/ChallengesWithTestsMark8/ChallengesSet05.cs @@ -7,103 +7,116 @@ public class ChallengesSet05 { public int GetNextNumberDivisibleByN(int startNumber, int n) { - return ((startNumber / n) + 1) * n; + startNumber++; + while (startNumber % n != 0) + { + startNumber++; + if (startNumber % n == 0) + break; + } + return startNumber; } public void ChangeNamesOfBusinessesWithNoRevenueTo_CLOSED(Business[] businesses) { - for (int i = 0; i < businesses.Length; i++) + foreach (var biz in businesses) { - if (businesses[i].TotalRevenue == 0) - { - businesses[i].Name = "CLOSED"; - } + var bizName = biz.TotalRevenue <= 0 ? biz.Name = "CLOSED" : "OPEN"; } } public bool IsAscendingOrder(int[] numbers) { - if (numbers == null) - return false; + bool isTrue = true; - for (int i = 1; i < numbers.Length; i++) + if (numbers == null) + isTrue = false; + else if (numbers.Length == 0) + isTrue = false; + else { - if (numbers[i] < numbers[i - 1]) + for (int i = 0; i < numbers.Length - 1; i++) { - return false; + int num = numbers[i]; + if (num > numbers[i + 1]) + { + isTrue = false; + break; + } } } - - return true; + return isTrue; } public int SumElementsThatFollowAnEven(int[] numbers) { int sum = 0; - - for (int i = 1; i < numbers.Length; i++) + if (numbers == null) + return 0; + for (int i = 0; i < numbers.Length - 1; i++) { - if (numbers[i - 1] % 2 == 0) - { - sum += numbers[i]; - } + if (numbers[i] % 2 == 0) + sum += numbers[i + 1]; } - return sum; } public string TurnWordsIntoSentence(string[] words) { - if (words == null || words.Length == 0) + string str = ""; + if (words == null || words.Length < 1) + return str; + foreach (var word in words) { - return ""; + if (string.IsNullOrWhiteSpace(word)) + continue; + else + str += word.Trim() + " "; } - - string sentence = ""; - - foreach (string word in words) - { - if (word.Trim().Length > 0) - { - sentence += word.Trim() + " "; - } - } - - if (sentence.Length == 0) + if (str == "") { return ""; } - - sentence = sentence.Substring(0, sentence.Length - 1); - sentence += "."; - return sentence; + return str.TrimEnd() + "."; } public double[] GetEveryFourthElement(List elements) { - List everyFourth = new List(); + double[] empty = new double[0]; + List list = new List(); + + if (elements == null) + return empty; for (int i = 3; i < elements.Count; i += 4) { - everyFourth.Add(elements[i]); + list.Add(elements[i]); } - return everyFourth.ToArray(); + double[] arr = new double[list.Count]; + + for (int i = 0; i < list.Count; i++) + { + arr[i] = list[i]; + } + return arr; } public bool TwoDifferentElementsInArrayCanSumToTargetNumber(int[] nums, int targetNumber) { + if (nums.Length == 0) + return false; + for (int i = 0; i < nums.Length; i++) { - for (int k = i + 1; k < nums.Length; k++) + for (int j = i + 1; j < nums.Length; j++) { - if (nums[i] + nums[k] == targetNumber) + if (nums[i] + nums[j] == targetNumber) { return true; } } } - return false; } } diff --git a/ChallengesWithTestsMark8/ChallengesSet06.cs b/ChallengesWithTestsMark8/ChallengesSet06.cs index ab54214e4..4aaff1e34 100755 --- a/ChallengesWithTestsMark8/ChallengesSet06.cs +++ b/ChallengesWithTestsMark8/ChallengesSet06.cs @@ -1,33 +1,301 @@ using System; using System.Collections.Generic; +using System.Linq; namespace ChallengesWithTestsMark8 { public class ChallengesSet06 { - public bool CollectionContainsWord(IEnumerable words, string word, bool ignoreCase) + + public bool CollectionContainsWord(IEnumerable words, string word, bool ignoreCase) + { + bool isTrue = true; + + if (words == null) + return false; + + if (ignoreCase == true) + { + foreach (var item in words) + { + if (item == null) + continue; + if (item.ToLower() == word) + { + isTrue = true; + break; + } + else + isTrue = false; + } + } + + if (ignoreCase == false) + { + foreach (var item in words) + { + if (item == null) + continue; + if (item == word) + { + isTrue = true; + break; + } + else + isTrue = false; + } + } + return isTrue; + } + + public bool IsPrimeNumber(int num) + { + bool isPrime = true; + int factorCount = 1; + double count = 1; + + if (num <= 1) + isPrime = false; + while (count < num) + { + if (num % count == 0) + { + factorCount++; + } + count++; + } + if (factorCount > 2) + isPrime = false; + + return isPrime; + } + + public int IndexOfLastUniqueLetter(string str) + { + //return str.IndexOf(str.Distinct().Reverse().Where(x => str.Where(y => y.Equals(x)).Count() == 1).FirstOrDefault()); + + int index = -1; + bool uindex = true; + + for (int i = 0; i < str.Length; i++) + { + uindex = true; + + for (int j = 0; j < str.Length; j++) + { + if (str[i] == str[j] && i != j) + { + uindex = false; + } + } + + if (uindex == true) + { + index = i; + } + } + return index; + } + + public int MaxConsecutiveCount(int[] numbers) + { + var list = new List(); + int count = 1; + for (int i = 0; i < numbers.Length - 1; i++) + { + if (numbers[i] == numbers[i + 1]) + { + ++count; + } + else + { + list.Add(count); + count = 1; + } + } + + list.Add(count); + + return list.Max(); + } + + public double[] GetEveryNthElement(List elements, int n) + { + List list = new List(); + int x = n; + + if (elements == null) + return list.ToArray(); + + for (int i = 0; i < elements.Count(); i++) + { + if (elements[i] == x) + { + list.Add(elements[i]); + x += n; + } + } + return list.ToArray(); + } + + public int CountOfBusinessesWithNegativeNetProfit(List businesses) { - throw new NotImplementedException(); + if (businesses == null || businesses.Count < 1) + { + return 0; + } + + int count = 0; + foreach (var biz in businesses) + { + if (biz.TotalRevenue < biz.TotalExpenses) + { + count++; + } + } + return count; } - public bool IsPrimeNumber(int num) + public string GetCommaSeparatedListOfProfitableBusinesses(List businesses) { - throw new NotImplementedException(); + string list = ""; + + for (int i = 0; i < businesses.Count; i++) + { + if (businesses[i].TotalRevenue > businesses[i].TotalExpenses) + { + list += $"{businesses[i].Name},"; + } + } + return list.TrimEnd(','); } - public int IndexOfLastUniqueLetter(string str) + public string GetNameOfHighestParentCompany(Business business) { - throw new NotImplementedException(); + // If there is Company A, whose parent is Company B, whose parent is Company C, then given Company A return Company C + while (business.ParentCompany != null) + { + business = business.ParentCompany; + } + return business.Name; } - public int MaxConsecutiveCount(int[] numbers) + public enum TicTacToeResult { X, O, Draw } + public TicTacToeResult GetTicTacToeWinner(char[,] finalBoard) { - throw new NotImplementedException(); + // Horizontal X's + //---------------------------------------------------------------------------------------------------- + if (finalBoard[0, 0] == 'X' && finalBoard[0, 1] == 'X' && finalBoard[0, 2] == 'X') + { + return TicTacToeResult.X; + } + else if (finalBoard[1, 0] == 'X' && finalBoard[1, 1] == 'X' && finalBoard[1, 2] == 'X') + { + return TicTacToeResult.X; + } + else if (finalBoard[2, 0] == 'X' && finalBoard[2, 1] == 'X' && finalBoard[2, 2] == 'X') + { + return TicTacToeResult.X; + } + + // Vertical X's + //---------------------------------------------------------------------------------------------------- + else if (finalBoard[0, 0] == 'X' && finalBoard[1, 0] == 'X' && finalBoard[2, 0] == 'X') + { + return TicTacToeResult.X; + } + else if (finalBoard[0, 1] == 'X' && finalBoard[1, 1] == 'X' && finalBoard[2, 1] == 'X') + { + return TicTacToeResult.X; + } + else if (finalBoard[0, 2] == 'X' && finalBoard[1, 2] == 'X' && finalBoard[2, 2] == 'X') + { + return TicTacToeResult.X; + } + + // Diagonal X's + //---------------------------------------------------------------------------------------------------- + else if (finalBoard[0, 0] == 'X' && finalBoard[1, 1] == 'X' && finalBoard[2, 2] == 'X') + { + return TicTacToeResult.X; + } + else if (finalBoard[0, 2] == 'X' && finalBoard[1, 1] == 'X' && finalBoard[2, 0] == 'X') + { + return TicTacToeResult.X; + } + + // Horizontal O's + //---------------------------------------------------------------------------------------------------- + else if (finalBoard[0, 0] == 'O' && finalBoard[0, 1] == 'O' && finalBoard[0, 2] == 'O') + { + return TicTacToeResult.O; + } + else if (finalBoard[1, 0] == 'O' && finalBoard[1, 1] == 'O' && finalBoard[1, 2] == 'O') + { + return TicTacToeResult.O; + } + else if (finalBoard[2, 0] == 'O' && finalBoard[2, 1] == 'O' && finalBoard[2, 2] == 'O') + { + return TicTacToeResult.O; + } + + // Vertical O's + //---------------------------------------------------------------------------------------------------- + else if (finalBoard[0, 0] == 'O' && finalBoard[1, 0] == 'O' && finalBoard[2, 0] == 'O') + { + return TicTacToeResult.O; + } + else if (finalBoard[0, 1] == 'O' && finalBoard[1, 1] == 'O' && finalBoard[2, 1] == 'O') + { + return TicTacToeResult.O; + } + else if (finalBoard[0, 2] == 'O' && finalBoard[1, 2] == 'O' && finalBoard[2, 2] == 'O') + { + return TicTacToeResult.O; + } + + // Diagonal O's + //---------------------------------------------------------------------------------------------------- + else if (finalBoard[0, 0] == 'O' && finalBoard[1, 1] == 'O' && finalBoard[2, 2] == 'O') + { + return TicTacToeResult.O; + } + else if (finalBoard[0, 2] == 'O' && finalBoard[1, 1] == 'O' && finalBoard[2, 0] == 'O') + { + return TicTacToeResult.O; + } + + //--------------------------------------------------------------------------------------------------- + else + { + return TicTacToeResult.Draw; + } + } - public double[] GetEveryNthElement(List elements, int n) + public bool EachArrayInJaggedArrayContainsTargetNumber(int[][] numbers, int targetNumber) { - throw new NotImplementedException(); + if (numbers == null || numbers.Length == 0) + { + return false; + } + int count = 0; + + for (int i = 0; i < numbers.Length; i++) + { + if (numbers[i].Contains(targetNumber)) + { + count++; + } + } + + if (count == numbers.Length) + { + return true; + } + return false; } + + } } diff --git a/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.deps.json b/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.deps.json index 9f7a54f3e..b1939c3a8 100755 --- a/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.deps.json +++ b/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.deps.json @@ -1,7 +1,7 @@ { "runtimeTarget": { "name": ".NETCoreApp,Version=v2.1", - "signature": "da39a3ee5e6b4b0d3255bfef95601890afd80709" + "signature": "" }, "compilationOptions": {}, "targets": { diff --git a/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll b/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll index 32a0c5f03..1d0c67561 100755 Binary files a/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll and b/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll differ diff --git a/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb b/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb index 0489636fc..c835c25ca 100755 Binary files a/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb and b/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb differ diff --git a/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.runtimeconfig.dev.json b/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.runtimeconfig.dev.json index ece3a6d8e..147c79976 100755 --- a/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.runtimeconfig.dev.json +++ b/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.runtimeconfig.dev.json @@ -1,9 +1,10 @@ { "runtimeOptions": { "additionalProbingPaths": [ - "/Users/michaeldoyle/.dotnet/store/|arch|/|tfm|", - "/Users/michaeldoyle/.nuget/packages", - "/usr/local/share/dotnet/sdk/NuGetFallbackFolder" + "C:\\Users\\johnd\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\johnd\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet" ] } } \ No newline at end of file diff --git a/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.cache b/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.cache index caa952bcf..30433e927 100644 --- a/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.cache +++ b/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.cache @@ -1,5 +1,5 @@ { "version": 1, - "dgSpecHash": "8n4dh6GPflkd3/8nQBcbOjgeUambuYmUzM262otoMX1Cz9S8Cs21Wwv926oVImnLs8yg3L0dporqrQjH2KWd8A==", + "dgSpecHash": "PCkZ8jkyOBW8c4DcR39KMPn3Vt6emly5X60wWVMQdOEeSN2fXomW0S1WIqBZLoLrcSQeeR/H0Rp0xxNp3eKOlg==", "success": true } \ No newline at end of file diff --git a/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.dgspec.json b/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.dgspec.json old mode 100755 new mode 100644 index 581cfecbc..9ede1fdac --- a/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.dgspec.json +++ b/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.dgspec.json @@ -1,32 +1,38 @@ { "format": 1, "restore": { - "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/ChallengesWithTestsMark8.csproj": {} + "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj": {} }, "projects": { - "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/ChallengesWithTestsMark8.csproj": { + "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/ChallengesWithTestsMark8.csproj", + "projectUniqueName": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj", "projectName": "ChallengesWithTestsMark8", - "projectPath": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/ChallengesWithTestsMark8.csproj", - "packagesPath": "/Users/michaeldoyle/.nuget/packages/", - "outputPath": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/obj/", + "projectPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj", + "packagesPath": "C:\\Users\\johnd\\.nuget\\packages\\", + "outputPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ - "/usr/local/share/dotnet/sdk/NuGetFallbackFolder" + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\" ], "configFilePaths": [ - "/Users/michaeldoyle/.config/NuGet/NuGet.Config" + "C:\\Users\\johnd\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" ], "originalTargetFrameworks": [ "netcoreapp2.1" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", "projectReferences": {} } }, @@ -38,18 +44,26 @@ }, "frameworks": { "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", "dependencies": { "Microsoft.NETCore.App": { + "suppressParent": "All", "target": "Package", "version": "[2.1.0, )", "autoReferenced": true } }, "imports": [ - "net461" + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" ], "assetTargetFallback": true, - "warn": true + "warn": true, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" } } } diff --git a/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.g.props b/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.g.props index 1e8b71642..ff34e414c 100644 --- a/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.g.props +++ b/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.g.props @@ -4,15 +4,20 @@ True NuGet $(MSBuildThisFileDirectory)project.assets.json - /Users/michaeldoyle/.nuget/packages/ - /Users/michaeldoyle/.nuget/packages/;/usr/local/share/dotnet/sdk/NuGetFallbackFolder + $(UserProfile)\.nuget\packages\ + C:\Users\johnd\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\ PackageReference - 5.1.0 + 5.10.0 + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - + \ No newline at end of file diff --git a/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.g.targets b/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.g.targets index afbbeed1e..42b748712 100644 --- a/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.g.targets +++ b/ChallengesWithTestsMark8/obj/ChallengesWithTestsMark8.csproj.nuget.g.targets @@ -4,7 +4,7 @@ $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - + + \ No newline at end of file diff --git a/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/.NETCoreApp,Version=v2.1.AssemblyAttributes.cs b/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/.NETCoreApp,Version=v2.1.AssemblyAttributes.cs new file mode 100644 index 000000000..759b2ebeb --- /dev/null +++ b/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/.NETCoreApp,Version=v2.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v2.1", FrameworkDisplayName = "")] diff --git a/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.assets.cache b/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.assets.cache index 2f696858f..02909a607 100755 Binary files a/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.assets.cache and b/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.assets.cache differ diff --git a/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.csproj.CoreCompileInputs.cache b/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.csproj.CoreCompileInputs.cache index 3a9e68afc..f9ee31597 100755 --- a/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.csproj.CoreCompileInputs.cache +++ b/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -cccc5c248bfc5f830a4d07b8c4c8bb92aa45a4f8 +b588ff085138d4c06595a2c855149c02873f52a9 diff --git a/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.csproj.FileListAbsolute.txt b/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.csproj.FileListAbsolute.txt index b9944672d..552d3263c 100755 --- a/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.csproj.FileListAbsolute.txt +++ b/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.csproj.FileListAbsolute.txt @@ -31,3 +31,47 @@ C:/Users/Chip/source/repos/Mark8ChallengesWithTests/ChallengesWithTestsMark8/obj /Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.AssemblyInfo.cs /Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll /Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.deps.json +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.runtimeconfig.json +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.runtimeconfig.dev.json +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.csprojAssemblyReference.cache +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.AssemblyInfoInputs.cache +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.AssemblyInfo.cs +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll +/Users/michaeldoyle/repos/markx/repos/WeeklyChallenges/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.deps.json +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.runtimeconfig.json +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.runtimeconfig.dev.json +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8/bin/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.csprojAssemblyReference.cache +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.AssemblyInfoInputs.cache +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.AssemblyInfo.cs +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.csproj.CoreCompileInputs.cache +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb +/Users/michaeldoyle/repos/Mark13/repos/WeeklyChallenges/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.genruntimeconfig.cache +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.AssemblyInfoInputs.cache +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.AssemblyInfo.cs +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.csproj.CoreCompileInputs.cache +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.deps.json +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.runtimeconfig.json +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.runtimeconfig.dev.json +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.dll +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.pdb +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.dll +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.pdb +C:\Users\johnd\Desktop\TA_repo\WeeklyChallenges\ChallengesWithTestsMark8\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.genruntimeconfig.cache +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.deps.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.runtimeconfig.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.runtimeconfig.dev.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8\bin\Debug\netcoreapp2.1\ChallengesWithTestsMark8.pdb +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.AssemblyInfoInputs.cache +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.AssemblyInfo.cs +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.csproj.CoreCompileInputs.cache +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.pdb +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\ChallengesWithTestsMark8\obj\Debug\netcoreapp2.1\ChallengesWithTestsMark8.genruntimeconfig.cache diff --git a/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.csprojAssemblyReference.cache b/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.csprojAssemblyReference.cache deleted file mode 100644 index 545187999..000000000 Binary files a/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.csprojAssemblyReference.cache and /dev/null differ diff --git a/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll b/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll index 32a0c5f03..1d0c67561 100755 Binary files a/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll and b/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.dll differ diff --git a/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.genruntimeconfig.cache b/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.genruntimeconfig.cache new file mode 100644 index 000000000..3dd2cb7ac --- /dev/null +++ b/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.genruntimeconfig.cache @@ -0,0 +1 @@ +c8dd9ef6a04bb9029ecfed38d2dce8c6f5560a76 diff --git a/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb b/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb index 0489636fc..c835c25ca 100755 Binary files a/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb and b/ChallengesWithTestsMark8/obj/Debug/netcoreapp2.1/ChallengesWithTestsMark8.pdb differ diff --git a/ChallengesWithTestsMark8/obj/project.assets.json b/ChallengesWithTestsMark8/obj/project.assets.json index 95bcff739..b578a6552 100644 --- a/ChallengesWithTestsMark8/obj/project.assets.json +++ b/ChallengesWithTestsMark8/obj/project.assets.json @@ -688,32 +688,39 @@ ] }, "packageFolders": { - "/Users/michaeldoyle/.nuget/packages/": {}, - "/usr/local/share/dotnet/sdk/NuGetFallbackFolder": {} + "C:\\Users\\johnd\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/ChallengesWithTestsMark8.csproj", + "projectUniqueName": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj", "projectName": "ChallengesWithTestsMark8", - "projectPath": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/ChallengesWithTestsMark8.csproj", - "packagesPath": "/Users/michaeldoyle/.nuget/packages/", - "outputPath": "/Users/michaeldoyle/Downloads/ChallengesWithTests-Mark8/ChallengesWithTestsMark8/obj/", + "projectPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj", + "packagesPath": "C:\\Users\\johnd\\.nuget\\packages\\", + "outputPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ - "/usr/local/share/dotnet/sdk/NuGetFallbackFolder" + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\" ], "configFilePaths": [ - "/Users/michaeldoyle/.config/NuGet/NuGet.Config" + "C:\\Users\\johnd\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" ], "originalTargetFrameworks": [ "netcoreapp2.1" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", "projectReferences": {} } }, @@ -725,18 +732,26 @@ }, "frameworks": { "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", "dependencies": { "Microsoft.NETCore.App": { + "suppressParent": "All", "target": "Package", "version": "[2.1.0, )", "autoReferenced": true } }, "imports": [ - "net461" + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" ], "assetTargetFallback": true, - "warn": true + "warn": true, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" } } } diff --git a/ChallengesWithTestsMark8/obj/project.nuget.cache b/ChallengesWithTestsMark8/obj/project.nuget.cache new file mode 100644 index 000000000..14f12b338 --- /dev/null +++ b/ChallengesWithTestsMark8/obj/project.nuget.cache @@ -0,0 +1,16 @@ +{ + "version": 2, + "dgSpecHash": "Ic6o018SD0lUjHU2MfLYQKoi3WGiPwI2bPVnvBe1M7peePU2T+hsDx5W1RpdgNFVwYcvJS0ofB039bg+qwekeA==", + "success": true, + "projectFilePath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj", + "expectedPackageFiles": [ + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.netcore.app\\2.1.0\\microsoft.netcore.app.2.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.netcore.dotnetapphost\\2.1.0\\microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.netcore.dotnethostpolicy\\2.1.0\\microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.netcore.dotnethostresolver\\2.1.0\\microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.0\\microsoft.netcore.platforms.2.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.netcore.targets\\2.1.0\\microsoft.netcore.targets.2.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/N_UnitDemo/ChallengesSet01Tests.cs b/N_UnitDemo/ChallengesSet01Tests.cs new file mode 100644 index 000000000..87f3e4231 --- /dev/null +++ b/N_UnitDemo/ChallengesSet01Tests.cs @@ -0,0 +1,119 @@ +using ChallengesWithTestsMark8; +using NUnit.Framework; +using System; + +namespace N_UnitDemo +{ + [TestFixture] + public class ChallengesSet01Tests + { + private ChallengesSet01 _set01; + + [SetUp] + public void Setup() + { + _set01 = new ChallengesSet01(); + } + + [TestCase(1, 1, true)] + [TestCase(10, 10, true)] + [TestCase(99, 99, true)] + [TestCase(-10, -10, true)] + [TestCase(-1, -1, true)] + [TestCase(0, 1, false)] + [TestCase(4, 7, false)] + [TestCase(-1, 1, false)] + [TestCase(5, 6, false)] + public void Test1(int a, int b, bool expected) + { + var actual = _set01.AreTwoNumbersTheSame(a, b); + Assert.AreEqual(expected, actual); + } + + + [TestCase(10, 7, 3)] + [TestCase(100, 75, 25)] + [TestCase(1, 1, 0)] + [TestCase(10, 15, -5)] + [TestCase(0, 7, -7)] + [TestCase(0, 0, 0)] + [TestCase(-5, 5, -10)] + [TestCase(-10, -7, -3)] + [TestCase(-10, -15, 5)] + [TestCase(5.5, 1.2, 4.3)] + [TestCase(0.7, 0.35, 0.35)] + // [TestCase(-2.2, 1.1, -3.3)] -0.0000000000000005d + public void Subtract(double minuend, double subtrahend, double expectedDifference) + { + var actual = _set01.Subtract(minuend, subtrahend); + Assert.AreEqual(expectedDifference, actual); + } + + [TestCase(10, 7, 17)] + [TestCase(100, 75, 175)] + [TestCase(1, 1, 2)] + [TestCase(10, 15, 25)] + [TestCase(0, 7, 7)] + [TestCase(0, 0, 0)] + [TestCase(-5, 5, 0)] + [TestCase(-10, -7, -17)] + [TestCase(-10, -15, -25)] + public void Add(int addend1, int addend2, int expectedSum) + { + var actual = _set01.Add(addend1, addend2); + Assert.AreEqual(expectedSum, actual); + } + + [TestCase(10, 7, 7)] + [TestCase(100, 75, 75)] + [TestCase(1, 1, 1)] + [TestCase(10, 15, 10)] + [TestCase(0, 7, 0)] + [TestCase(0, 0, 0)] + [TestCase(-5, 5, -5)] + [TestCase(-10, -7, -10)] + [TestCase(-10, -15, -15)] + public void GetSmallestNumber(int number1, int number2, int expected) + { + var actual = _set01.GetSmallestNumber(number1, number2); + Assert.AreEqual(expected, actual); + } + + [TestCase(10, 7, 70)] + [TestCase(100, 75, 7500)] + [TestCase(1, 1, 1)] + [TestCase(10, 15, 150)] + [TestCase(0, 7, 0)] + [TestCase(0, 0, 0)] + [TestCase(-5, 5, -25)] + [TestCase(-10, -7, 70)] + [TestCase(-10, -15, 150)] + [TestCase(1234567, 7654321, 9449772114007)] + [TestCase(1234567, -7654321, -9449772114007)] + public void Multiply(long factor1, long factor2, long product) + { + var actual = _set01.Multiply(factor1, factor2); + Assert.AreEqual(product, actual); + } + + [TestCase("John", "Hello, John!")] + [TestCase("Leigh", "Hello, Leigh!")] + [TestCase("John Thomas", "Hello, John Thomas!")] + [TestCase("Leigh Ann", "Hello, Leigh Ann!")] + [TestCase("", "Hello!")] + // [InlineData(null, "Hello!")] // Assumption: string will not be null + public void GetGreeting(string personName, string expectedGreeting) + { + var actual = _set01.GetGreeting(personName); + Assert.AreEqual(expectedGreeting, actual); + } + + [Test] + public void GetHey() + { + var actual = _set01.GetHey(); + Assert.AreEqual("HEY!", actual); + } + + } +} \ No newline at end of file diff --git a/N_UnitDemo/ChallengesSet02Tests.cs b/N_UnitDemo/ChallengesSet02Tests.cs new file mode 100644 index 000000000..14d01f984 --- /dev/null +++ b/N_UnitDemo/ChallengesSet02Tests.cs @@ -0,0 +1,201 @@ +using ChallengesWithTestsMark8; +using NUnit.Framework; +using System; +using System.Collections.Generic; +using System.Text; + +namespace N_UnitDemo +{ + [TestFixture] + public class ChallengesSet02Tests + { + private ChallengesSet02 _set02; + + [SetUp] + public void Setup() + { + _set02 = new ChallengesSet02(); + } + + [Test] + public void CharacterIsALetter() + { + string lowercaseAlphabet = "abcdefghijklmnopqrstuvwxyz"; + + foreach (var letter in lowercaseAlphabet) + { + var lowercaseActual = _set02.CharacterIsALetter(letter); + var uppercaseActual = _set02.CharacterIsALetter(char.ToUpper(letter)); + + Assert.IsTrue(lowercaseActual); + Assert.IsTrue(uppercaseActual); + } + } + + [Test] + public void CharacterIsNotALetter() + { + string nonLetters = "0123456789`~!@#$%^&*()-_=+[{]}\\|;:'\",<.>/?\u2222"; + + foreach (var letter in nonLetters) + { + var actual = _set02.CharacterIsALetter(letter); + Assert.IsFalse(actual); + } + } + + [TestCase(new string[] { }, true)] + [TestCase(new string[] { "a", "b" }, true)] + [TestCase(new string[] { "a", "b", "c", "d" }, true)] + [TestCase(new string[] { "", "", "", "", "", "" }, true)] + [TestCase(new string[] { "a" }, false)] + [TestCase(new string[] { "a", "b", "c" }, false)] + [TestCase(new string[] { "a", "b", "c", "d", "e" }, false)] + // [InlineData(null, false)] // Assumption: array will not be null + public void CountOfElementsIsEven(string[] strings, bool expected) + { + var actual = _set02.CountOfElementsIsEven(strings); + Assert.AreEqual(expected, actual); + } + + [TestCase(0, true)] + [TestCase(2, true)] + [TestCase(4, true)] + [TestCase(6, true)] + [TestCase(8, true)] + [TestCase(-2, true)] + [TestCase(-4, true)] + [TestCase(1, false)] + [TestCase(3, false)] + [TestCase(5, false)] + [TestCase(7, false)] + [TestCase(-1, false)] + [TestCase(-3, false)] + public void IsNumberEven(int number, bool expected) + { + var actual = _set02.IsNumberEven(number); + Assert.AreEqual(expected, actual); + } + + [TestCase(0, false)] + [TestCase(2, false)] + [TestCase(4, false)] + [TestCase(6, false)] + [TestCase(8, false)] + [TestCase(-2, false)] + [TestCase(-4, false)] + [TestCase(1, true)] + [TestCase(3, true)] + [TestCase(5, true)] + [TestCase(7, true)] + [TestCase(-1, true)] + [TestCase(-3, true)] + public void IsNumberOdd(int number, bool expected) + { + var actual = _set02.IsNumberOdd(number); + Assert.AreEqual(expected, actual); + } + + [TestCase(new double[] { 0 }, 0)] + [TestCase(new double[] { 5 }, 10)] + [TestCase(new double[] { 0, 0 }, 0)] + [TestCase(new double[] { -5, 0 }, -5)] + [TestCase(new double[] { 0, 5 }, 5)] + [TestCase(new double[] { -5, 5 }, 0)] + [TestCase(new double[] { -15.5, 1, -5, 8 }, -7.5)] + [TestCase(new double[] { -2.7, 0, -2.3, 12, 9 }, 9.3)] + [TestCase(new double[] { }, 0)] + [TestCase(null, 0)] + public void SumOfMinAndMax(IEnumerable numbers, double expected) + { + var actual = _set02.SumOfMinAndMax(numbers); + Assert.AreEqual(expected, actual); + } + + [TestCase("hello", "world", 5)] + [TestCase("abcde", "fghi", 4)] + [TestCase("abc", "defg", 3)] + [TestCase("abcd", "ef", 2)] + [TestCase("a", "bc", 1)] + [TestCase("a", "", 0)] + public void GetLengthOfShortestString(string str1, string str2, int expected) + { + var actual = _set02.GetLengthOfShortestString(str1, str2); + Assert.AreEqual(expected, actual); + } + + [TestCase(new int[] { 1, 2, 3, 4, 5 }, 15)] + [TestCase(new int[] { -1, -2, -3, -4, -5 }, -15)] + [TestCase(new int[] { 1, -2, 3, -4, 5 }, 3)] + [TestCase(new int[] { 0, 0, 0 }, 0)] + [TestCase(new int[] { }, 0)] + [TestCase(null, 0)] + public void Sum(int[] numbers, int expected) + { + var actual = _set02.Sum(numbers); + Assert.AreEqual(expected, actual); + } + + [TestCase(new int[] { 1, 2, 3, 4, 5 }, 6)] + [TestCase(new int[] { -1, -2, -3, -4, -5 }, -6)] + [TestCase(new int[] { 1, -2, 3, -4, 5 }, -6)] + [TestCase(new int[] { 2, 2, 2, 2, 3, 3, 2 }, 10)] + [TestCase(new int[] { 2, 4, 2, 20, 9, 10, 2, 7 }, 40)] + [TestCase(new int[] { 0, 0, 0 }, 0)] + [TestCase(new int[] { 0, 2, 0 }, 2)] + [TestCase(new int[] { 1, 1, 1, 3, 3, 5, 5, 5, 5, 7 }, 0)] + [TestCase(new int[] { }, 0)] + [TestCase(null, 0)] + public void SumEvens(int[] numbers, int expected) + { + var actual = _set02.SumEvens(numbers); + Assert.AreEqual(expected, actual); + } + + + [TestCase(new int[] { 1, 2, 3, 4, 5 }, true)] + [TestCase(new int[] { -1, -2, -3, -4, -5 }, true)] + [TestCase(new int[] { 1, 2, 2, 3, 4 }, false)] + [TestCase(new int[] { 1, -2, -2, 3, -4 }, false)] + [TestCase(new int[] { 1, -2, 2, 3, 4 }, false)] + [TestCase(new int[] { 1, 3, 5, 7, 9 }, true)] + [TestCase(new int[] { 1, 3, 5, 8 }, true)] + [TestCase(new int[] { 10, 10, 10, 10 }, false)] + [TestCase(new int[] { 0, 1, 0 }, true)] + [TestCase(new int[] { }, false)] + [TestCase(null, false)] + public void IsSumOdd(int[] numbers, bool expected) + { + // Arrange + var numbersList = numbers == null ? null : new List(numbers); + + // Act + var actual = _set02.IsSumOdd(numbersList); + + // Assert + Assert.AreEqual(expected, actual); + } + + + [TestCase(0, 0)] + [TestCase(1, 0)] + [TestCase(2, 1)] + [TestCase(3, 1)] + [TestCase(4, 2)] + [TestCase(5, 2)] + [TestCase(6, 3)] + [TestCase(7, 3)] + [TestCase(1999999999, 999999999)] + [TestCase(2000000000, 1000000000)] + [TestCase(-1, 0)] + [TestCase(-4, 0)] + [TestCase(-1000, 0)] + public void CountOfPositiveOddsBelowNumber(int number, int expected) + { + var actual = _set02.CountOfPositiveOddsBelowNumber(number); + Assert.AreEqual(expected, actual); + } + + + } +} diff --git a/N_UnitDemo/ChallengesSet03Tests.cs b/N_UnitDemo/ChallengesSet03Tests.cs new file mode 100644 index 000000000..836f397ff --- /dev/null +++ b/N_UnitDemo/ChallengesSet03Tests.cs @@ -0,0 +1,192 @@ +using ChallengesWithTestsMark8; +using NUnit.Framework; +using System; +using System.Collections.Generic; +using System.Text; + +namespace N_UnitDemo +{ + [TestFixture] + public class ChallengesSet03Tests + { + private ChallengesSet03 _set03; + + [SetUp] + public void Setup() + { + _set03 = new ChallengesSet03(); + } + + [TestCase(new bool[] { true, true, true, true }, false)] + [TestCase(new bool[] { true, true, true }, false)] + [TestCase(new bool[] { true, true }, false)] + [TestCase(new bool[] { true }, false)] + [TestCase(new bool[] { }, false)] + [TestCase(new bool[] { true, true, true, false }, true)] + [TestCase(new bool[] { true, true, false, true }, true)] + [TestCase(new bool[] { true, false, true, true }, true)] + [TestCase(new bool[] { false, true, true, true }, true)] + [TestCase(new bool[] { true, false, true, false }, true)] + [TestCase(new bool[] { false, true, false, true }, true)] + [TestCase(new bool[] { false, true, false }, true)] + [TestCase(new bool[] { false, false }, true)] + [TestCase(new bool[] { false }, true)] + //[InlineData(null, false)] // Assumption: Array will not be null + public void ArrayContainsAFalse(bool[] values, bool expected) + { + var actual = _set03.ArrayContainsAFalse(values); + Assert.AreEqual(expected, actual); + } + + [TestCase(new int[] { 1, 2, 3, 4, 5 }, true)] + [TestCase(new int[] { -1, -2, -3, -4, -5 }, true)] + [TestCase(new int[] { 1, 2, 2, 3, 4 }, false)] + [TestCase(new int[] { 1, -2, -2, 3, -4 }, false)] + [TestCase(new int[] { 1, -2, 2, 3, 4 }, false)] + [TestCase(new int[] { 1, 3, 5, 7, 9 }, true)] + [TestCase(new int[] { 1, 3, 5, 8 }, true)] + [TestCase(new int[] { 10, 10, 10, 10 }, false)] + [TestCase(new int[] { 0, 1, 0 }, true)] + [TestCase(new int[] { }, false)] + [TestCase(null, false)] + public void IsSumOfOddsOdd(IEnumerable numbers, bool expected) + { + var actual = _set03.IsSumOfOddsOdd(numbers); + Assert.AreEqual(expected, actual); + } + + + [TestCase("aB1", true)] + [TestCase("Ab2", true)] + [TestCase("aabB3", true)] + [TestCase("aabb4B", true)] + [TestCase("ABC5d", true)] + [TestCase("Test123", true)] + [TestCase("c0rrectHorsebatterystaple", true)] + [TestCase("correcthorseBatt3rystaple", true)] + [TestCase("ab1", false)] + [TestCase("Abc", false)] + [TestCase("AB1", false)] + [TestCase("abc", false)] + [TestCase("ABC", false)] + [TestCase("123", false)] + [TestCase("test123", false)] + [TestCase("TEST123", false)] + [TestCase("correcthorsebatterystaple", false)] + [TestCase("correcthorsebatteryStaple", false)] + [TestCase("correcthorsebatterystapl3", false)] + [TestCase("CORRECTHORSEBATTERYSTAPLE", false)] + [TestCase("C0RRECTHORS3BATTERYSTAPLE", false)] + public void PasswordContainsUpperLowerAndNumber(string password, bool expected) + { + var actual = _set03.PasswordContainsUpperLowerAndNumber(password); + Assert.AreEqual(expected, actual); + } + + [TestCase("test", 't')] + [TestCase("Test", 'T')] + [TestCase("1test", '1')] + [TestCase("aString", 'a')] + [TestCase("7seas", '7')] + [TestCase("zebra", 'z')] + [TestCase("!cool", '!')] + [TestCase("#C", '#')] + [TestCase("\u2222test", '\u2222')] + [TestCase("+100", '+')] + [TestCase("--i", '-')] + [TestCase("\\test", '\\')] + public void GetFirstLetterOfString(string str, char expected) + { + var actual = _set03.GetFirstLetterOfString(str); + Assert.AreEqual(expected, actual); + } + + [TestCase("test", 't')] + [TestCase("tesT", 'T')] + [TestCase("test1", '1')] + [TestCase("Stringa", 'a')] + [TestCase("seas7", '7')] + [TestCase("zebraz", 'z')] + [TestCase("cool!", '!')] + [TestCase("C#", '#')] + [TestCase("test\u2222", '\u2222')] + [TestCase("100+", '+')] + [TestCase("i--", '-')] + [TestCase("test\\", '\\')] + public void GetLastLetterOfString(string str, char expected) + { + var actual = _set03.GetLastLetterOfString(str); + Assert.AreEqual(expected, actual); + } + + [TestCase(10, 5, 2)] + [TestCase(9, 3, 3)] + [TestCase(10, 3, 3.3333)] + [TestCase(-10, 5, -2)] + [TestCase(-10, 3, -3.3333)] + [TestCase(0, 5, 0)] + [TestCase(25, 24, 1.04166)] + [TestCase(53, 7, 7.57142)] + [TestCase(5, 0, 0)] // Assumption: Dividing by zero returns 0 for this method + public void Divide(decimal dividend, decimal divisor, decimal expected) + { + var actual = _set03.Divide(dividend, divisor); + Assert.AreEqual(Math.Round(expected, 4), Math.Round(actual, 4)); + } + + [TestCase(new int[] { 1, 2, 3 }, 2)] + [TestCase(new int[] { 3, 2, 1 }, -2)] + [TestCase(new int[] { 0, 5, 10 }, 10)] + [TestCase(new int[] { 1, 2, 30 }, 29)] + [TestCase(new int[] { 1, 2, 3, 2, 1 }, 0)] + [TestCase(new int[] { -5, 1, 1, 1, 1, 5 }, 10)] + [TestCase(new int[] { -5, 1, 1, 1, 1, -5 }, 0)] + [TestCase(new int[] { 5, 1, 1, 1, 1, -5 }, -10)] + [TestCase(new int[] { 50, 1, 1, 1, 1, 5 }, -45)] + [TestCase(new int[] { 5, 1, 1, 1, 1, 50 }, 45)] + public void LastMinusFirst(int[] numbers, int expected) + { + var actual = _set03.LastMinusFirst(numbers); + Assert.AreEqual(expected, actual); + } + + [Test] + public void ShouldGetOddsBelow100() + { + // Arrange + int[] odds = { + 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, + 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, + 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, + 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 95, 97, 99 + }; + + // Act + var actual = _set03.GetOddsBelow100(); + + // Assert + Assert.AreEqual(odds, actual); + } + + + [TestCase(new[] { "abc", "def", "ghi" }, new[] { "ABC", "DEF", "GHI" })] + [TestCase(new[] { "Abc", "dEf", "gHi" }, new[] { "ABC", "DEF", "GHI" })] + [TestCase(new[] { "ab1zz", "de!xx", "gh;yy" }, new[] { "AB1ZZ", "DE!XX", "GH;YY" })] + [TestCase(new[] { "ab1", "de!", "", "123", "gh;", "#e@" }, new[] { "AB1", "DE!", "", "123", "GH;", "#E@" })] + [TestCase(new[] { "ab1", "de!" }, new[] { "AB1", "DE!" })] + [TestCase(new[] { "ab1" }, new[] { "AB1" })] + [TestCase(new[] { "" }, new[] { "" })] + [TestCase(new string[] { }, new string[] { })] + //[InlineData(null, null)] // Assumption: Array will not be null + public void ChangeAllElementsToUppercase(string[] values, string[] expected) + { + _set03.ChangeAllElementsToUppercase(values); + + Assert.AreEqual(values.Length, expected.Length); + for (int i = 0; i < values.Length; i++) + { + Assert.AreEqual(expected[i], values[i]); + } + } + } +} diff --git a/N_UnitDemo/ChallengesSet04Tests.cs b/N_UnitDemo/ChallengesSet04Tests.cs new file mode 100644 index 000000000..4a30a2bd4 --- /dev/null +++ b/N_UnitDemo/ChallengesSet04Tests.cs @@ -0,0 +1,206 @@ +using ChallengesWithTestsMark8; +using NUnit.Framework; +using System; +using System.Collections.Generic; +using System.Text; + +namespace N_UnitDemo +{ + [TestFixture] + public class ChallengesSet04Tests + { + private ChallengesSet04 _set04; + + [SetUp] + public void Setup() + { + _set04 = new ChallengesSet04(); + } + + [TestCase(new int[] { 2, 6, 8, 3, 1, 3 }, 9)] + [TestCase(new int[] { 4, 6, 10 }, 20)] + [TestCase(new int[] { 3, 1, 3 }, -7)] + [TestCase(new int[] { 2, 3 }, -1)] + [TestCase(new int[] { 0, 0 }, 0)] + [TestCase(new int[] { }, 0)] + // [InlineData(null, 0)] // Assumption: array will not be null + public void AddEvenSubtractOdd(int[] numbers, int expected) + { + var actual = _set04.AddEvenSubtractOdd(numbers); + Assert.AreEqual(expected, actual); + } + + [TestCase("a", "aa", "aaa", "aaaa", 1)] + [TestCase("aa", "a", "aaa", "aaaa", 1)] + [TestCase("aa", "aaa", "a", "aaaa", 1)] + [TestCase("aa", "aaa", "aaaa", "a", 1)] + [TestCase("aa", "aa", "aaa", "aaaa", 2)] + [TestCase("aaa", "aaa", "aaa", "aaaa", 3)] + [TestCase("aaaa", "aaaa", "aaaa", "aaaa", 4)] + [TestCase("", "aa", "aaa", "aaaa", 0)] + [TestCase("aa", "aa", "", "aaaa", 0)] + [TestCase("aaaaaaaaa", "a a", "aaaaaaaa", "aaaaaaaaaaaaaaaaaaaaaaaaa", 8)] + public void GetLengthOfShortestString(string string1, string string2, string string3, string string4, int expected) + { + var actual = _set04.GetLengthOfShortestString(string1, string2, string3, string4); + Assert.AreEqual(expected, actual); + } + + + [TestCase(1, 2, 3, 4, 1)] + [TestCase(2, 2, 3, 4, 2)] + [TestCase(4, 5, 3, -1, -1)] + [TestCase(5, 2, -3, 4, -3)] + [TestCase(8, 0, 3, 4, 0)] + [TestCase(7, 5, 3, 4, 3)] + public void GetSmallestNumber(int num1, int num2, int num3, int num4, int expected) + { + var actual = _set04.GetSmallestNumber(num1, num2, num3, num4); + Assert.AreEqual(expected, actual); + } + + [TestCase("true coders")] + [TestCase("truecoders")] + [TestCase("TRUECODERS")] + [TestCase("tRUEcODERS")] + [TestCase("test")] + [TestCase("")] + [TestCase(null)] + public void ChangeBusinessNameTo_TrueCoders(string originalBusinessName) + { + // Arrange + Business business = new Business() { Name = originalBusinessName }; + + // Act + _set04.ChangeBusinessNameTo_TrueCoders(business); + + // Assert + Assert.AreEqual("TrueCoders", business.Name); + } + + [TestCase(2, 2, 2, true)] + [TestCase(2, 3, 2, true)] + [TestCase(3, 4, 5, true)] + [TestCase(16, 10, 7, true)] + [TestCase(30, 15, 20, true)] + [TestCase(50, 30, 40, true)] + [TestCase(100, 99, 2, true)] + [TestCase(1000, 1, 1000, true)] + [TestCase(100, 1, 99, false)] + [TestCase(1, 19, 20, false)] + [TestCase(85, 84, 1, false)] + [TestCase(300, 400, 800, false)] + [TestCase(2, 2, 0, false)] + [TestCase(2, 0, 2, false)] + [TestCase(0, 2, 2, false)] + [TestCase(0, 0, 0, false)] + [TestCase(-2, -2, -2, false)] + [TestCase(-2, 2, 2, false)] + [TestCase(10, 20, 50, false)] + public void CouldFormTriangle(int sideLength1, int sideLength2, int sideLength3, bool expected) + { + var actual = _set04.CouldFormTriangle(sideLength1, sideLength2, sideLength3); + Assert.AreEqual(expected, actual); + } + + [TestCase("0", true)] + [TestCase("123", true)] + [TestCase("123.45", true)] + [TestCase("-543", true)] + [TestCase("-987.65", true)] + [TestCase("abc", false)] + [TestCase("77a", false)] + [TestCase("a55", false)] + [TestCase("22*", false)] + [TestCase("4#", false)] + [TestCase("", false)] + [TestCase(null, false)] + public void IsStringANumber(string word, bool expected) + { + var actual = _set04.IsStringANumber(word); + Assert.AreEqual(expected, actual); + } + + [TestCase(new string[] { "test", null, "test" }, false)] + [TestCase(new string[] { "test", null, "test", null }, false)] + [TestCase(new string[] { null, "test" }, false)] + [TestCase(new string[] { null, "test", "test" }, false)] + [TestCase(new string[] { "test", "test", "test" }, false)] + [TestCase(new string[] { "test", "test", null }, false)] + [TestCase(new object[] { 1, null, 7, "test" }, false)] + [TestCase(new object[] { 1, null, '7', "test" }, false)] + [TestCase(new object[] { 1, null, 'a', false, "test" }, false)] + [TestCase(new object[] { null, "test", "test" }, false)] + [TestCase(new object[] { null, "test", "test", null, "test" }, false)] + [TestCase(new string[] { null, "test", "test", null, null }, true)] + [TestCase(new string[] { null, null, "test", null, "test" }, true)] + [TestCase(new string[] { null, "test", null, "test", null }, true)] + [TestCase(new object[] { 1, null, null }, true)] + [TestCase(new object[] { null, null, null }, true)] + [TestCase(new object[] { null, null, 5, null }, true)] + [TestCase(new object[] { null, null, 5, null, "test" }, true)] + [TestCase(new object[] { null, null, "test", null, true }, true)] + [TestCase(new object[] { null, null, '!', null, 4 }, true)] + [TestCase(new object[] { null, false, null, null, '!', null, 4 }, true)] + [TestCase(new object[] { null, null, new int[] { }, false, null, null, '!', null, 4 }, true)] + public void MajorityOfElementsInArrayAreNull(object[] objects, bool expected) + { + var actual = _set04.MajorityOfElementsInArrayAreNull(objects); + Assert.AreEqual(expected, actual); + } + + [TestCase(new int[] { 1, 2, 3, 4, 5 }, 3)] + [TestCase(new int[] { -1, -2, -3, -4, -5 }, -3)] + [TestCase(new int[] { 1, 2, 2, 3, 4 }, 2.6666666666)] + [TestCase(new int[] { 1, -2, -2, 3, -4 }, -2.6666666666)] + [TestCase(new int[] { 1, -2, 2, 3, -4 }, -1.3333333333)] + [TestCase(new int[] { 1, 3, 5, 7 }, 0)] + [TestCase(new int[] { 0, 0, 0 }, 0)] + [TestCase(new int[] { }, 0)] + [TestCase(null, 0)] + public void AverageEvens(int[] numbers, double expected) + { + var actual = _set04.AverageEvens(numbers); + Assert.AreEqual(Math.Round(expected, 5), Math.Round(actual, 5)); + } + + + [TestCase(0, 1)] + [TestCase(1, 1)] + [TestCase(2, 2)] + [TestCase(3, 6)] + [TestCase(4, 24)] + [TestCase(5, 120)] + [TestCase(6, 720)] + [TestCase(7, 5040)] + [TestCase(8, 40320)] + [TestCase(9, 362880)] + [TestCase(10, 3628800)] + public void Factorial(int number, int expected) + { + var actual = _set04.Factorial(number); + Assert.AreEqual(expected, actual); + } + + [Test] + public void NegativeFactorialShouldThrowArgumentOutOfRangeException() + { + // Arrange + int negative1 = -1; + int negative2 = -2; + int negative3 = -3; + + // Act + Action actual1 = () => _set04.Factorial(negative1); + Action actual2 = () => _set04.Factorial(negative2); + Action actual3 = () => _set04.Factorial(negative3); + + // Assert + Assert.Throws(actual1.Invoke); + Assert.Throws(actual2.Invoke); + Assert.Throws(actual3.Invoke); + } + + + } +} diff --git a/N_UnitDemo/ChallengesSet05Tests.cs b/N_UnitDemo/ChallengesSet05Tests.cs new file mode 100644 index 000000000..c15be09a6 --- /dev/null +++ b/N_UnitDemo/ChallengesSet05Tests.cs @@ -0,0 +1,185 @@ +using ChallengesWithTestsMark8; +using NUnit.Framework; +using System; +using System.Collections.Generic; +using System.Text; + +namespace N_UnitDemo +{ + [TestFixture] + public class ChallengesSet05Tests + { + private ChallengesSet05 _set05; + + [SetUp] + public void Setup() + { + _set05 = new ChallengesSet05(); + } + + [TestCase(5, 9, 9)] + [TestCase(5, 2, 6)] + [TestCase(21, 20, 40)] + [TestCase(102, 5, 105)] + [TestCase(0, 7, 7)] + [TestCase(100, 5, 105)] + [TestCase(3, 6, 6)] + public void NextNumberDivisibleByN(int startNumber, int n, int expected) + { + var actual = _set05.GetNextNumberDivisibleByN(startNumber, n); + Assert.AreEqual(expected, actual); + } + + + [TestCase(new[] { "Test1", "Test2", "Test3", "Test4" }, new[] { 100d, 10d, 0d, 250d })] + [TestCase(new[] { "Test1", "Test2", "Test3", "Test4" }, new[] { 0.5d, 0d, 0d, 1d })] + [TestCase(new[] { "Test1", "Test2", "Test3", "Test4" }, new[] { 99d, 65d, 80d, 35d })] + [TestCase(new[] { "Test1", "Test2", "Test3", "Test4" }, new[] { 0d, 1d, 2d, 3d })] + [TestCase(new[] { "Test1", "Test2", "Test3" }, new[] { 22d, 33d, 44d })] + [TestCase(new[] { "Test1", "Test2", "Test3" }, new[] { 55d, 11d, 0d })] + [TestCase(new[] { "Test1" }, new[] { 100d })] + [TestCase(new[] { "Test1" }, new[] { 0d })] + public void ChangeNamesOfBusinessesWithNoRevenueTo_CLOSED(string[] names, double[] revenues) + { + // Arrange + Business[] businesses = new Business[names.Length]; + for (int i = 0; i < names.Length; i++) + { + businesses[i] = new Business() + { + Name = names[i], + TotalRevenue = revenues[i] + }; + } + + // Act + _set05.ChangeNamesOfBusinessesWithNoRevenueTo_CLOSED(businesses); + + // Assert + foreach (var business in businesses) + { + if (business.TotalRevenue == 0) + { + Assert.AreEqual("CLOSED", business.Name); + } + } + } + + + [TestCase(new[] { 1, 2, 3 }, true)] + [TestCase(new[] { -3, -2, -1 }, true)] + [TestCase(new[] { 1, 2, 3, 4, 5, 6 }, true)] + [TestCase(new[] { 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 4, 5, 6, 6, 6 }, true)] + [TestCase(new[] { 10, 1000, 1002 }, true)] + [TestCase(new[] { -1000, -1000, -500, 0, 1000000 }, true)] + [TestCase(new[] { 10 }, true)] + [TestCase(new[] { 3, 2, 1 }, false)] + [TestCase(new[] { 0, -1, -2 }, false)] + [TestCase(new[] { 1, 2, 3, 2 }, false)] + [TestCase(new[] { 1, 2, 4, 3, 5 }, false)] + [TestCase(new[] { 1, 1, 2, 2, 3, 4, 4, 3 }, false)] + [TestCase(new[] { -1000, -500, -500, 10000000, 1000000 }, false)] + [TestCase(new[] { 5, 2, 3, 4 }, false)] + [TestCase(new[] { 1, 0 }, false)] + [TestCase(new int[] { }, false)] + [TestCase(null, false)] + public void IsAscendingOrder(int[] nums, bool expected) + { + var actual = _set05.IsAscendingOrder(nums); + Assert.AreEqual(expected, actual); + } + + [TestCase(new int[] { 1, 2, 3, 4, 5 }, 8)] + [TestCase(new int[] { -1, -2, -3, -4, -5 }, -8)] + [TestCase(new int[] { 1, 2, 2, 3, 4 }, 5)] + [TestCase(new int[] { 1, -2, -2, 3, -4 }, 1)] + [TestCase(new int[] { 1, -2, 2, 3, 4 }, 5)] + [TestCase(new int[] { 1, 3, 5, 7 }, 0)] + [TestCase(new int[] { 1, 3, 5, 8 }, 0)] + [TestCase(new int[] { 10, 10, 10, 10 }, 30)] + [TestCase(new int[] { 0, 1, 0 }, 1)] + [TestCase(new int[] { }, 0)] + [TestCase(null, 0)] + public void SumElementsThaFollowAnEven(int[] numbers, int expected) + { + var actual = _set05.SumElementsThatFollowAnEven(numbers); + Assert.AreEqual(expected, actual); + } + + + [TestCase(new string[] { "Hello,", "world" }, "Hello, world.")] + [TestCase(new string[] { "This", "is", "only", "a", "test" }, "This is only a test.")] + [TestCase(new string[] { "This", "is", "", "a", "test" }, "This is a test.")] + [TestCase(new string[] { "This", "is", " ", "a", "test" }, "This is a test.")] + [TestCase(new string[] { "This", "is ", " ", "a ", " test " }, "This is a test.")] + [TestCase(new string[] { " ", " " }, "")] + [TestCase(new string[] { }, "")] + [TestCase(null, "")] + public void TurnWordsIntoSentence(string[] words, string expected) + { + var actual = _set05.TurnWordsIntoSentence(words); + Assert.AreEqual(expected, actual); + } + + + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }, new[] { 4d, 8, 12, 16 })] + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 }, new[] { 4d, 8, 12 })] + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }, new[] { 4d, 8, 12 })] + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 }, new[] { 4d, 8 })] + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7, 8 }, new[] { 4d, 8 })] + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7 }, new[] { 4d })] + [TestCase(new[] { 1d, 2, 3, 4 }, new[] { 4d })] + [TestCase(new[] { 1d, 2, 3 }, new double[] { })] + [TestCase(new[] { 1d }, new double[] { })] + [TestCase(new double[] { }, new double[] { })] + [TestCase(null, new double[] { })] + public void GetEveryFourthElement(double[] numbers, double[] expected) + { + // Arrange + var numbersAsList = numbers == null ? null : new List(numbers); + + // Act + var actual = _set05.GetEveryFourthElement(numbersAsList); + + // Assert + Assert.AreEqual(expected.Length, actual.Length); + for (int i = 0; i < expected.Length; i++) + { + Assert.AreEqual(Math.Round(expected[i], 4), Math.Round(actual[i], 4)); + } + } + + + [TestCase(new[] { 1, 2, 3 }, 5, true)] + [TestCase(new[] { 1, 2, 3 }, 3, true)] + [TestCase(new[] { 7, 3, 20 }, 10, true)] + [TestCase(new[] { 7, 3, 20 }, 27, true)] + [TestCase(new[] { 5, -2, 4, 6, 8 }, 3, true)] + [TestCase(new[] { 5, -2, 4, 6, 8 }, 9, true)] + [TestCase(new[] { 5, -2, 4, 6, 8 }, 10, true)] + [TestCase(new[] { 5, -2, 4, 6, 8 }, 14, true)] + [TestCase(new[] { 5, -2, 4, 6, 8 }, 2, true)] + [TestCase(new[] { 5, -2, 4, 6, 8 }, 4, true)] + [TestCase(new[] { 5, -2, 4, 4, 8 }, 8, true)] + [TestCase(new[] { 5, -2, 4, 4 }, 8, true)] + [TestCase(new[] { 3, -3 }, 0, true)] + [TestCase(new[] { 3, -3, 3, -3 }, -6, true)] + [TestCase(new[] { 3, -3, 3, -3 }, 0, true)] + [TestCase(new[] { 3, -3, 3, -3 }, 6, true)] + [TestCase(new[] { 5, -2, 4, 6, 8 }, 20, false)] + [TestCase(new[] { 5, -2, 4, 6, 8 }, 5, false)] + [TestCase(new[] { 5, -2, 4, 6, 8 }, 8, false)] + [TestCase(new[] { 5, -2, 4, 6, 8 }, 15, false)] + [TestCase(new[] { 5, -2, 4, 6, 8 }, 0, false)] + [TestCase(new[] { 5, -2, 4, 6, 8 }, -2, false)] + [TestCase(new[] { 4 }, 8, false)] + [TestCase(new[] { 4 }, 4, false)] + [TestCase(new int[] { }, 1, false)] + [TestCase(new int[] { }, 0, false)] + public void TwoDifferentElementsInArrayCanSumToTargetNumber(int[] numbers, int targetNumber, bool expected) + { + var actual = _set05.TwoDifferentElementsInArrayCanSumToTargetNumber(numbers, targetNumber); + Assert.AreEqual(expected, actual); + } + } +} diff --git a/N_UnitDemo/ChallengesSet06Tests.cs b/N_UnitDemo/ChallengesSet06Tests.cs new file mode 100644 index 000000000..49ff557ef --- /dev/null +++ b/N_UnitDemo/ChallengesSet06Tests.cs @@ -0,0 +1,296 @@ +using ChallengesWithTestsMark8; +using NUnit.Framework; +using System; +using System.Collections.Generic; +using System.Text; + +namespace N_UnitDemo +{ + [TestFixture] + public class ChallengesSet06Tests + { + private ChallengesSet06 _set06; + + [SetUp] + public void Setup() + { + _set06 = new ChallengesSet06(); + } + + [TestCase(new string[] { "alpha", "bravo", "charlie" }, "alpha", true, true)] + [TestCase(new string[] { "alpha", "bravo", "charlie" }, "alpha", false, true)] + [TestCase(new string[] { "alpha", "bravo", "charlie" }, "bravo", true, true)] + [TestCase(new string[] { "alpha", "bravo", "charlie" }, "charlie", true, true)] + [TestCase(new string[] { "Alpha", "bravo", "charlie" }, "alpha", true, true)] + [TestCase(new string[] { "Alpha", "braVo", "charlie" }, "bravo", true, true)] + [TestCase(new string[] { "Alpha", "bravo", "chArlie" }, "charlie", true, true)] + [TestCase(new string[] { "AlPha", "alpha", "bravo", "charlie" }, "alpha", false, true)] + [TestCase(new string[] { "AlPha", "bravo", "charlie" }, "alpha", false, false)] + [TestCase(new string[] { "alpha", "bravo", "charlie" }, "delta", true, false)] + [TestCase(new string[] { null, "bravo", "charlie" }, "braVo", false, false)] + [TestCase(new string[] { null, "bravo", "chArlie" }, "charliE", false, false)] + [TestCase(new string[] { null, null, "charlie" }, "bravo", true, false)] + [TestCase(null, "alpha", true, false)] + public void CollectionContainsWord(IEnumerable words, string word, bool ignoreCase, bool expected) + { + var actual = _set06.CollectionContainsWord(words, word, ignoreCase); + Assert.AreEqual(expected, actual); + } + + [TestCase(2, true)] + [TestCase(3, true)] + [TestCase(5, true)] + [TestCase(1523, true)] + [TestCase(26357, true)] + [TestCase(37117, true)] + [TestCase(83791, true)] + [TestCase(91199, true)] + [TestCase(91387, true)] + [TestCase(91909, true)] + [TestCase(99991, true)] + [TestCase(1, false)] + [TestCase(4, false)] + [TestCase(2000, false)] + [TestCase(10011, false)] + [TestCase(99561, false)] + [TestCase(99987, false)] + [TestCase(0, false)] + [TestCase(-1, false)] + [TestCase(-5, false)] + [TestCase(-101, false)] + [TestCase(-99991, false)] + public void IsPrimeNumber(int number, bool expected) + { + var actual = _set06.IsPrimeNumber(number); + Assert.AreEqual(expected, actual); + } + + + [TestCase("aaaa", -1)] + [TestCase("aaa", -1)] + [TestCase("aa", -1)] + [TestCase("a", 0)] + [TestCase("", -1)] + [TestCase("ab", 1)] + [TestCase("abb", 0)] + [TestCase("aba", 1)] + [TestCase("aab", 2)] + [TestCase("aabaa", 2)] + [TestCase("aabbc", 4)] + [TestCase("aabcc", 2)] + [TestCase("aabbcddee", 4)] + [TestCase("aaabbbcdddeee", 6)] + [TestCase("aaabbbcdddeeeffg", 15)] + [TestCase("abbbccdddeeeffgg", 0)] + public void LastUniqueIndex(string str, int expected) + { + var actual = _set06.IndexOfLastUniqueLetter(str); + Assert.AreEqual(expected, actual); + } + + + [TestCase(new int[] { 1, 2, 2, 3, 4, 5 }, 2)] + [TestCase(new int[] { 10, 3, 1, 1, 1, 5, 1 }, 3)] + [TestCase(new int[] { 1, 2, 2, 3, 3, 3, 3, 2, 5 }, 4)] + [TestCase(new int[] { 1, 2, 2, 3, 3, 3, 3 }, 4)] + [TestCase(new int[] { 1, 2, 2, 3, 2 }, 2)] + [TestCase(new int[] { 3, 3, 3, 2, 2 }, 3)] + [TestCase(new int[] { 1, 3, 2, 3, 3, 3, 3 }, 4)] + public void MaxConsecutiveCount(int[] numbers, int expected) + { + var actual = _set06.MaxConsecutiveCount(numbers); + Assert.AreEqual(expected, actual); + } + + + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }, 4, new[] { 4d, 8, 12, 16 })] + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }, 3, new[] { 3d, 6, 9, 12, 15 })] + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }, 2, new[] { 2d, 4, 6, 8, 10, 12, 14, 16 })] + [TestCase(new[] { 1d, 2, 3, 4, 5 }, 1, new[] { 1d, 2, 3, 4, 5 })] + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }, 8, new[] { 8d, 16 })] + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }, 10, new[] { 10d })] + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }, 20, new double[] { })] + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }, -2, new double[] { })] + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 }, 4, new[] { 4d, 8, 12 })] + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 }, 4, new[] { 4d, 8 })] + [TestCase(new[] { 1d, 2, 3, 4, 5, 6, 7 }, 4, new[] { 4d })] + [TestCase(new[] { 1d }, 1, new[] { 1d })] + [TestCase(new[] { 1d }, -1, new double[] { })] + [TestCase(new double[] { }, 0, new double[] { })] + [TestCase(new double[] { }, 1, new double[] { })] + [TestCase(null, 0, new double[] { })] + [TestCase(null, 1, new double[] { })] + public void GetEveryNthElement_List(double[] numbers, int n, double[] expected) + { + // Arrange + var numbersAsList = numbers == null ? null : new List(numbers); + + // Act + var actual = _set06.GetEveryNthElement(numbersAsList, n); + + //Assert + Assert.AreEqual(expected.Length, actual.Length); + for (int i = 0; i < expected.Length; i++) + { + Assert.AreEqual(Math.Round(expected[i], 4), Math.Round(actual[i], 4)); + } + } + + + [TestCase(new double[] { 100, 100, 100 }, new double[] { 95, 90, 80 }, 0)] + [TestCase(new double[] { 100, 100, 100 }, new double[] { 95, 110, 120 }, 2)] + [TestCase(new double[] { 100 }, new double[] { 90 }, 0)] + [TestCase(new double[] { 100 }, new double[] { 110 }, 1)] + [TestCase(new double[] { }, new double[] { }, 0)] + [TestCase(null, null, 0)] + public void CountOfBusinessesWithNegativeNetProfit(double[] revenues, double[] expenses, int expected) + { + // Arrange + var businesses = new List(); + if (revenues != null) + { + for (int i = 0; i < revenues.Length; i++) + { + businesses.Add(new Business() + { + TotalRevenue = revenues[i], + TotalExpenses = expenses[i] + }); + } + } + else + { + businesses = null; + } + + // Act + var actual = _set06.CountOfBusinessesWithNegativeNetProfit(businesses); + + // Assert + Assert.AreEqual(expected, actual); + } + + + [TestCase(new[] { 100d, 100, 100 }, new[] { 110d, 90, 80 }, new[] { "Business A", "Business B", "Business C" }, "Business B,Business C")] + [TestCase(new[] { 100d, 100, 100 }, new[] { 90d, 110, 110 }, new[] { "Business A", "Business B", "Business C" }, "Business A")] + [TestCase(new[] { 100d, 100, 100 }, new[] { 110d, 110, 110 }, new[] { "Business A", "Business B", "Business C" }, "")] + [TestCase(new[] { 100d, 100, 100, 100, 100, 100, 100 }, new[] { 110d, 90, 110, 90, 110, 110, 90 }, new[] { "A", "B", "C", "D", "E", "F", "G" }, "B,D,G")] + public void GetCommaSeparatedListOfProfitableBusinesses(double[] revenues, double[] expenses, string[] names, string expected) + { + // Arrange + var businesses = new List(); + for (int i = 0; i < revenues.Length; i++) + { + businesses.Add(new Business() + { + TotalRevenue = revenues[i], + TotalExpenses = expenses[i], + Name = names[i] + }); + } + + // Act + var actual = _set06.GetCommaSeparatedListOfProfitableBusinesses(businesses); + + // Assert + Assert.AreEqual(expected, actual); + } + + + [TestCase("A", "B", "C", "D", "E")] + [TestCase("C", "D")] + [TestCase("B")] + [TestCase("A", "B", "C", "D", "E", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X")] + [TestCase("C1", "C2", "C3", "C4", "C5", "C6", null, "C7", "C8", "C9", "C10")] + public void GetNameOfHighestParentCompany(params string[] namesInOrder) + { + // Arrange + var expected = namesInOrder[namesInOrder.Length - 1]; + var headNode = new Business(); + var current = headNode; + for (int i = 0; i < namesInOrder.Length; i++) + { + current.Name = namesInOrder[i]; + current.ParentCompany = i == namesInOrder.Length - 1 ? null : new Business(); + current = current.ParentCompany; + } + + // Act + string actual = _set06.GetNameOfHighestParentCompany(headNode); + + // Assert + Assert.AreEqual(expected, actual); + } + + [TestCase(new char[] { 'X', 'X', 'X' }, // Top row + new char[] { 'O', 'O', 'X' }, + new char[] { 'X', 'O', 'O' }, ChallengesSet06.TicTacToeResult.X)] + + [TestCase(new char[] { 'X', 'X', 'O' }, // Middle row + new char[] { 'O', 'O', 'O' }, + new char[] { 'X', 'O', 'X' }, ChallengesSet06.TicTacToeResult.O)] + + [TestCase(new char[] { 'O', 'X', 'X' }, // Bottom row + new char[] { 'X', 'X', 'O' }, + new char[] { 'O', 'O', 'O' }, ChallengesSet06.TicTacToeResult.O)] + + [TestCase(new char[] { 'O', 'O', 'X' }, // Left column + new char[] { 'O', 'X', 'X' }, + new char[] { 'O', 'X', 'O' }, ChallengesSet06.TicTacToeResult.O)] + + [TestCase(new char[] { 'O', 'X', 'X' }, // Middle column + new char[] { 'X', 'X', 'O' }, + new char[] { 'O', 'X', 'O' }, ChallengesSet06.TicTacToeResult.X)] + + [TestCase(new char[] { 'O', 'O', 'X' }, // Right column + new char[] { 'X', 'O', 'X' }, + new char[] { 'O', 'X', 'X' }, ChallengesSet06.TicTacToeResult.X)] + + [TestCase(new char[] { 'X', 'O', 'X' }, // Forward diagonal + new char[] { 'O', 'X', 'X' }, + new char[] { 'X', 'O', 'O' }, ChallengesSet06.TicTacToeResult.X)] + + [TestCase(new char[] { 'O', 'X', 'X' }, // Back diagonal + new char[] { 'X', 'O', 'X' }, + new char[] { 'X', 'O', 'O' }, ChallengesSet06.TicTacToeResult.O)] + + [TestCase(new char[] { 'X', 'O', 'X' }, + new char[] { 'O', 'O', 'X' }, + new char[] { 'X', 'X', 'O' }, ChallengesSet06.TicTacToeResult.Draw)] + + [TestCase(new char[] { 'O', 'X', 'X' }, + new char[] { 'X', 'O', 'O' }, + new char[] { 'O', 'X', 'X' }, ChallengesSet06.TicTacToeResult.Draw)] + + [TestCase(new char[] { 'X', 'O', 'X' }, + new char[] { 'X', 'O', 'O' }, + new char[] { 'O', 'X', 'X' }, ChallengesSet06.TicTacToeResult.Draw)] + public void GetTicTacToeWinner(char[] row1, char[] row2, char[] row3, ChallengesSet06.TicTacToeResult expected) + { + // Arrange + char[,] finalBoard = new char[3, 3]; + for (int col = 0; col < 3; col++) finalBoard[0, col] = row1[col]; + for (int col = 0; col < 3; col++) finalBoard[1, col] = row2[col]; + for (int col = 0; col < 3; col++) finalBoard[2, col] = row3[col]; + + // Act + ChallengesSet06.TicTacToeResult actual = _set06.GetTicTacToeWinner(finalBoard); + + // Assert + Assert.AreEqual(expected, actual); + } + + [TestCase(true, 2, new[] { 1, 2, 3 }, new[] { 5, 2, 5, 8, 3 }, new[] { 2 })] + [TestCase(true, 5, new[] { 1, 5, 3 }, new[] { 5, 2, 5, 8, 3 }, new[] { 2, 10, 9, 5 }, new[] { 5, 1 })] + [TestCase(true, 1, new[] { 1, 5, 3 })] + [TestCase(false, 5, new[] { 1, 5, 3 }, new[] { 5, 2, 5, 8, 3 }, new[] { 2, 10, 9 }, new[] { 5, 1 })] + [TestCase(false, 2, new[] { 1, 5, 3 }, new[] { 5, 2, 5, 8, 3 }, new[] { 2, 10, 9 }, new[] { 5, 1 })] + [TestCase(false, 3, new int[] { })] + [TestCase(false, 4)] + public void EachArrayInJaggedArrayContainsTargetNumber(bool expected, int targetNumber, params int[][] numbers) + { + var actual = _set06.EachArrayInJaggedArrayContainsTargetNumber(numbers, targetNumber); + Assert.AreEqual(expected, actual); + } + } +} diff --git a/N_UnitDemo/N_UnitDemo.csproj b/N_UnitDemo/N_UnitDemo.csproj new file mode 100644 index 000000000..57e790ede --- /dev/null +++ b/N_UnitDemo/N_UnitDemo.csproj @@ -0,0 +1,20 @@ + + + + netcoreapp3.1 + + false + + + + + + + + + + + + + + diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.deps.json b/N_UnitDemo/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.deps.json new file mode 100644 index 000000000..b1939c3a8 --- /dev/null +++ b/N_UnitDemo/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v2.1", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v2.1": { + "ChallengesWithTestsMark8/1.0.0": { + "runtime": { + "ChallengesWithTestsMark8.dll": {} + } + } + } + }, + "libraries": { + "ChallengesWithTestsMark8/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.dll new file mode 100644 index 000000000..1d0c67561 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.pdb b/N_UnitDemo/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.pdb new file mode 100644 index 000000000..c835c25ca Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.pdb differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.runtimeconfig.dev.json b/N_UnitDemo/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.runtimeconfig.dev.json new file mode 100644 index 000000000..147c79976 --- /dev/null +++ b/N_UnitDemo/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.runtimeconfig.dev.json @@ -0,0 +1,10 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\johnd\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\johnd\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet" + ] + } +} \ No newline at end of file diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.runtimeconfig.json b/N_UnitDemo/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.runtimeconfig.json new file mode 100644 index 000000000..79949366e --- /dev/null +++ b/N_UnitDemo/bin/Debug/netcoreapp3.1/ChallengesWithTestsMark8.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp2.1", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "2.1.0" + } + } +} \ No newline at end of file diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/CoverletSourceRootsMapping b/N_UnitDemo/bin/Debug/netcoreapp3.1/CoverletSourceRootsMapping new file mode 100644 index 000000000..c49be9d21 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/CoverletSourceRootsMapping differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.DotNet.InternalAbstractions.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.DotNet.InternalAbstractions.dll new file mode 100644 index 000000000..9effe0c27 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.DotNet.InternalAbstractions.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll new file mode 100644 index 000000000..be86fd4e2 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll new file mode 100644 index 000000000..06e221a84 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll new file mode 100644 index 000000000..9cddfd412 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll new file mode 100644 index 000000000..cc454c566 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll new file mode 100644 index 000000000..098813cce Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll new file mode 100644 index 000000000..2ac7e3d15 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll new file mode 100644 index 000000000..aa726a596 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll new file mode 100644 index 000000000..609768dae Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/NUnit3.TestAdapter.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/NUnit3.TestAdapter.dll new file mode 100644 index 000000000..4aab0a752 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/NUnit3.TestAdapter.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/NUnit3.TestAdapter.pdb b/N_UnitDemo/bin/Debug/netcoreapp3.1/NUnit3.TestAdapter.pdb new file mode 100644 index 000000000..3318e6892 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/NUnit3.TestAdapter.pdb differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/N_UnitDemo.deps.json b/N_UnitDemo/bin/Debug/netcoreapp3.1/N_UnitDemo.deps.json new file mode 100644 index 000000000..961b96228 --- /dev/null +++ b/N_UnitDemo/bin/Debug/netcoreapp3.1/N_UnitDemo.deps.json @@ -0,0 +1,1347 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v3.1", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v3.1": { + "N_UnitDemo/1.0.0": { + "dependencies": { + "ChallengesWithTestsMark8": "1.0.0", + "Microsoft.NET.Test.Sdk": "16.9.4", + "NUnit": "3.13.1", + "NUnit3TestAdapter": "3.17.0", + "coverlet.collector": "3.0.2" + }, + "runtime": { + "N_UnitDemo.dll": {} + } + }, + "coverlet.collector/3.0.2": {}, + "Microsoft.CodeCoverage/16.9.4": { + "runtime": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "16.900.21.15801" + } + } + }, + "Microsoft.CSharp/4.0.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "Microsoft.DotNet.InternalAbstractions/1.0.0": { + "dependencies": { + "System.AppContext": "4.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Microsoft.NET.Test.Sdk/16.9.4": { + "dependencies": { + "Microsoft.CodeCoverage": "16.9.4", + "Microsoft.TestPlatform.TestHost": "16.9.4" + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.TestPlatform.ObjectModel/16.9.4": { + "dependencies": { + "NuGet.Frameworks": "5.0.0", + "System.Reflection.Metadata": "1.6.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + } + }, + "resources": { + "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/16.9.4": { + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "16.9.4", + "Newtonsoft.Json": "9.0.1" + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/testhost.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + } + }, + "resources": { + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "NETStandard.Library/2.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + } + }, + "Newtonsoft.Json/9.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.0.11" + }, + "runtime": { + "lib/netstandard1.0/Newtonsoft.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1.19813" + } + } + }, + "NuGet.Frameworks/5.0.0": { + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": { + "assemblyVersion": "5.0.0.6", + "fileVersion": "5.0.0.5923" + } + } + }, + "NUnit/3.13.1": { + "dependencies": { + "NETStandard.Library": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/nunit.framework.dll": { + "assemblyVersion": "3.13.1.0", + "fileVersion": "3.13.1.0" + } + } + }, + "NUnit3TestAdapter/3.17.0": { + "dependencies": { + "Microsoft.DotNet.InternalAbstractions": "1.0.0", + "System.ComponentModel.EventBasedAsync": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.Process": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Threading.Thread": "4.3.0", + "System.Xml.XPath.XmlDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + } + }, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.AppContext/4.1.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.EventBasedAsync/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Process/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "Microsoft.Win32.Registry": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Thread": "4.3.0", + "System.Threading.ThreadPool": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Dynamic.Runtime/4.0.11": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "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" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.1.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.3.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.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ObjectModel/4.0.12": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "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" + } + }, + "System.Reflection.Emit/4.0.1": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.6.0": {}, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "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" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "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.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Thread/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.ThreadPool/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument/4.0.11": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XPath/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XPath": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "ChallengesWithTestsMark8/1.0.0": { + "runtime": { + "ChallengesWithTestsMark8.dll": {} + } + } + } + }, + "libraries": { + "N_UnitDemo/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "coverlet.collector/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iBvPAIDaI7j/iMx/DzCGCJ3rdiOmel9VINEfaTiBv/NKIGHOP4X3hqc6Q1wgMtArEshlhXexQknP17SK4vXb1w==", + "path": "coverlet.collector/3.0.2", + "hashPath": "coverlet.collector.3.0.2.nupkg.sha512" + }, + "Microsoft.CodeCoverage/16.9.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N/RYB07gJkPZ1nJiq0QGxFIL+X5vVl4GI99PiTYXpbfI30NTZMRJgZ+4jYLFYLDQqj9o1Juhv+3iiymd7lozrA==", + "path": "microsoft.codecoverage/16.9.4", + "hashPath": "microsoft.codecoverage.16.9.4.nupkg.sha512" + }, + "Microsoft.CSharp/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", + "path": "microsoft.csharp/4.0.1", + "hashPath": "microsoft.csharp.4.0.1.nupkg.sha512" + }, + "Microsoft.DotNet.InternalAbstractions/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==", + "path": "microsoft.dotnet.internalabstractions/1.0.0", + "hashPath": "microsoft.dotnet.internalabstractions.1.0.0.nupkg.sha512" + }, + "Microsoft.NET.Test.Sdk/16.9.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M/k16vmS7Hz/+Kuy3p6XE743XPjYYMzfN5ZvpSLY44Ngh5IBMk0Je5Qed8oq6/kvzJA2DTrXa7YrfceHhbQKeQ==", + "path": "microsoft.net.test.sdk/16.9.4", + "hashPath": "microsoft.net.test.sdk.16.9.4.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.TestPlatform.ObjectModel/16.9.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t43y1MZYshZFfc/g8nzy4o86PW2WfFcoQ+MjgYUlfj1pptKHc7Xr+R6sFBODA+y1I+Mc+Ujzme/c2cGX2AuOwQ==", + "path": "microsoft.testplatform.objectmodel/16.9.4", + "hashPath": "microsoft.testplatform.objectmodel.16.9.4.nupkg.sha512" + }, + "Microsoft.TestPlatform.TestHost/16.9.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3YuJ7OSb1YPk+OTZfpa8U7I+TUZRH/nCeOWcN+TERp1SUZrcGeG2IGBZvVZ9CbKuQ+7wLiwsfcIgKIu+kbvibg==", + "path": "microsoft.testplatform.testhost/16.9.4", + "hashPath": "microsoft.testplatform.testhost.16.9.4.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", + "path": "microsoft.win32.registry/4.3.0", + "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" + }, + "NETStandard.Library/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==", + "path": "netstandard.library/2.0.0", + "hashPath": "netstandard.library.2.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==", + "path": "newtonsoft.json/9.0.1", + "hashPath": "newtonsoft.json.9.0.1.nupkg.sha512" + }, + "NuGet.Frameworks/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==", + "path": "nuget.frameworks/5.0.0", + "hashPath": "nuget.frameworks.5.0.0.nupkg.sha512" + }, + "NUnit/3.13.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vWBvrSelmTYwqHWvO3dA63z7cOpaFR/3nJ9MMVLBkWeaWa7oiglPPm5g1h96B4i2XXqjFexxhR5MyMjmIJYPfg==", + "path": "nunit/3.13.1", + "hashPath": "nunit.3.13.1.nupkg.sha512" + }, + "NUnit3TestAdapter/3.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I9MNvK+GM2yXrHPitwZkAZKU9sYI2OO/8wKC+VuBD7V3z+ySQ1pSopX/urr0ooedI8/TIcajYPRO4vGRr7AM8A==", + "path": "nunit3testadapter/3.17.0", + "hashPath": "nunit3testadapter.3.17.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "System.AppContext/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", + "path": "system.appcontext/4.1.0", + "hashPath": "system.appcontext.4.1.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.EventBasedAsync/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==", + "path": "system.componentmodel.eventbasedasync/4.3.0", + "hashPath": "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Process/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==", + "path": "system.diagnostics.process/4.3.0", + "hashPath": "system.diagnostics.process.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", + "path": "system.diagnostics.tools/4.0.1", + "hashPath": "system.diagnostics.tools.4.0.1.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", + "path": "system.dynamic.runtime/4.0.11", + "hashPath": "system.dynamic.runtime.4.0.11.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", + "path": "system.linq.expressions/4.1.0", + "hashPath": "system.linq.expressions.4.1.0.nupkg.sha512" + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", + "path": "system.objectmodel/4.0.12", + "hashPath": "system.objectmodel.4.0.12.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", + "path": "system.reflection.emit/4.0.1", + "hashPath": "system.reflection.emit.4.0.1.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", + "path": "system.reflection.emit.ilgeneration/4.0.1", + "hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", + "path": "system.reflection.emit.lightweight/4.0.1", + "hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "path": "system.reflection.metadata/1.6.0", + "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", + "path": "system.runtime.serialization.primitives/4.1.1", + "hashPath": "system.runtime.serialization.primitives.4.1.1.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Thread/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", + "path": "system.threading.thread/4.3.0", + "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" + }, + "System.Threading.ThreadPool/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", + "path": "system.threading.threadpool/4.3.0", + "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", + "path": "system.xml.xdocument/4.0.11", + "hashPath": "system.xml.xdocument.4.0.11.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", + "path": "system.xml.xpath/4.3.0", + "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", + "path": "system.xml.xpath.xmldocument/4.3.0", + "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" + }, + "ChallengesWithTestsMark8/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/N_UnitDemo.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/N_UnitDemo.dll new file mode 100644 index 000000000..b24e7bc14 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/N_UnitDemo.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/N_UnitDemo.pdb b/N_UnitDemo/bin/Debug/netcoreapp3.1/N_UnitDemo.pdb new file mode 100644 index 000000000..556f2d9d2 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/N_UnitDemo.pdb differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/N_UnitDemo.runtimeconfig.dev.json b/N_UnitDemo/bin/Debug/netcoreapp3.1/N_UnitDemo.runtimeconfig.dev.json new file mode 100644 index 000000000..147c79976 --- /dev/null +++ b/N_UnitDemo/bin/Debug/netcoreapp3.1/N_UnitDemo.runtimeconfig.dev.json @@ -0,0 +1,10 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\johnd\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\johnd\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet" + ] + } +} \ No newline at end of file diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/N_UnitDemo.runtimeconfig.json b/N_UnitDemo/bin/Debug/netcoreapp3.1/N_UnitDemo.runtimeconfig.json new file mode 100644 index 000000000..bc456d786 --- /dev/null +++ b/N_UnitDemo/bin/Debug/netcoreapp3.1/N_UnitDemo.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp3.1", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "3.1.0" + } + } +} \ No newline at end of file diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll new file mode 100644 index 000000000..5f2336e6c Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll new file mode 100644 index 000000000..0a61a1ce4 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll new file mode 100644 index 000000000..70eb0707e Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..bb1e2f641 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..0ac488798 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..b62a4c344 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..36c22cf0e Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..cb5fd2c5b Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..221da70c2 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..6939f1354 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..a1e6a2436 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..06a4efb52 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..14ff1ef1b Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..8cc9a81fc Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..1267654e6 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..f5985ac1a Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..3c39f494a Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..cd94ef790 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..ab0aac7fb Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..06ca4e17a Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..9409bea41 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..014d076d6 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..4b9e09732 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..8de0eca11 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..28abc04dc Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..934d3ea90 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..9cf13baf5 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..d47e3a123 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..92cbd9897 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..a44d5b49d Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..a3cd6619d Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..4116afada Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..bfa0580e0 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..c8e859b38 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..0b31d0800 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..284809409 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..fbfcbad80 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..058d3b893 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/nunit.engine.api.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/nunit.engine.api.dll new file mode 100644 index 000000000..6b53b1677 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/nunit.engine.api.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/nunit.engine.core.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/nunit.engine.core.dll new file mode 100644 index 000000000..b574cb202 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/nunit.engine.core.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/nunit.engine.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/nunit.engine.dll new file mode 100644 index 000000000..d34486e18 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/nunit.engine.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/nunit.framework.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/nunit.framework.dll new file mode 100644 index 000000000..29d379618 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/nunit.framework.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/nunit_random_seed.tmp b/N_UnitDemo/bin/Debug/netcoreapp3.1/nunit_random_seed.tmp new file mode 100644 index 000000000..35fd9b324 --- /dev/null +++ b/N_UnitDemo/bin/Debug/netcoreapp3.1/nunit_random_seed.tmp @@ -0,0 +1 @@ +53405815 \ No newline at end of file diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..7430cab31 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..d965ff043 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..6d09b6377 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..4319611da Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..273dc8213 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..23e7341a6 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..a3b0a4e6e Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..529a41b82 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..41cb71853 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..869ea7133 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..6ca149e02 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..f284bc724 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..5a17592f4 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..8f89703ad Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..7069c8f32 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/testhost.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/testhost.dll new file mode 100644 index 000000000..5d2d80eeb Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/testhost.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/testhost.exe b/N_UnitDemo/bin/Debug/netcoreapp3.1/testhost.exe new file mode 100644 index 000000000..da4338730 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/testhost.exe differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..f3c3e2d12 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..949ad66c1 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..82627afb3 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..105406a1b Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..f2f9a83cc Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..7c79a8027 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..2a7236c8b Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..bf71e09d6 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..3d3fc464a Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..b17f75409 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 000000000..603b05e6d Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 000000000..e694258a1 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 000000000..0493e07f3 Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 000000000..246d0126f Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 000000000..1f00c7c7a Binary files /dev/null and b/N_UnitDemo/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/N_UnitDemo/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/N_UnitDemo/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 000000000..ad8dfe1a6 --- /dev/null +++ b/N_UnitDemo/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.AssemblyInfo.cs b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.AssemblyInfo.cs new file mode 100644 index 000000000..0dd9f298f --- /dev/null +++ b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("N_UnitDemo")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("N_UnitDemo")] +[assembly: System.Reflection.AssemblyTitleAttribute("N_UnitDemo")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.AssemblyInfoInputs.cache b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.AssemblyInfoInputs.cache new file mode 100644 index 000000000..0a5585328 --- /dev/null +++ b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +e9cb74f0cc2c2b3a1deb2608f603c8764b27010b diff --git a/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.assets.cache b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.assets.cache new file mode 100644 index 000000000..bb02ea0ae Binary files /dev/null and b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.assets.cache differ diff --git a/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.csproj.AssemblyReference.cache b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.csproj.AssemblyReference.cache new file mode 100644 index 000000000..f5e894aea Binary files /dev/null and b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.csproj.AssemblyReference.cache differ diff --git a/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.csproj.CopyComplete b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.csproj.CopyComplete new file mode 100644 index 000000000..e69de29bb diff --git a/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.csproj.CoreCompileInputs.cache b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..6871e80fa --- /dev/null +++ b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +b7a59c7ff2eaf26b15d5b3a37575f9f020662545 diff --git a/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.csproj.FileListAbsolute.txt b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..a598d5d6c --- /dev/null +++ b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.csproj.FileListAbsolute.txt @@ -0,0 +1,104 @@ +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\CoverletSourceRootsMapping +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\testhost.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ChallengesWithTestsMark8.deps.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ChallengesWithTestsMark8.runtimeconfig.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ChallengesWithTestsMark8.runtimeconfig.dev.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\testhost.exe +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.PlatformAbstractions.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\NUnit3.TestAdapter.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\NUnit3.TestAdapter.pdb +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\nunit.engine.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\nunit.engine.api.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\nunit.engine.core.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\N_UnitDemo.deps.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\N_UnitDemo.runtimeconfig.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\N_UnitDemo.runtimeconfig.dev.json +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\N_UnitDemo.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\N_UnitDemo.pdb +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.CodeCoverage.Shim.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\Microsoft.DotNet.InternalAbstractions.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.CoreUtilities.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.CommunicationUtilities.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.CrossPlatEngine.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.Utilities.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.Common.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\NuGet.Frameworks.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\nunit.framework.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\System.Xml.XPath.XmlDocument.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\de\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\es\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\it\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ChallengesWithTestsMark8.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\bin\Debug\netcoreapp3.1\ChallengesWithTestsMark8.pdb +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\obj\Debug\netcoreapp3.1\N_UnitDemo.csproj.AssemblyReference.cache +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\obj\Debug\netcoreapp3.1\N_UnitDemo.AssemblyInfoInputs.cache +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\obj\Debug\netcoreapp3.1\N_UnitDemo.AssemblyInfo.cs +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\obj\Debug\netcoreapp3.1\N_UnitDemo.csproj.CoreCompileInputs.cache +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\obj\Debug\netcoreapp3.1\N_UnitDemo.csproj.CopyComplete +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\obj\Debug\netcoreapp3.1\N_UnitDemo.dll +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\obj\Debug\netcoreapp3.1\N_UnitDemo.pdb +C:\Users\johnd\Desktop\Repos\WeeklyChallenges\N_UnitDemo\obj\Debug\netcoreapp3.1\N_UnitDemo.genruntimeconfig.cache diff --git a/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.dll b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.dll new file mode 100644 index 000000000..b24e7bc14 Binary files /dev/null and b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.dll differ diff --git a/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.genruntimeconfig.cache b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.genruntimeconfig.cache new file mode 100644 index 000000000..86f7d141e --- /dev/null +++ b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.genruntimeconfig.cache @@ -0,0 +1 @@ +367918ec4d447befbac05b31de0598a36996b735 diff --git a/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.pdb b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.pdb new file mode 100644 index 000000000..556f2d9d2 Binary files /dev/null and b/N_UnitDemo/obj/Debug/netcoreapp3.1/N_UnitDemo.pdb differ diff --git a/N_UnitDemo/obj/N_UnitDemo.csproj.nuget.dgspec.json b/N_UnitDemo/obj/N_UnitDemo.csproj.nuget.dgspec.json new file mode 100644 index 000000000..3178584bf --- /dev/null +++ b/N_UnitDemo/obj/N_UnitDemo.csproj.nuget.dgspec.json @@ -0,0 +1,153 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\N_UnitDemo\\N_UnitDemo.csproj": {} + }, + "projects": { + "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj", + "projectName": "ChallengesWithTestsMark8", + "projectPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj", + "packagesPath": "C:\\Users\\johnd\\.nuget\\packages\\", + "outputPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\" + ], + "configFilePaths": [ + "C:\\Users\\johnd\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp2.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp2.1": { + "targetAlias": "netcoreapp2.1", + "dependencies": { + "Microsoft.NETCore.App": { + "suppressParent": "All", + "target": "Package", + "version": "[2.1.0, )", + "autoReferenced": true + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\N_UnitDemo\\N_UnitDemo.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\N_UnitDemo\\N_UnitDemo.csproj", + "projectName": "N_UnitDemo", + "projectPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\N_UnitDemo\\N_UnitDemo.csproj", + "packagesPath": "C:\\Users\\johnd\\.nuget\\packages\\", + "outputPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\N_UnitDemo\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\" + ], + "configFilePaths": [ + "C:\\Users\\johnd\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj": { + "projectPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[16.9.4, )" + }, + "NUnit": { + "target": "Package", + "version": "[3.13.1, )" + }, + "NUnit3TestAdapter": { + "target": "Package", + "version": "[3.17.0, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[3.0.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/N_UnitDemo/obj/N_UnitDemo.csproj.nuget.g.props b/N_UnitDemo/obj/N_UnitDemo.csproj.nuget.g.props new file mode 100644 index 000000000..0add94df6 --- /dev/null +++ b/N_UnitDemo/obj/N_UnitDemo.csproj.nuget.g.props @@ -0,0 +1,30 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\johnd\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\ + PackageReference + 5.10.0 + + + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + + + C:\Users\johnd\.nuget\packages\newtonsoft.json\9.0.1 + + \ No newline at end of file diff --git a/N_UnitDemo/obj/N_UnitDemo.csproj.nuget.g.targets b/N_UnitDemo/obj/N_UnitDemo.csproj.nuget.g.targets new file mode 100644 index 000000000..f0fa94990 --- /dev/null +++ b/N_UnitDemo/obj/N_UnitDemo.csproj.nuget.g.targets @@ -0,0 +1,12 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + \ No newline at end of file diff --git a/N_UnitDemo/obj/project.assets.json b/N_UnitDemo/obj/project.assets.json new file mode 100644 index 000000000..c4dfbad91 --- /dev/null +++ b/N_UnitDemo/obj/project.assets.json @@ -0,0 +1,5058 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "coverlet.collector/3.0.2": { + "type": "package", + "build": { + "build/netstandard1.0/coverlet.collector.targets": {} + } + }, + "Microsoft.CodeCoverage/16.9.4": { + "type": "package", + "compile": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} + } + }, + "Microsoft.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.DotNet.InternalAbstractions/1.0.0": { + "type": "package", + "dependencies": { + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} + } + }, + "Microsoft.NET.Test.Sdk/16.9.4": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "16.9.4", + "Microsoft.TestPlatform.TestHost": "16.9.4" + }, + "compile": { + "lib/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + }, + "build": { + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props": {}, + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.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/16.9.4": { + "type": "package", + "dependencies": { + "NuGet.Frameworks": "5.0.0", + "System.Reflection.Metadata": "1.6.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "resource": { + "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/16.9.4": { + "type": "package", + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "16.9.4", + "Newtonsoft.Json": "9.0.1" + }, + "compile": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp2.1/testhost.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp2.1/testhost.dll": {} + }, + "resource": { + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "Microsoft.Win32.Registry/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "NETStandard.Library/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "Newtonsoft.Json/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + } + }, + "NuGet.Frameworks/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + } + }, + "NUnit/3.13.1": { + "type": "package", + "dependencies": { + "NETStandard.Library": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/nunit.framework.dll": {} + }, + "runtime": { + "lib/netstandard2.0/nunit.framework.dll": {} + }, + "build": { + "build/NUnit.props": {} + } + }, + "NUnit3TestAdapter/3.17.0": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.InternalAbstractions": "1.0.0", + "System.ComponentModel.EventBasedAsync": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.Process": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Threading.Thread": "4.3.0", + "System.Xml.XPath.XmlDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "build": { + "build/netcoreapp2.1/NUnit3TestAdapter.props": {} + } + }, + "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.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "Microsoft.Win32.Registry": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Thread": "4.3.0", + "System.Threading.ThreadPool": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.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.Dynamic.Runtime/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.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.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.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.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Thread/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.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.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XPath/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": {} + } + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XPath": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + } + }, + "ChallengesWithTestsMark8/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v2.1", + "compile": { + "bin/placeholder/ChallengesWithTestsMark8.dll": {} + }, + "runtime": { + "bin/placeholder/ChallengesWithTestsMark8.dll": {} + } + } + } + }, + "libraries": { + "coverlet.collector/3.0.2": { + "sha512": "iBvPAIDaI7j/iMx/DzCGCJ3rdiOmel9VINEfaTiBv/NKIGHOP4X3hqc6Q1wgMtArEshlhXexQknP17SK4vXb1w==", + "type": "package", + "path": "coverlet.collector/3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard1.0/Microsoft.CSharp.dll", + "build/netstandard1.0/Microsoft.DotNet.PlatformAbstractions.dll", + "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.dll", + "build/netstandard1.0/Microsoft.Extensions.DependencyModel.dll", + "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll", + "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "build/netstandard1.0/Mono.Cecil.Mdb.dll", + "build/netstandard1.0/Mono.Cecil.Pdb.dll", + "build/netstandard1.0/Mono.Cecil.Rocks.dll", + "build/netstandard1.0/Mono.Cecil.dll", + "build/netstandard1.0/Newtonsoft.Json.dll", + "build/netstandard1.0/NuGet.Frameworks.dll", + "build/netstandard1.0/System.AppContext.dll", + "build/netstandard1.0/System.Collections.Immutable.dll", + "build/netstandard1.0/System.Dynamic.Runtime.dll", + "build/netstandard1.0/System.IO.FileSystem.Primitives.dll", + "build/netstandard1.0/System.Linq.Expressions.dll", + "build/netstandard1.0/System.Linq.dll", + "build/netstandard1.0/System.ObjectModel.dll", + "build/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "build/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "build/netstandard1.0/System.Reflection.Emit.dll", + "build/netstandard1.0/System.Reflection.Metadata.dll", + "build/netstandard1.0/System.Reflection.TypeExtensions.dll", + "build/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "build/netstandard1.0/System.Text.RegularExpressions.dll", + "build/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "build/netstandard1.0/System.Threading.dll", + "build/netstandard1.0/System.Xml.ReaderWriter.dll", + "build/netstandard1.0/System.Xml.XDocument.dll", + "build/netstandard1.0/coverlet.collector.deps.json", + "build/netstandard1.0/coverlet.collector.dll", + "build/netstandard1.0/coverlet.collector.pdb", + "build/netstandard1.0/coverlet.collector.targets", + "build/netstandard1.0/coverlet.core.dll", + "build/netstandard1.0/coverlet.core.pdb", + "coverlet-icon.png", + "coverlet.collector.3.0.2.nupkg.sha512", + "coverlet.collector.nuspec" + ] + }, + "Microsoft.CodeCoverage/16.9.4": { + "sha512": "N/RYB07gJkPZ1nJiq0QGxFIL+X5vVl4GI99PiTYXpbfI30NTZMRJgZ+4jYLFYLDQqj9o1Juhv+3iiymd7lozrA==", + "type": "package", + "path": "microsoft.codecoverage/16.9.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "build/netstandard1.0/CodeCoverage/CodeCoverage.config", + "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard1.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config", + "build/netstandard1.0/CodeCoverage/amd64/CodeCoverage.exe", + "build/netstandard1.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard1.0/CodeCoverage/amd64/msvcdis140.dll", + "build/netstandard1.0/CodeCoverage/amd64/msvcp140.dll", + "build/netstandard1.0/CodeCoverage/amd64/msvcp140_atomic_wait.dll", + "build/netstandard1.0/CodeCoverage/amd64/vcruntime140.dll", + "build/netstandard1.0/CodeCoverage/amd64/vcruntime140_1.dll", + "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard1.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "build/netstandard1.0/CodeCoverage/covrun32.dll", + "build/netstandard1.0/CodeCoverage/msdia140.dll", + "build/netstandard1.0/CodeCoverage/msvcdis140.dll", + "build/netstandard1.0/CodeCoverage/msvcp140.dll", + "build/netstandard1.0/CodeCoverage/msvcp140_atomic_wait.dll", + "build/netstandard1.0/CodeCoverage/vcruntime140.dll", + "build/netstandard1.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll", + "build/netstandard1.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll", + "build/netstandard1.0/Microsoft.CodeCoverage.props", + "build/netstandard1.0/Microsoft.CodeCoverage.targets", + "build/netstandard1.0/Microsoft.VisualStudio.Coverage.CoreLib.Net.dll", + "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Interprocess.dll", + "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard1.0/cs/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/de/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/es/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/fr/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/it/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ja/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ko/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pl/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ru/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/tr/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.16.9.4.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "Microsoft.CSharp/4.0.1": { + "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", + "type": "package", + "path": "microsoft.csharp/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.0.1.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.DotNet.InternalAbstractions/1.0.0": { + "sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==", + "type": "package", + "path": "microsoft.dotnet.internalabstractions/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Microsoft.DotNet.InternalAbstractions.dll", + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll", + "microsoft.dotnet.internalabstractions.1.0.0.nupkg.sha512", + "microsoft.dotnet.internalabstractions.nuspec" + ] + }, + "Microsoft.NET.Test.Sdk/16.9.4": { + "sha512": "M/k16vmS7Hz/+Kuy3p6XE743XPjYYMzfN5ZvpSLY44Ngh5IBMk0Je5Qed8oq6/kvzJA2DTrXa7YrfceHhbQKeQ==", + "type": "package", + "path": "microsoft.net.test.sdk/16.9.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "build/net40/Microsoft.NET.Test.Sdk.props", + "build/net40/Microsoft.NET.Test.Sdk.targets", + "build/net45/Microsoft.NET.Test.Sdk.props", + "build/net45/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets", + "build/uap10.0/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", + "lib/net40/_._", + "lib/net45/_._", + "lib/netcoreapp1.0/_._", + "lib/netcoreapp2.1/_._", + "lib/uap10.0/_._", + "microsoft.net.test.sdk.16.9.4.nupkg.sha512", + "microsoft.net.test.sdk.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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/16.9.4": { + "sha512": "t43y1MZYshZFfc/g8nzy4o86PW2WfFcoQ+MjgYUlfj1pptKHc7Xr+R6sFBODA+y1I+Mc+Ujzme/c2cGX2AuOwQ==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/16.9.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "lib/net45/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net45/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net45/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net45/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "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.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard1.3/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard1.3/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard1.3/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "microsoft.testplatform.objectmodel.16.9.4.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/16.9.4": { + "sha512": "3YuJ7OSb1YPk+OTZfpa8U7I+TUZRH/nCeOWcN+TERp1SUZrcGeG2IGBZvVZ9CbKuQ+7wLiwsfcIgKIu+kbvibg==", + "type": "package", + "path": "microsoft.testplatform.testhost/16.9.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "ThirdPartyNotices.txt", + "build/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp1.0/Microsoft.TestPlatform.TestHost.props", + "build/netcoreapp1.0/x64/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp1.0/x64/testhost.dll", + "build/netcoreapp1.0/x64/testhost.exe", + "build/netcoreapp1.0/x86/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp1.0/x86/testhost.x86.dll", + "build/netcoreapp1.0/x86/testhost.x86.exe", + "build/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props", + "build/netcoreapp2.1/x64/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp2.1/x64/testhost.dll", + "build/netcoreapp2.1/x64/testhost.exe", + "build/netcoreapp2.1/x86/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp2.1/x86/testhost.x86.dll", + "build/netcoreapp2.1/x86/testhost.x86.exe", + "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/netcoreapp1.0/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.Utilities.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/testhost.deps.json", + "lib/netcoreapp1.0/testhost.dll", + "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/x64/msdia140.dll", + "lib/netcoreapp1.0/x86/msdia140.dll", + "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll", + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/testhost.deps.json", + "lib/netcoreapp2.1/testhost.dll", + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/x64/msdia140.dll", + "lib/netcoreapp2.1/x86/msdia140.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/uap10.0/testhost.dll", + "microsoft.testplatform.testhost.16.9.4.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.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.3.0": { + "sha512": "Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", + "type": "package", + "path": "microsoft.win32.registry/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.3.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll" + ] + }, + "NETStandard.Library/2.0.0": { + "sha512": "7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==", + "type": "package", + "path": "netstandard.library/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.9.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "tools/install.ps1" + ] + }, + "NuGet.Frameworks/5.0.0": { + "sha512": "c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==", + "type": "package", + "path": "nuget.frameworks/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/NuGet.Frameworks.dll", + "lib/net40/NuGet.Frameworks.xml", + "lib/net472/NuGet.Frameworks.dll", + "lib/net472/NuGet.Frameworks.xml", + "lib/netstandard2.0/NuGet.Frameworks.dll", + "lib/netstandard2.0/NuGet.Frameworks.xml", + "nuget.frameworks.5.0.0.nupkg.sha512", + "nuget.frameworks.nuspec" + ] + }, + "NUnit/3.13.1": { + "sha512": "vWBvrSelmTYwqHWvO3dA63z7cOpaFR/3nJ9MMVLBkWeaWa7oiglPPm5g1h96B4i2XXqjFexxhR5MyMjmIJYPfg==", + "type": "package", + "path": "nunit/3.13.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGES.md", + "LICENSE.txt", + "NOTICES.txt", + "build/NUnit.props", + "icon.png", + "lib/net35/nunit.framework.dll", + "lib/net35/nunit.framework.xml", + "lib/net40/nunit.framework.dll", + "lib/net40/nunit.framework.xml", + "lib/net45/nunit.framework.dll", + "lib/net45/nunit.framework.xml", + "lib/netstandard2.0/nunit.framework.dll", + "lib/netstandard2.0/nunit.framework.xml", + "nunit.3.13.1.nupkg.sha512", + "nunit.nuspec" + ] + }, + "NUnit3TestAdapter/3.17.0": { + "sha512": "I9MNvK+GM2yXrHPitwZkAZKU9sYI2OO/8wKC+VuBD7V3z+ySQ1pSopX/urr0ooedI8/TIcajYPRO4vGRr7AM8A==", + "type": "package", + "path": "nunit3testadapter/3.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "build/net35/NUnit3.TestAdapter.dll", + "build/net35/NUnit3.TestAdapter.pdb", + "build/net35/NUnit3TestAdapter.props", + "build/net35/nunit.engine.api.dll", + "build/net35/nunit.engine.core.dll", + "build/net35/nunit.engine.dll", + "build/netcoreapp2.1/NUnit3.TestAdapter.dll", + "build/netcoreapp2.1/NUnit3.TestAdapter.pdb", + "build/netcoreapp2.1/NUnit3TestAdapter.props", + "build/netcoreapp2.1/nunit.engine.api.dll", + "build/netcoreapp2.1/nunit.engine.core.dll", + "build/netcoreapp2.1/nunit.engine.dll", + "nunit3testadapter.3.17.0.nupkg.sha512", + "nunit3testadapter.nuspec" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.1.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.3.0": { + "sha512": "fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==", + "type": "package", + "path": "system.componentmodel.eventbasedasync/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.EventBasedAsync.dll", + "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.EventBasedAsync.dll", + "ref/netcore50/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll", + "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", + "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512", + "system.componentmodel.eventbasedasync.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.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": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.3.0": { + "sha512": "J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==", + "type": "package", + "path": "system.diagnostics.process/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.Process.dll", + "lib/net461/System.Diagnostics.Process.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.Process.dll", + "ref/net461/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.xml", + "ref/netstandard1.3/de/System.Diagnostics.Process.xml", + "ref/netstandard1.3/es/System.Diagnostics.Process.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.3/it/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml", + "ref/netstandard1.4/System.Diagnostics.Process.dll", + "ref/netstandard1.4/System.Diagnostics.Process.xml", + "ref/netstandard1.4/de/System.Diagnostics.Process.xml", + "ref/netstandard1.4/es/System.Diagnostics.Process.xml", + "ref/netstandard1.4/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.4/it/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win/lib/net46/System.Diagnostics.Process.dll", + "runtimes/win/lib/net461/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win7/lib/netcore50/_._", + "system.diagnostics.process.4.3.0.nupkg.sha512", + "system.diagnostics.process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.1": { + "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", + "type": "package", + "path": "system.diagnostics.tools/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.0.1.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.11": { + "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", + "type": "package", + "path": "system.dynamic.runtime/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.0.11.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.1.0": { + "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", + "type": "package", + "path": "system.linq.expressions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.1.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.ObjectModel/4.0.12": { + "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", + "type": "package", + "path": "system.objectmodel/4.0.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.0.12.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.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": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinmac20/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.0.1.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.0.1.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.6.0": { + "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "type": "package", + "path": "system.reflection.metadata/1.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.6.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.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": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.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": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.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": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.1.1.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.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": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.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": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "type": "package", + "path": "system.threading.tasks.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Threading.Thread/4.3.0": { + "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", + "type": "package", + "path": "system.threading.thread/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.Thread.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.xml", + "ref/netstandard1.3/de/System.Threading.Thread.xml", + "ref/netstandard1.3/es/System.Threading.Thread.xml", + "ref/netstandard1.3/fr/System.Threading.Thread.xml", + "ref/netstandard1.3/it/System.Threading.Thread.xml", + "ref/netstandard1.3/ja/System.Threading.Thread.xml", + "ref/netstandard1.3/ko/System.Threading.Thread.xml", + "ref/netstandard1.3/ru/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.thread.4.3.0.nupkg.sha512", + "system.threading.thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.3.0": { + "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", + "type": "package", + "path": "system.threading.threadpool/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.3.0.nupkg.sha512", + "system.threading.threadpool.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.11": { + "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", + "type": "package", + "path": "system.xml.xdocument/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.0.11.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "System.Xml.XPath/4.3.0": { + "sha512": "v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", + "type": "package", + "path": "system.xml.xpath/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.dll", + "lib/netstandard1.3/System.Xml.XPath.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.xml", + "ref/netstandard1.3/de/System.Xml.XPath.xml", + "ref/netstandard1.3/es/System.Xml.XPath.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.xml", + "ref/netstandard1.3/it/System.Xml.XPath.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.4.3.0.nupkg.sha512", + "system.xml.xpath.nuspec" + ] + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "sha512": "A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", + "type": "package", + "path": "system.xml.xpath.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.XmlDocument.dll", + "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.3.0.nupkg.sha512", + "system.xml.xpath.xmldocument.nuspec" + ] + }, + "ChallengesWithTestsMark8/1.0.0": { + "type": "project", + "path": "../ChallengesWithTestsMark8/ChallengesWithTestsMark8.csproj", + "msbuildProject": "../ChallengesWithTestsMark8/ChallengesWithTestsMark8.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "ChallengesWithTestsMark8 >= 1.0.0", + "Microsoft.NET.Test.Sdk >= 16.9.4", + "NUnit >= 3.13.1", + "NUnit3TestAdapter >= 3.17.0", + "coverlet.collector >= 3.0.2" + ] + }, + "packageFolders": { + "C:\\Users\\johnd\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\N_UnitDemo\\N_UnitDemo.csproj", + "projectName": "N_UnitDemo", + "projectPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\N_UnitDemo\\N_UnitDemo.csproj", + "packagesPath": "C:\\Users\\johnd\\.nuget\\packages\\", + "outputPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\N_UnitDemo\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\" + ], + "configFilePaths": [ + "C:\\Users\\johnd\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj": { + "projectPath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\ChallengesWithTestsMark8\\ChallengesWithTestsMark8.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[16.9.4, )" + }, + "NUnit": { + "target": "Package", + "version": "[3.13.1, )" + }, + "NUnit3TestAdapter": { + "target": "Package", + "version": "[3.17.0, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[3.0.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/N_UnitDemo/obj/project.nuget.cache b/N_UnitDemo/obj/project.nuget.cache new file mode 100644 index 000000000..653ce8f44 --- /dev/null +++ b/N_UnitDemo/obj/project.nuget.cache @@ -0,0 +1,74 @@ +{ + "version": 2, + "dgSpecHash": "7r8uNXgS4Q17xcViKubKN6kXX5IsiuPTkJJjmxqSFLCisrTdZESf7bOpgkhD8LOBKCIbk3852+ehh6xwIXVhRA==", + "success": true, + "projectFilePath": "C:\\Users\\johnd\\Desktop\\Repos\\WeeklyChallenges\\N_UnitDemo\\N_UnitDemo.csproj", + "expectedPackageFiles": [ + "C:\\Users\\johnd\\.nuget\\packages\\coverlet.collector\\3.0.2\\coverlet.collector.3.0.2.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.codecoverage\\16.9.4\\microsoft.codecoverage.16.9.4.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.csharp\\4.0.1\\microsoft.csharp.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.dotnet.internalabstractions\\1.0.0\\microsoft.dotnet.internalabstractions.1.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.net.test.sdk\\16.9.4\\microsoft.net.test.sdk.16.9.4.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.testplatform.objectmodel\\16.9.4\\microsoft.testplatform.objectmodel.16.9.4.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.testplatform.testhost\\16.9.4\\microsoft.testplatform.testhost.16.9.4.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\microsoft.win32.registry\\4.3.0\\microsoft.win32.registry.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\netstandard.library\\2.0.0\\netstandard.library.2.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\newtonsoft.json\\9.0.1\\newtonsoft.json.9.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\nuget.frameworks\\5.0.0\\nuget.frameworks.5.0.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\nunit\\3.13.1\\nunit.3.13.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\nunit3testadapter\\3.17.0\\nunit3testadapter.3.17.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.appcontext\\4.1.0\\system.appcontext.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.componentmodel.eventbasedasync\\4.3.0\\system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.diagnostics.process\\4.3.0\\system.diagnostics.process.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.diagnostics.tools\\4.0.1\\system.diagnostics.tools.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.dynamic.runtime\\4.0.11\\system.dynamic.runtime.4.0.11.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.linq.expressions\\4.1.0\\system.linq.expressions.4.1.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.objectmodel\\4.0.12\\system.objectmodel.4.0.12.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection.emit\\4.0.1\\system.reflection.emit.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.0.1\\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection.emit.lightweight\\4.0.1\\system.reflection.emit.lightweight.4.0.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.runtime.serialization.primitives\\4.1.1\\system.runtime.serialization.primitives.4.1.1.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.threading.thread\\4.3.0\\system.threading.thread.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.threading.threadpool\\4.3.0\\system.threading.threadpool.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.xml.xdocument\\4.0.11\\system.xml.xdocument.4.0.11.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.xml.xpath\\4.3.0\\system.xml.xpath.4.3.0.nupkg.sha512", + "C:\\Users\\johnd\\.nuget\\packages\\system.xml.xpath.xmldocument\\4.3.0\\system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/README.md b/README.md index 5a71c41ca..5394838cb 100644 --- a/README.md +++ b/README.md @@ -1 +1,7 @@ -# WeeklyChallenges \ No newline at end of file +# WeeklyChallenges + +- ### 6 Challenge Sets of increasing difficulty + +- ### X-Unit Test Project for all 6 Challenge Sets + +- ### N-Unit Test Project in progress...