commit a03f384ef870ca713ca8554c72eab20dd28a0df7 Author: Your Name Date: Tue Apr 8 10:16:00 2025 +0300 first diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..47fd70e Binary files /dev/null and b/.DS_Store differ diff --git a/.idea/.idea.finskaya0304/.idea/.gitignore b/.idea/.idea.finskaya0304/.idea/.gitignore new file mode 100644 index 0000000..8e8c4ac --- /dev/null +++ b/.idea/.idea.finskaya0304/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/modules.xml +/projectSettingsUpdater.xml +/contentModel.xml +/.idea.finskaya0304.iml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.idea.finskaya0304/.idea/encodings.xml b/.idea/.idea.finskaya0304/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.finskaya0304/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.finskaya0304/.idea/indexLayout.xml b/.idea/.idea.finskaya0304/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.finskaya0304/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.finskaya0304/.idea/vcs.xml b/.idea/.idea.finskaya0304/.idea/vcs.xml new file mode 100644 index 0000000..d843f34 --- /dev/null +++ b/.idea/.idea.finskaya0304/.idea/vcs.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Testfinskaya0304/Testfinskaya0304.csproj b/Testfinskaya0304/Testfinskaya0304.csproj new file mode 100644 index 0000000..99e3c03 --- /dev/null +++ b/Testfinskaya0304/Testfinskaya0304.csproj @@ -0,0 +1,28 @@ + + + + net8.0 + enable + enable + + false + true + + + + + + + + + + + + + + + + + + + diff --git a/Testfinskaya0304/UnitTest1.cs b/Testfinskaya0304/UnitTest1.cs new file mode 100644 index 0000000..11cdf40 --- /dev/null +++ b/Testfinskaya0304/UnitTest1.cs @@ -0,0 +1,309 @@ +using System.Security.Principal; +using finskaya0304; + +namespace TestFinskaya0304; + +public class Tests +{ + private account[] user; + private StringReader _stringReader; + private StringWriter _stringWriter; + [SetUp] + public void Setup() + { + user = new account[100]; + _stringWriter = new StringWriter(); + Console.SetOut(_stringWriter); + } + + + [TearDown] + public void TearDown() + { + _stringWriter?.Dispose(); + _stringReader?.Dispose(); + } + + [Test] + public void OpenNewAccount_ShouldReturnNewAccountWithNameSumAndNum_WhenFioStringAndSumMore1000() + { + _stringReader = new StringReader("fio\n1000\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + Assert.AreEqual(user[0].GetName(), "fio"); + Assert.AreEqual(user[0].GetSum(), 1000.00); + Assert.IsNotEmpty(user[0].GetNum()); + } + + [Test] + public void OpenNewAccount_ShouldReturnNewAccountWithNameSumAndNum_WhenFioStringAndSumLess1000() + { + _stringReader = new StringReader("fio\n100\nfio\n1000\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + string output = _stringWriter.ToString(); + + Assert.IsTrue(output.Contains("Сумма слишком мала, попробуйте ещё раз!")); + } + + [Test] + public void OpenNewAccount_ShouldReturnNewAccountWithNameSumAndNum_WhenFioIsNumberAndSumMore1000() + { + _stringReader = new StringReader("123\n1000\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + string output = _stringWriter.ToString(); + + Assert.AreEqual(user[0].GetName(), "123"); + Assert.AreEqual(user[0].GetSum(), 1000.00); + Assert.IsNotEmpty(user[0].GetNum()); + } + + [Test] + public void OpenNewAccount_ShouldThrowFormatException_WhenFioStringAndSumIsString() + { + _stringReader = new StringReader("123\nbuba\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + + Assert.Throws(() => user[0].otk()); + } + + [Test] + public void CreateNewNum_ShouldReturnNewNumWithLen20_WhenCreatedNewAccount() + { + user[0] = new account(); + user[0].num_gen(); + + Assert.AreEqual(user[0].GetNum().Length, 20); + } + + [Test] + public void CreateFileWIthAccountInfo_ShouldCreateFileWithCorrectContent_WhenFioStringAndSumMore1000() + { + _stringReader = new StringReader("fio\n1000\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + string filePath = Path.Combine(Directory.GetCurrentDirectory(), user[0].GetNum() + ".txt"); + + Assert.IsTrue(File.Exists(filePath)); + + string fileContent = File.ReadAllText(filePath); + Assert.IsTrue(fileContent.Contains(user[0].GetNum())); + Assert.IsTrue(fileContent.Contains(user[0].GetName())); + Assert.IsTrue(fileContent.Contains(user[0].GetSum().ToString())); + } + + [Test] + public void ReplenishmentOfBalance_ShouldReturnNewBalance_WhenReplenishmentSumIsPositive() + { + _stringReader = new StringReader("fio\n1000\n500\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + float balance = user[0].GetSum()+500; + user[0].top_up(); + + Assert.AreEqual(balance, user[0].GetSum()); + } + + [Test] + public void ReplenishmentOfBalance_ShouldReturnNewBalance_WhenReplenishmentSumIsNegative() + { + _stringReader = new StringReader("fio\n1000\n-500\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + float balance = user[0].GetSum()+(-500); + user[0].top_up(); + + Assert.AreEqual(balance, user[0].GetSum()); + } + + [Test] + public void ReplenishmentOfBalance_ShouldReturnNewBalance_WhenReplenishmentSumIsZero() + { + _stringReader = new StringReader("fio\n1000\n0\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + float balance = user[0].GetSum()+0; + user[0].top_up(); + + Assert.AreEqual(balance, user[0].GetSum()); + } + + [Test] + public void ReplenishmentOfBalance_ShouldThrowFormatException_WhenReplenishmentSumIsString() + { + _stringReader = new StringReader("fio\n1000\naa\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + + user[0].otk(); + + Assert.Throws(() => user[0].top_up()); + } + + [Test] + public void WithdrawalFromBalance_ShouldReturnNewBalance_WhenWithdrawalSumIsPositive() + { + _stringReader = new StringReader("fio\n1000\n500\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + float balance = user[0].GetSum()-500; + user[0].umen(); + + Assert.AreEqual(balance, user[0].GetSum()); + } + + [Test] + public void WithdrawalFromBalance_ShouldReturnNewBalance_WhenWithdrawalSumIsNegative() + { + _stringReader = new StringReader("fio\n1000\n-500\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + float balance = user[0].GetSum()-(-500); + user[0].umen(); + + Assert.AreEqual(balance, user[0].GetSum()); + } + + [Test] + public void WithdrawalFromBalance_ShouldReturnNewBalance_WhenWithdrawalSumIsZero() + { + _stringReader = new StringReader("fio\n1000\n0\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + float balance = user[0].GetSum()-0; + user[0].umen(); + + Assert.AreEqual(balance, user[0].GetSum()); + } + + [Test] + public void WithdrawalFromBalance_ShouldReturnNewBalance_WhenBalanceLesserThanZero() + { + _stringReader = new StringReader("fio\n1000\n2000\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + float balance = user[0].GetSum(); + user[0].umen(); + + Assert.AreEqual(balance, user[0].GetSum()); + } + + [Test] + public void WithdrawalFromBalance_ShouldThrowFormatException_WhenWithdrawalSumIsString() + { + _stringReader = new StringReader("fio\n1000\naa\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + Assert.Throws(() => user[0].umen()); + } + + [Test] + public void WithdrawalFromBalance_ShouldReturnNewBalance_WhenWithdrawalSumIsAllBalance() + { + _stringReader = new StringReader("fio\n1000\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + float balance = user[0].GetSum() - 1000; + user[0].obnul(); + + Assert.AreEqual(balance, user[0].GetSum()); + } + + [Test] + public void TransferFromBalance_ShouldReturnNewBalances_WhenSumOfTransferLesserThanBalance() + { + _stringReader = new StringReader("fio\n3000\nfio2\n5000\n1000\n1\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + user[1] = new account(); + user[1].otk(); + + float balance1 = user[0].GetSum()-1000; + float balance2 = user[1].GetSum()+1000; + + user[0].perevod(); + + Assert.AreEqual(balance1, user[0].GetSum()); + Assert.AreEqual(balance2, user[1].GetSum()); + } + + [Test] + public void TransferFromBalance_ShouldReturnNewBalances_WhenSumOfTransferBiggerThanBalance() + { + _stringReader = new StringReader("fio\n3000\nfio2\n5000\n10000\n1\n0\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + user[1] = new account(); + user[1].otk(); + + user[0].perevod(); + + string output = _stringWriter.ToString(); + + Assert.IsTrue(output.Contains("На счету недостаточно средств!")); + } + + [Test] + public void TransferFromBalance_ShouldThrowFormatException_WhenSumOfTransferIsString() + { + _stringReader = new StringReader("fio\n3000\nfio2\n5000\naa\n1\n"); + Console.SetIn(_stringReader); + + user[0] = new account(); + user[0].otk(); + + user[1] = new account(); + user[1].otk(); + + Assert.Throws(() => user[0].perevod()); + } +} diff --git a/Testfinskaya0304/bin/Debug/net8.0/.txt b/Testfinskaya0304/bin/Debug/net8.0/.txt new file mode 100644 index 0000000..e6d9fd6 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/.txt @@ -0,0 +1,12 @@ +Номер счёта: +ФИО владельца: +Баланс: 500 р. +Номер счёта: +ФИО владельца: +Баланс: 500 р. +Номер счёта: +ФИО владельца: +Баланс: -500 р. +Номер счёта: +ФИО владельца: +Баланс: 0 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/01853480038715815147.txt b/Testfinskaya0304/bin/Debug/net8.0/01853480038715815147.txt new file mode 100644 index 0000000..9fee851 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/01853480038715815147.txt @@ -0,0 +1,6 @@ +Номер счёта: 01853480038715815147 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 01853480038715815147 +ФИО владельца: fio +Баланс: -1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/01886735867024361686.txt b/Testfinskaya0304/bin/Debug/net8.0/01886735867024361686.txt new file mode 100644 index 0000000..aa5c19d --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/01886735867024361686.txt @@ -0,0 +1,6 @@ +Номер счёта: 01886735867024361686 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 01886735867024361686 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/03243616025327662138.txt b/Testfinskaya0304/bin/Debug/net8.0/03243616025327662138.txt new file mode 100644 index 0000000..90f1b71 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/03243616025327662138.txt @@ -0,0 +1,3 @@ +Номер счёта: 03243616025327662138 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/03761346456403048162.txt b/Testfinskaya0304/bin/Debug/net8.0/03761346456403048162.txt new file mode 100644 index 0000000..12a59b6 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/03761346456403048162.txt @@ -0,0 +1,3 @@ +Номер счёта: 03761346456403048162 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/05688722707768487218.txt b/Testfinskaya0304/bin/Debug/net8.0/05688722707768487218.txt new file mode 100644 index 0000000..4ab3d8d --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/05688722707768487218.txt @@ -0,0 +1,6 @@ +Номер счёта: 05688722707768487218 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 05688722707768487218 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/08310517450044346143.txt b/Testfinskaya0304/bin/Debug/net8.0/08310517450044346143.txt new file mode 100644 index 0000000..10655f6 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/08310517450044346143.txt @@ -0,0 +1,3 @@ +Номер счёта: 08310517450044346143 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/10341017208241185878.txt b/Testfinskaya0304/bin/Debug/net8.0/10341017208241185878.txt new file mode 100644 index 0000000..9f29501 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/10341017208241185878.txt @@ -0,0 +1,3 @@ +Номер счёта: 10341017208241185878 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/10463680353584345513.txt b/Testfinskaya0304/bin/Debug/net8.0/10463680353584345513.txt new file mode 100644 index 0000000..dc8e358 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/10463680353584345513.txt @@ -0,0 +1,6 @@ +Номер счёта: 10463680353584345513 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 10463680353584345513 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/11305738857436414300.txt b/Testfinskaya0304/bin/Debug/net8.0/11305738857436414300.txt new file mode 100644 index 0000000..253f824 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/11305738857436414300.txt @@ -0,0 +1,3 @@ +Номер счёта: 11305738857436414300 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/12314513172251202807.txt b/Testfinskaya0304/bin/Debug/net8.0/12314513172251202807.txt new file mode 100644 index 0000000..c37aa47 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/12314513172251202807.txt @@ -0,0 +1,3 @@ +Номер счёта: 12314513172251202807 +ФИО владельца: fio +Баланс: 3000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/12435868246772052730.txt b/Testfinskaya0304/bin/Debug/net8.0/12435868246772052730.txt new file mode 100644 index 0000000..6371ef4 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/12435868246772052730.txt @@ -0,0 +1,3 @@ +Номер счёта: 12435868246772052730 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/12852785206873504285.txt b/Testfinskaya0304/bin/Debug/net8.0/12852785206873504285.txt new file mode 100644 index 0000000..695d2ca --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/12852785206873504285.txt @@ -0,0 +1,3 @@ +Номер счёта: 12852785206873504285 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/14044220024500742382.txt b/Testfinskaya0304/bin/Debug/net8.0/14044220024500742382.txt new file mode 100644 index 0000000..0824edd --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/14044220024500742382.txt @@ -0,0 +1,6 @@ +Номер счёта: 14044220024500742382 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 14044220024500742382 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/14750826456836317778.txt b/Testfinskaya0304/bin/Debug/net8.0/14750826456836317778.txt new file mode 100644 index 0000000..a70949c --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/14750826456836317778.txt @@ -0,0 +1,6 @@ +Номер счёта: 14750826456836317778 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 14750826456836317778 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/14766127852378024641.txt b/Testfinskaya0304/bin/Debug/net8.0/14766127852378024641.txt new file mode 100644 index 0000000..e8301c4 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/14766127852378024641.txt @@ -0,0 +1,6 @@ +Номер счёта: 14766127852378024641 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 14766127852378024641 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/14815062358865124261.txt b/Testfinskaya0304/bin/Debug/net8.0/14815062358865124261.txt new file mode 100644 index 0000000..17a35f6 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/14815062358865124261.txt @@ -0,0 +1,3 @@ +Номер счёта: 14815062358865124261 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/16367727406302704457.txt b/Testfinskaya0304/bin/Debug/net8.0/16367727406302704457.txt new file mode 100644 index 0000000..0913fd5 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/16367727406302704457.txt @@ -0,0 +1,3 @@ +Номер счёта: 16367727406302704457 +ФИО владельца: 123 +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/16586774171240253334.txt b/Testfinskaya0304/bin/Debug/net8.0/16586774171240253334.txt new file mode 100644 index 0000000..7cc0ba5 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/16586774171240253334.txt @@ -0,0 +1,3 @@ +Номер счёта: 16586774171240253334 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/17511286050082408054.txt b/Testfinskaya0304/bin/Debug/net8.0/17511286050082408054.txt new file mode 100644 index 0000000..54b962d --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/17511286050082408054.txt @@ -0,0 +1,6 @@ +Номер счёта: 17511286050082408054 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 17511286050082408054 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/20135775810103221780.txt b/Testfinskaya0304/bin/Debug/net8.0/20135775810103221780.txt new file mode 100644 index 0000000..85f1af7 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/20135775810103221780.txt @@ -0,0 +1,3 @@ +Номер счёта: 20135775810103221780 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/20270532232263735832.txt b/Testfinskaya0304/bin/Debug/net8.0/20270532232263735832.txt new file mode 100644 index 0000000..fe29776 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/20270532232263735832.txt @@ -0,0 +1,3 @@ +Номер счёта: 20270532232263735832 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/20511041682713484842.txt b/Testfinskaya0304/bin/Debug/net8.0/20511041682713484842.txt new file mode 100644 index 0000000..a1f277b --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/20511041682713484842.txt @@ -0,0 +1,6 @@ +Номер счёта: 20511041682713484842 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 20511041682713484842 +ФИО владельца: fio +Баланс: -1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/21582257365632276477.txt b/Testfinskaya0304/bin/Debug/net8.0/21582257365632276477.txt new file mode 100644 index 0000000..6140f13 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/21582257365632276477.txt @@ -0,0 +1,6 @@ +Номер счёта: 21582257365632276477 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 21582257365632276477 +ФИО владельца: fio +Баланс: 500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/22474852453508854885.txt b/Testfinskaya0304/bin/Debug/net8.0/22474852453508854885.txt new file mode 100644 index 0000000..70f0656 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/22474852453508854885.txt @@ -0,0 +1,3 @@ +Номер счёта: 22474852453508854885 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/22772348428703406404.txt b/Testfinskaya0304/bin/Debug/net8.0/22772348428703406404.txt new file mode 100644 index 0000000..8848efb --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/22772348428703406404.txt @@ -0,0 +1,6 @@ +Номер счёта: 22772348428703406404 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 22772348428703406404 +ФИО владельца: fio +Баланс: 500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/23021846872274545526.txt b/Testfinskaya0304/bin/Debug/net8.0/23021846872274545526.txt new file mode 100644 index 0000000..181b409 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/23021846872274545526.txt @@ -0,0 +1,3 @@ +Номер счёта: 23021846872274545526 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/23643868772015412028.txt b/Testfinskaya0304/bin/Debug/net8.0/23643868772015412028.txt new file mode 100644 index 0000000..5c8b12a --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/23643868772015412028.txt @@ -0,0 +1,3 @@ +Номер счёта: 23643868772015412028 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/24485561742350257644.txt b/Testfinskaya0304/bin/Debug/net8.0/24485561742350257644.txt new file mode 100644 index 0000000..8d6753f --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/24485561742350257644.txt @@ -0,0 +1,6 @@ +Номер счёта: 24485561742350257644 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 24485561742350257644 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/25542500570687114413.txt b/Testfinskaya0304/bin/Debug/net8.0/25542500570687114413.txt new file mode 100644 index 0000000..7002952 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/25542500570687114413.txt @@ -0,0 +1,6 @@ +Номер счёта: 25542500570687114413 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 25542500570687114413 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/25671762387467036421.txt b/Testfinskaya0304/bin/Debug/net8.0/25671762387467036421.txt new file mode 100644 index 0000000..222a6c8 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/25671762387467036421.txt @@ -0,0 +1,6 @@ +Номер счёта: 25671762387467036421 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 25671762387467036421 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/27478558522600422288.txt b/Testfinskaya0304/bin/Debug/net8.0/27478558522600422288.txt new file mode 100644 index 0000000..e07e74e --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/27478558522600422288.txt @@ -0,0 +1,3 @@ +Номер счёта: 27478558522600422288 +ФИО владельца: fio +Баланс: 3000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/27484406811004632020.txt b/Testfinskaya0304/bin/Debug/net8.0/27484406811004632020.txt new file mode 100644 index 0000000..e3eacfe --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/27484406811004632020.txt @@ -0,0 +1,3 @@ +Номер счёта: 27484406811004632020 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/27636314512407300034.txt b/Testfinskaya0304/bin/Debug/net8.0/27636314512407300034.txt new file mode 100644 index 0000000..4eef3b7 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/27636314512407300034.txt @@ -0,0 +1,3 @@ +Номер счёта: 27636314512407300034 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/27644781074364632437.txt b/Testfinskaya0304/bin/Debug/net8.0/27644781074364632437.txt new file mode 100644 index 0000000..d5f76c4 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/27644781074364632437.txt @@ -0,0 +1,6 @@ +Номер счёта: 27644781074364632437 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 27644781074364632437 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/28381302561147231622.txt b/Testfinskaya0304/bin/Debug/net8.0/28381302561147231622.txt new file mode 100644 index 0000000..560ed5a --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/28381302561147231622.txt @@ -0,0 +1,3 @@ +Номер счёта: 28381302561147231622 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/31340346440134122164.txt b/Testfinskaya0304/bin/Debug/net8.0/31340346440134122164.txt new file mode 100644 index 0000000..a6ab462 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/31340346440134122164.txt @@ -0,0 +1,3 @@ +Номер счёта: 31340346440134122164 +ФИО владельца: fio +Баланс: 3000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/31503861746202152850.txt b/Testfinskaya0304/bin/Debug/net8.0/31503861746202152850.txt new file mode 100644 index 0000000..0e40836 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/31503861746202152850.txt @@ -0,0 +1,6 @@ +Номер счёта: 31503861746202152850 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 31503861746202152850 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/32416757254122420511.txt b/Testfinskaya0304/bin/Debug/net8.0/32416757254122420511.txt new file mode 100644 index 0000000..24606bc --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/32416757254122420511.txt @@ -0,0 +1,6 @@ +Номер счёта: 32416757254122420511 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 32416757254122420511 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/33267703431772107642.txt b/Testfinskaya0304/bin/Debug/net8.0/33267703431772107642.txt new file mode 100644 index 0000000..6212ecc --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/33267703431772107642.txt @@ -0,0 +1,3 @@ +Номер счёта: 33267703431772107642 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/34453242636732820360.txt b/Testfinskaya0304/bin/Debug/net8.0/34453242636732820360.txt new file mode 100644 index 0000000..a5160ac --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/34453242636732820360.txt @@ -0,0 +1,6 @@ +Номер счёта: 34453242636732820360 +ФИО владельца: fio +Баланс: 3000 р. +Номер счёта: 34453242636732820360 +ФИО владельца: fio +Баланс: 2000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/35154812758765506874.txt b/Testfinskaya0304/bin/Debug/net8.0/35154812758765506874.txt new file mode 100644 index 0000000..689b318 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/35154812758765506874.txt @@ -0,0 +1,6 @@ +Номер счёта: 35154812758765506874 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 35154812758765506874 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/35225281357860705127.txt b/Testfinskaya0304/bin/Debug/net8.0/35225281357860705127.txt new file mode 100644 index 0000000..e1dad80 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/35225281357860705127.txt @@ -0,0 +1,6 @@ +Номер счёта: 35225281357860705127 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 35225281357860705127 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/36203740103622777724.txt b/Testfinskaya0304/bin/Debug/net8.0/36203740103622777724.txt new file mode 100644 index 0000000..8206e4a --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/36203740103622777724.txt @@ -0,0 +1,6 @@ +Номер счёта: 36203740103622777724 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 36203740103622777724 +ФИО владельца: fio +Баланс: 500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/36387023002115277636.txt b/Testfinskaya0304/bin/Debug/net8.0/36387023002115277636.txt new file mode 100644 index 0000000..413f987 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/36387023002115277636.txt @@ -0,0 +1,3 @@ +Номер счёта: 36387023002115277636 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/37101575657651303811.txt b/Testfinskaya0304/bin/Debug/net8.0/37101575657651303811.txt new file mode 100644 index 0000000..7808b8d --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/37101575657651303811.txt @@ -0,0 +1,3 @@ +Номер счёта: 37101575657651303811 +ФИО владельца: 123 +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/37341027425540425722.txt b/Testfinskaya0304/bin/Debug/net8.0/37341027425540425722.txt new file mode 100644 index 0000000..8104bf2 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/37341027425540425722.txt @@ -0,0 +1,3 @@ +Номер счёта: 37341027425540425722 +ФИО владельца: fio +Баланс: 3000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/40523301187656356441.txt b/Testfinskaya0304/bin/Debug/net8.0/40523301187656356441.txt new file mode 100644 index 0000000..ccb2e61 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/40523301187656356441.txt @@ -0,0 +1,3 @@ +Номер счёта: 40523301187656356441 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/41381482706535376207.txt b/Testfinskaya0304/bin/Debug/net8.0/41381482706535376207.txt new file mode 100644 index 0000000..1928692 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/41381482706535376207.txt @@ -0,0 +1,3 @@ +Номер счёта: 41381482706535376207 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/41436420117411778605.txt b/Testfinskaya0304/bin/Debug/net8.0/41436420117411778605.txt new file mode 100644 index 0000000..74581ec --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/41436420117411778605.txt @@ -0,0 +1,3 @@ +Номер счёта: 41436420117411778605 +ФИО владельца: 123 +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/41802477276074815383.txt b/Testfinskaya0304/bin/Debug/net8.0/41802477276074815383.txt new file mode 100644 index 0000000..f030771 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/41802477276074815383.txt @@ -0,0 +1,3 @@ +Номер счёта: 41802477276074815383 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/42203545087886342818.txt b/Testfinskaya0304/bin/Debug/net8.0/42203545087886342818.txt new file mode 100644 index 0000000..9c5bb62 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/42203545087886342818.txt @@ -0,0 +1,3 @@ +Номер счёта: 42203545087886342818 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/42375516745380847246.txt b/Testfinskaya0304/bin/Debug/net8.0/42375516745380847246.txt new file mode 100644 index 0000000..7fbcd1a --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/42375516745380847246.txt @@ -0,0 +1,6 @@ +Номер счёта: 42375516745380847246 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 42375516745380847246 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/42657286466168244315.txt b/Testfinskaya0304/bin/Debug/net8.0/42657286466168244315.txt new file mode 100644 index 0000000..5281bc8 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/42657286466168244315.txt @@ -0,0 +1,6 @@ +Номер счёта: 42657286466168244315 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 42657286466168244315 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/43027728511204546888.txt b/Testfinskaya0304/bin/Debug/net8.0/43027728511204546888.txt new file mode 100644 index 0000000..9a14fcb --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/43027728511204546888.txt @@ -0,0 +1,3 @@ +Номер счёта: 43027728511204546888 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/43507216400451273047.txt b/Testfinskaya0304/bin/Debug/net8.0/43507216400451273047.txt new file mode 100644 index 0000000..c424022 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/43507216400451273047.txt @@ -0,0 +1,3 @@ +Номер счёта: 43507216400451273047 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/44373181628565441822.txt b/Testfinskaya0304/bin/Debug/net8.0/44373181628565441822.txt new file mode 100644 index 0000000..f57d639 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/44373181628565441822.txt @@ -0,0 +1,3 @@ +Номер счёта: 44373181628565441822 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/45231250548461002252.txt b/Testfinskaya0304/bin/Debug/net8.0/45231250548461002252.txt new file mode 100644 index 0000000..9b36b44 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/45231250548461002252.txt @@ -0,0 +1,3 @@ +Номер счёта: 45231250548461002252 +ФИО владельца: fio +Баланс: 3000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/45766048221421313688.txt b/Testfinskaya0304/bin/Debug/net8.0/45766048221421313688.txt new file mode 100644 index 0000000..5b89a64 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/45766048221421313688.txt @@ -0,0 +1,6 @@ +Номер счёта: 45766048221421313688 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 45766048221421313688 +ФИО владельца: fio +Баланс: 500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/48740152578875543476.txt b/Testfinskaya0304/bin/Debug/net8.0/48740152578875543476.txt new file mode 100644 index 0000000..771e2fb --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/48740152578875543476.txt @@ -0,0 +1,3 @@ +Номер счёта: 48740152578875543476 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/50123258000071757536.txt b/Testfinskaya0304/bin/Debug/net8.0/50123258000071757536.txt new file mode 100644 index 0000000..4e51fb9 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/50123258000071757536.txt @@ -0,0 +1,6 @@ +Номер счёта: 50123258000071757536 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 50123258000071757536 +ФИО владельца: fio +Баланс: -1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/50202861288082836773.txt b/Testfinskaya0304/bin/Debug/net8.0/50202861288082836773.txt new file mode 100644 index 0000000..e364f97 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/50202861288082836773.txt @@ -0,0 +1,3 @@ +Номер счёта: 50202861288082836773 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/51234782060187010125.txt b/Testfinskaya0304/bin/Debug/net8.0/51234782060187010125.txt new file mode 100644 index 0000000..20de952 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/51234782060187010125.txt @@ -0,0 +1,3 @@ +Номер счёта: 51234782060187010125 +ФИО владельца: fio +Баланс: 3000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/52587535282136328205.txt b/Testfinskaya0304/bin/Debug/net8.0/52587535282136328205.txt new file mode 100644 index 0000000..8ffb3c6 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/52587535282136328205.txt @@ -0,0 +1,3 @@ +Номер счёта: 52587535282136328205 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/52682604582610762223.txt b/Testfinskaya0304/bin/Debug/net8.0/52682604582610762223.txt new file mode 100644 index 0000000..4ff57a4 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/52682604582610762223.txt @@ -0,0 +1,6 @@ +Номер счёта: 52682604582610762223 +ФИО владельца: fio +Баланс: 3000 р. +Номер счёта: 52682604582610762223 +ФИО владельца: fio +Баланс: 2000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/53156643288684683444.txt b/Testfinskaya0304/bin/Debug/net8.0/53156643288684683444.txt new file mode 100644 index 0000000..570bb89 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/53156643288684683444.txt @@ -0,0 +1,3 @@ +Номер счёта: 53156643288684683444 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/53476404055027252113.txt b/Testfinskaya0304/bin/Debug/net8.0/53476404055027252113.txt new file mode 100644 index 0000000..5c8681e --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/53476404055027252113.txt @@ -0,0 +1,3 @@ +Номер счёта: 53476404055027252113 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/54114740815238358667.txt b/Testfinskaya0304/bin/Debug/net8.0/54114740815238358667.txt new file mode 100644 index 0000000..a651863 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/54114740815238358667.txt @@ -0,0 +1,3 @@ +Номер счёта: 54114740815238358667 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/54742073753213465168.txt b/Testfinskaya0304/bin/Debug/net8.0/54742073753213465168.txt new file mode 100644 index 0000000..2e3338e --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/54742073753213465168.txt @@ -0,0 +1,6 @@ +Номер счёта: 54742073753213465168 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 54742073753213465168 +ФИО владельца: fio +Баланс: 500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/56516230583411448555.txt b/Testfinskaya0304/bin/Debug/net8.0/56516230583411448555.txt new file mode 100644 index 0000000..de79425 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/56516230583411448555.txt @@ -0,0 +1,3 @@ +Номер счёта: 56516230583411448555 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/57026700282708467714.txt b/Testfinskaya0304/bin/Debug/net8.0/57026700282708467714.txt new file mode 100644 index 0000000..fdfedaa --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/57026700282708467714.txt @@ -0,0 +1,3 @@ +Номер счёта: 57026700282708467714 +ФИО владельца: fio +Баланс: 3000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/57041866532721636222.txt b/Testfinskaya0304/bin/Debug/net8.0/57041866532721636222.txt new file mode 100644 index 0000000..2e300fa --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/57041866532721636222.txt @@ -0,0 +1,6 @@ +Номер счёта: 57041866532721636222 +ФИО владельца: fio +Баланс: 3000 р. +Номер счёта: 57041866532721636222 +ФИО владельца: fio +Баланс: 2000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/57480168357213325683.txt b/Testfinskaya0304/bin/Debug/net8.0/57480168357213325683.txt new file mode 100644 index 0000000..f94ff5c --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/57480168357213325683.txt @@ -0,0 +1,6 @@ +Номер счёта: 57480168357213325683 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 57480168357213325683 +ФИО владельца: fio +Баланс: 500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/58116572452053172558.txt b/Testfinskaya0304/bin/Debug/net8.0/58116572452053172558.txt new file mode 100644 index 0000000..4ddc7b3 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/58116572452053172558.txt @@ -0,0 +1,6 @@ +Номер счёта: 58116572452053172558 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 58116572452053172558 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/60130873024483703812.txt b/Testfinskaya0304/bin/Debug/net8.0/60130873024483703812.txt new file mode 100644 index 0000000..850d007 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/60130873024483703812.txt @@ -0,0 +1,3 @@ +Номер счёта: 60130873024483703812 +ФИО владельца: fio +Баланс: 3000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/61306785227045523230.txt b/Testfinskaya0304/bin/Debug/net8.0/61306785227045523230.txt new file mode 100644 index 0000000..ba733d1 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/61306785227045523230.txt @@ -0,0 +1,6 @@ +Номер счёта: 61306785227045523230 +ФИО владельца: fio +Баланс: 3000 р. +Номер счёта: 61306785227045523230 +ФИО владельца: fio +Баланс: 2000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/61338173625662867630.txt b/Testfinskaya0304/bin/Debug/net8.0/61338173625662867630.txt new file mode 100644 index 0000000..e6c679f --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/61338173625662867630.txt @@ -0,0 +1,3 @@ +Номер счёта: 61338173625662867630 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/62120210618103340675.txt b/Testfinskaya0304/bin/Debug/net8.0/62120210618103340675.txt new file mode 100644 index 0000000..723ddb5 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/62120210618103340675.txt @@ -0,0 +1,6 @@ +Номер счёта: 62120210618103340675 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 62120210618103340675 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/62350818648304503073.txt b/Testfinskaya0304/bin/Debug/net8.0/62350818648304503073.txt new file mode 100644 index 0000000..72a1079 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/62350818648304503073.txt @@ -0,0 +1,3 @@ +Номер счёта: 62350818648304503073 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/62757176248037514320.txt b/Testfinskaya0304/bin/Debug/net8.0/62757176248037514320.txt new file mode 100644 index 0000000..3b6c5f1 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/62757176248037514320.txt @@ -0,0 +1,6 @@ +Номер счёта: 62757176248037514320 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 62757176248037514320 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/63376317466531702020.txt b/Testfinskaya0304/bin/Debug/net8.0/63376317466531702020.txt new file mode 100644 index 0000000..969d597 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/63376317466531702020.txt @@ -0,0 +1,6 @@ +Номер счёта: 63376317466531702020 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 63376317466531702020 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/64160267171123850726.txt b/Testfinskaya0304/bin/Debug/net8.0/64160267171123850726.txt new file mode 100644 index 0000000..4c83d9c --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/64160267171123850726.txt @@ -0,0 +1,6 @@ +Номер счёта: 64160267171123850726 +ФИО владельца: fio +Баланс: 3000 р. +Номер счёта: 64160267171123850726 +ФИО владельца: fio +Баланс: 2000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/66147040505757708482.txt b/Testfinskaya0304/bin/Debug/net8.0/66147040505757708482.txt new file mode 100644 index 0000000..1d2d2c4 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/66147040505757708482.txt @@ -0,0 +1,6 @@ +Номер счёта: 66147040505757708482 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 66147040505757708482 +ФИО владельца: fio +Баланс: -1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/66400255678571160665.txt b/Testfinskaya0304/bin/Debug/net8.0/66400255678571160665.txt new file mode 100644 index 0000000..940d7c9 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/66400255678571160665.txt @@ -0,0 +1,3 @@ +Номер счёта: 66400255678571160665 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/67105885540084836147.txt b/Testfinskaya0304/bin/Debug/net8.0/67105885540084836147.txt new file mode 100644 index 0000000..19fcdd1 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/67105885540084836147.txt @@ -0,0 +1,3 @@ +Номер счёта: 67105885540084836147 +ФИО владельца: fio +Баланс: 3000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/67441348434866726174.txt b/Testfinskaya0304/bin/Debug/net8.0/67441348434866726174.txt new file mode 100644 index 0000000..5494260 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/67441348434866726174.txt @@ -0,0 +1,6 @@ +Номер счёта: 67441348434866726174 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 67441348434866726174 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/68818743007773582263.txt b/Testfinskaya0304/bin/Debug/net8.0/68818743007773582263.txt new file mode 100644 index 0000000..aa9ba06 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/68818743007773582263.txt @@ -0,0 +1,3 @@ +Номер счёта: 68818743007773582263 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/70035072772024405711.txt b/Testfinskaya0304/bin/Debug/net8.0/70035072772024405711.txt new file mode 100644 index 0000000..8efa2a1 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/70035072772024405711.txt @@ -0,0 +1,3 @@ +Номер счёта: 70035072772024405711 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/70876831825585203337.txt b/Testfinskaya0304/bin/Debug/net8.0/70876831825585203337.txt new file mode 100644 index 0000000..a31712d --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/70876831825585203337.txt @@ -0,0 +1,3 @@ +Номер счёта: 70876831825585203337 +ФИО владельца: 123 +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/71633660326341210145.txt b/Testfinskaya0304/bin/Debug/net8.0/71633660326341210145.txt new file mode 100644 index 0000000..f24e014 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/71633660326341210145.txt @@ -0,0 +1,6 @@ +Номер счёта: 71633660326341210145 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 71633660326341210145 +ФИО владельца: fio +Баланс: 0 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/71870680462371251354.txt b/Testfinskaya0304/bin/Debug/net8.0/71870680462371251354.txt new file mode 100644 index 0000000..e7952cf --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/71870680462371251354.txt @@ -0,0 +1,3 @@ +Номер счёта: 71870680462371251354 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/72562750766107278768.txt b/Testfinskaya0304/bin/Debug/net8.0/72562750766107278768.txt new file mode 100644 index 0000000..36064b4 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/72562750766107278768.txt @@ -0,0 +1,3 @@ +Номер счёта: 72562750766107278768 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/72646554537114338485.txt b/Testfinskaya0304/bin/Debug/net8.0/72646554537114338485.txt new file mode 100644 index 0000000..711675c --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/72646554537114338485.txt @@ -0,0 +1,6 @@ +Номер счёта: 72646554537114338485 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 72646554537114338485 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/73243736641274488706.txt b/Testfinskaya0304/bin/Debug/net8.0/73243736641274488706.txt new file mode 100644 index 0000000..db4b8fe --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/73243736641274488706.txt @@ -0,0 +1,6 @@ +Номер счёта: 73243736641274488706 +ФИО владельца: fio +Баланс: 3000 р. +Номер счёта: 73243736641274488706 +ФИО владельца: fio +Баланс: 2000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/74074442342262560167.txt b/Testfinskaya0304/bin/Debug/net8.0/74074442342262560167.txt new file mode 100644 index 0000000..ed5a0a2 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/74074442342262560167.txt @@ -0,0 +1,6 @@ +Номер счёта: 74074442342262560167 +ФИО владельца: fio +Баланс: 3000 р. +Номер счёта: 74074442342262560167 +ФИО владельца: fio +Баланс: 2000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/75524330084087861770.txt b/Testfinskaya0304/bin/Debug/net8.0/75524330084087861770.txt new file mode 100644 index 0000000..ac8d701 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/75524330084087861770.txt @@ -0,0 +1,6 @@ +Номер счёта: 75524330084087861770 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 75524330084087861770 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/76243047047200003422.txt b/Testfinskaya0304/bin/Debug/net8.0/76243047047200003422.txt new file mode 100644 index 0000000..0704885 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/76243047047200003422.txt @@ -0,0 +1,6 @@ +Номер счёта: 76243047047200003422 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 76243047047200003422 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/77346175416650305304.txt b/Testfinskaya0304/bin/Debug/net8.0/77346175416650305304.txt new file mode 100644 index 0000000..7cac12f --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/77346175416650305304.txt @@ -0,0 +1,3 @@ +Номер счёта: 77346175416650305304 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/77357822011267278678.txt b/Testfinskaya0304/bin/Debug/net8.0/77357822011267278678.txt new file mode 100644 index 0000000..078fbee --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/77357822011267278678.txt @@ -0,0 +1,3 @@ +Номер счёта: 77357822011267278678 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/77458238030013072460.txt b/Testfinskaya0304/bin/Debug/net8.0/77458238030013072460.txt new file mode 100644 index 0000000..2ee6e8f --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/77458238030013072460.txt @@ -0,0 +1,6 @@ +Номер счёта: 77458238030013072460 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 77458238030013072460 +ФИО владельца: fio +Баланс: -1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/78150223723275027428.txt b/Testfinskaya0304/bin/Debug/net8.0/78150223723275027428.txt new file mode 100644 index 0000000..9786ee9 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/78150223723275027428.txt @@ -0,0 +1,6 @@ +Номер счёта: 78150223723275027428 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 78150223723275027428 +ФИО владельца: fio +Баланс: 500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/78171650318851726226.txt b/Testfinskaya0304/bin/Debug/net8.0/78171650318851726226.txt new file mode 100644 index 0000000..858d1c3 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/78171650318851726226.txt @@ -0,0 +1,3 @@ +Номер счёта: 78171650318851726226 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/78280234844687677021.txt b/Testfinskaya0304/bin/Debug/net8.0/78280234844687677021.txt new file mode 100644 index 0000000..2d50260 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/78280234844687677021.txt @@ -0,0 +1,3 @@ +Номер счёта: 78280234844687677021 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/78611365604107652461.txt b/Testfinskaya0304/bin/Debug/net8.0/78611365604107652461.txt new file mode 100644 index 0000000..7a6ef87 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/78611365604107652461.txt @@ -0,0 +1,6 @@ +Номер счёта: 78611365604107652461 +ФИО владельца: fio +Баланс: 3000 р. +Номер счёта: 78611365604107652461 +ФИО владельца: fio +Баланс: 2000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/80861865334637336834.txt b/Testfinskaya0304/bin/Debug/net8.0/80861865334637336834.txt new file mode 100644 index 0000000..b16625f --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/80861865334637336834.txt @@ -0,0 +1,6 @@ +Номер счёта: 80861865334637336834 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 80861865334637336834 +ФИО владельца: fio +Баланс: 500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/81155546612057427866.txt b/Testfinskaya0304/bin/Debug/net8.0/81155546612057427866.txt new file mode 100644 index 0000000..82431fd --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/81155546612057427866.txt @@ -0,0 +1,6 @@ +Номер счёта: 81155546612057427866 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 81155546612057427866 +ФИО владельца: fio +Баланс: 0 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/81475462032447758616.txt b/Testfinskaya0304/bin/Debug/net8.0/81475462032447758616.txt new file mode 100644 index 0000000..39641b4 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/81475462032447758616.txt @@ -0,0 +1,6 @@ +Номер счёта: 81475462032447758616 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 81475462032447758616 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/81680541406843806258.txt b/Testfinskaya0304/bin/Debug/net8.0/81680541406843806258.txt new file mode 100644 index 0000000..b8cb1b6 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/81680541406843806258.txt @@ -0,0 +1,3 @@ +Номер счёта: 81680541406843806258 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/82521002455858516804.txt b/Testfinskaya0304/bin/Debug/net8.0/82521002455858516804.txt new file mode 100644 index 0000000..37f5cd7 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/82521002455858516804.txt @@ -0,0 +1,6 @@ +Номер счёта: 82521002455858516804 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 82521002455858516804 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/83222850858862688231.txt b/Testfinskaya0304/bin/Debug/net8.0/83222850858862688231.txt new file mode 100644 index 0000000..aab3298 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/83222850858862688231.txt @@ -0,0 +1,6 @@ +Номер счёта: 83222850858862688231 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 83222850858862688231 +ФИО владельца: fio +Баланс: 500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/83283836722105678344.txt b/Testfinskaya0304/bin/Debug/net8.0/83283836722105678344.txt new file mode 100644 index 0000000..32782c3 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/83283836722105678344.txt @@ -0,0 +1,6 @@ +Номер счёта: 83283836722105678344 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 83283836722105678344 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/84138073744180466105.txt b/Testfinskaya0304/bin/Debug/net8.0/84138073744180466105.txt new file mode 100644 index 0000000..3c86b95 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/84138073744180466105.txt @@ -0,0 +1,3 @@ +Номер счёта: 84138073744180466105 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/84844130561143277113.txt b/Testfinskaya0304/bin/Debug/net8.0/84844130561143277113.txt new file mode 100644 index 0000000..e8db7d4 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/84844130561143277113.txt @@ -0,0 +1,3 @@ +Номер счёта: 84844130561143277113 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/85386508372250025780.txt b/Testfinskaya0304/bin/Debug/net8.0/85386508372250025780.txt new file mode 100644 index 0000000..37d3449 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/85386508372250025780.txt @@ -0,0 +1,6 @@ +Номер счёта: 85386508372250025780 +ФИО владельца: fio +Баланс: 3000 р. +Номер счёта: 85386508372250025780 +ФИО владельца: fio +Баланс: 2000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/86255237546864516004.txt b/Testfinskaya0304/bin/Debug/net8.0/86255237546864516004.txt new file mode 100644 index 0000000..9905024 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/86255237546864516004.txt @@ -0,0 +1,6 @@ +Номер счёта: 86255237546864516004 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 86255237546864516004 +ФИО владельца: fio +Баланс: -1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/86352603412480337300.txt b/Testfinskaya0304/bin/Debug/net8.0/86352603412480337300.txt new file mode 100644 index 0000000..399b9f5 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/86352603412480337300.txt @@ -0,0 +1,3 @@ +Номер счёта: 86352603412480337300 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/87015454032814231623.txt b/Testfinskaya0304/bin/Debug/net8.0/87015454032814231623.txt new file mode 100644 index 0000000..4375da1 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/87015454032814231623.txt @@ -0,0 +1,6 @@ +Номер счёта: 87015454032814231623 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 87015454032814231623 +ФИО владельца: fio +Баланс: -1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/87467827475774287485.txt b/Testfinskaya0304/bin/Debug/net8.0/87467827475774287485.txt new file mode 100644 index 0000000..02a5dd5 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/87467827475774287485.txt @@ -0,0 +1,6 @@ +Номер счёта: 87467827475774287485 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 87467827475774287485 +ФИО владельца: fio +Баланс: 0 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/87830025688635061741.txt b/Testfinskaya0304/bin/Debug/net8.0/87830025688635061741.txt new file mode 100644 index 0000000..26531dc --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/87830025688635061741.txt @@ -0,0 +1,3 @@ +Номер счёта: 87830025688635061741 +ФИО владельца: fio2 +Баланс: 5000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/88661244176138202136.txt b/Testfinskaya0304/bin/Debug/net8.0/88661244176138202136.txt new file mode 100644 index 0000000..21b2ad4 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/88661244176138202136.txt @@ -0,0 +1,3 @@ +Номер счёта: 88661244176138202136 +ФИО владельца: 123 +Баланс: 1000 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/88746843488612472717.txt b/Testfinskaya0304/bin/Debug/net8.0/88746843488612472717.txt new file mode 100644 index 0000000..8bfec79 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/88746843488612472717.txt @@ -0,0 +1,6 @@ +Номер счёта: 88746843488612472717 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 88746843488612472717 +ФИО владельца: fio +Баланс: 0 р. diff --git a/Testfinskaya0304/bin/Debug/net8.0/CoverletSourceRootsMapping_Testfinskaya0304 b/Testfinskaya0304/bin/Debug/net8.0/CoverletSourceRootsMapping_Testfinskaya0304 new file mode 100644 index 0000000..4da8ace Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/CoverletSourceRootsMapping_Testfinskaya0304 differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll new file mode 100755 index 0000000..514e543 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll new file mode 100755 index 0000000..67c6e6f Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll new file mode 100755 index 0000000..09efce0 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll new file mode 100755 index 0000000..a18a266 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll new file mode 100755 index 0000000..22a03b8 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll new file mode 100755 index 0000000..117ba73 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll new file mode 100755 index 0000000..8213a95 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll new file mode 100755 index 0000000..b002d6b Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/NUnit3.TestAdapter.dll b/Testfinskaya0304/bin/Debug/net8.0/NUnit3.TestAdapter.dll new file mode 100755 index 0000000..65c8c3d Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/NUnit3.TestAdapter.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/NUnit3.TestAdapter.pdb b/Testfinskaya0304/bin/Debug/net8.0/NUnit3.TestAdapter.pdb new file mode 100755 index 0000000..5a3a1b8 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/NUnit3.TestAdapter.pdb differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/Newtonsoft.Json.dll b/Testfinskaya0304/bin/Debug/net8.0/Newtonsoft.Json.dll new file mode 100755 index 0000000..1ffeabe Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/Newtonsoft.Json.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/NuGet.Frameworks.dll b/Testfinskaya0304/bin/Debug/net8.0/NuGet.Frameworks.dll new file mode 100755 index 0000000..d78c478 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/NuGet.Frameworks.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.deps.json b/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.deps.json new file mode 100644 index 0000000..5ff0c4c --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.deps.json @@ -0,0 +1,433 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "Testfinskaya0304/1.0.0": { + "dependencies": { + "Microsoft.NET.Test.Sdk": "17.8.0", + "NUnit": "3.14.0", + "NUnit.Analyzers": "3.9.0", + "NUnit3TestAdapter": "4.5.0", + "coverlet.collector": "6.0.0", + "finskaya0304": "1.0.0" + }, + "runtime": { + "Testfinskaya0304.dll": {} + } + }, + "coverlet.collector/6.0.0": {}, + "Microsoft.CodeCoverage/17.8.0": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.623.45702" + } + } + }, + "Microsoft.NET.Test.Sdk/17.8.0": { + "dependencies": { + "Microsoft.CodeCoverage": "17.8.0", + "Microsoft.TestPlatform.TestHost": "17.8.0" + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.TestPlatform.ObjectModel/17.8.0": { + "dependencies": { + "NuGet.Frameworks": "6.5.0", + "System.Reflection.Metadata": "1.6.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + }, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + }, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/17.8.0": { + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.8.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + }, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + }, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + }, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + }, + "lib/netcoreapp3.1/testhost.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "NETStandard.Library/2.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "NuGet.Frameworks/6.5.0": { + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": { + "assemblyVersion": "6.5.0.154", + "fileVersion": "6.5.0.154" + } + } + }, + "NUnit/3.14.0": { + "dependencies": { + "NETStandard.Library": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/nunit.framework.dll": { + "assemblyVersion": "3.14.0.0", + "fileVersion": "3.14.0.0" + } + } + }, + "NUnit.Analyzers/3.9.0": {}, + "NUnit3TestAdapter/4.5.0": {}, + "System.Reflection.Metadata/1.6.0": {}, + "finskaya0304/1.0.0": { + "runtime": { + "finskaya0304.dll": { + "assemblyVersion": "1.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Testfinskaya0304/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "coverlet.collector/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tW3lsNS+dAEII6YGUX/VMoJjBS1QvsxqJeqLaJXub08y1FSjasFPtQ4UBUsudE9PNrzLjooClMsPtY2cZLdXpQ==", + "path": "coverlet.collector/6.0.0", + "hashPath": "coverlet.collector.6.0.0.nupkg.sha512" + }, + "Microsoft.CodeCoverage/17.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KC8SXWbGIdoFVdlxKk9WHccm0llm9HypcHMLUUFabRiTS3SO2fQXNZfdiF3qkEdTJhbRrxhdRxjL4jbtwPq4Ew==", + "path": "microsoft.codecoverage/17.8.0", + "hashPath": "microsoft.codecoverage.17.8.0.nupkg.sha512" + }, + "Microsoft.NET.Test.Sdk/17.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmTYGbD/YuDHmApIENdoyN1jCk0Rj1fJB0+B/fVekyTdVidr91IlzhqzytiUgaEAzL1ZJcYCme0MeBMYvJVzvw==", + "path": "microsoft.net.test.sdk/17.8.0", + "hashPath": "microsoft.net.test.sdk.17.8.0.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.TestPlatform.ObjectModel/17.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AYy6vlpGMfz5kOFq99L93RGbqftW/8eQTqjT9iGXW6s9MRP3UdtY8idJ8rJcjeSja8A18IhIro5YnH3uv1nz4g==", + "path": "microsoft.testplatform.objectmodel/17.8.0", + "hashPath": "microsoft.testplatform.objectmodel.17.8.0.nupkg.sha512" + }, + "Microsoft.TestPlatform.TestHost/17.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ivcl/7SGRmOT0YYrHQGohWiT5YCpkmy/UEzldfVisLm6QxbLaK3FAJqZXI34rnRLmqqDCeMQxKINwmKwAPiDw==", + "path": "microsoft.testplatform.testhost/17.8.0", + "hashPath": "microsoft.testplatform.testhost.17.8.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/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "NuGet.Frameworks/6.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QWINE2x3MbTODsWT1Gh71GaGb5icBz4chS8VYvTgsBnsi8esgN6wtHhydd7fvToWECYGq7T4cgBBDiKD/363fg==", + "path": "nuget.frameworks/6.5.0", + "hashPath": "nuget.frameworks.6.5.0.nupkg.sha512" + }, + "NUnit/3.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-R7iPwD7kbOaP3o2zldWJbWeMQAvDKD0uld27QvA3PAALl1unl7x0v2J7eGiJOYjimV/BuGT4VJmr45RjS7z4LA==", + "path": "nunit/3.14.0", + "hashPath": "nunit.3.14.0.nupkg.sha512" + }, + "NUnit.Analyzers/3.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8bGAEljlBnzR+uU8oGQhTVKnbgBw1Mo71qjVkgzHdvtUkiB5XOIDyjAcS4KUo/j+F2Zv/xBUZRkCWXmejx4bfA==", + "path": "nunit.analyzers/3.9.0", + "hashPath": "nunit.analyzers.3.9.0.nupkg.sha512" + }, + "NUnit3TestAdapter/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s8JpqTe9bI2f49Pfr3dFRfoVSuFQyraTj68c3XXjIS/MRGvvkLnrg6RLqnTjdShX+AdFUCCU/4Xex58AdUfs6A==", + "path": "nunit3testadapter/4.5.0", + "hashPath": "nunit3testadapter.4.5.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" + }, + "finskaya0304/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.dll b/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.dll new file mode 100644 index 0000000..fc99880 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.pdb b/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.pdb new file mode 100644 index 0000000..ec522ad Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.pdb differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.runtimeconfig.json b/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.runtimeconfig.json new file mode 100644 index 0000000..becfaea --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..1768037 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..7310fb0 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..5af6e0e Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..86c5af1 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..d9a801b Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..2bb1465 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..d457408 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..998dc29 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..3cd7988 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..e6266e6 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..d5a8c37 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..e548e68 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..e014e2d Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..d2d34a9 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..95ba380 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/finskaya0304 b/Testfinskaya0304/bin/Debug/net8.0/finskaya0304 new file mode 100755 index 0000000..04acc85 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/finskaya0304 differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.deps.json b/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.deps.json new file mode 100644 index 0000000..1e3c416 --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "finskaya0304/1.0.0": { + "runtime": { + "finskaya0304.dll": {} + } + } + } + }, + "libraries": { + "finskaya0304/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.dll b/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.dll new file mode 100644 index 0000000..a5795cf Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.pdb b/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.pdb new file mode 100644 index 0000000..5cc6b77 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.pdb differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.runtimeconfig.json b/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.runtimeconfig.json new file mode 100644 index 0000000..becfaea --- /dev/null +++ b/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..fbd6f21 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..dca8640 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..388c3a8 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..52ca0cc Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..a160e8c Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..5aaa36b Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..21e5f9a Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..f1b2ec1 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..95f5ff8 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..e863878 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..9021665 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..1d3b394 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..773c01f Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..dd242e2 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..a6d1507 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..e1544b1 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..b973f38 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..f35bfe7 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..eade81b Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..e6e46b6 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/nunit.engine.api.dll b/Testfinskaya0304/bin/Debug/net8.0/nunit.engine.api.dll new file mode 100755 index 0000000..ffd41b5 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/nunit.engine.api.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/nunit.engine.core.dll b/Testfinskaya0304/bin/Debug/net8.0/nunit.engine.core.dll new file mode 100755 index 0000000..6750450 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/nunit.engine.core.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/nunit.engine.dll b/Testfinskaya0304/bin/Debug/net8.0/nunit.engine.dll new file mode 100755 index 0000000..029f779 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/nunit.engine.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/nunit.framework.dll b/Testfinskaya0304/bin/Debug/net8.0/nunit.framework.dll new file mode 100755 index 0000000..5724561 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/nunit.framework.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..8d2ec40 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..fc39387 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..65efdcd Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..20e7c34 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..8fbbbf4 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..3d0d41c Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..64495e5 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..89213a1 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..7bea004 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..fd63906 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..aefa288 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..60fe8bb Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..d58604b Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..a60916e Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..905b81d Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/testcentric.engine.metadata.dll b/Testfinskaya0304/bin/Debug/net8.0/testcentric.engine.metadata.dll new file mode 100755 index 0000000..b982b6b Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/testcentric.engine.metadata.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/testhost.dll b/Testfinskaya0304/bin/Debug/net8.0/testhost.dll new file mode 100755 index 0000000..1293868 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/testhost.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..d065beb Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..3ce4b68 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..0ae1f0a Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..af9add9 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..7b20360 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..3a8015b Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..edf5098 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..f57eeba Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..352f693 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..56dd542 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..6880d0d Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..2185e73 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..a5ba960 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..5ad986f Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..15c99a7 Binary files /dev/null and b/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Testfinskaya0304/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Testfinskaya0304/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..dca70aa --- /dev/null +++ b/Testfinskaya0304/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/Testfinskaya0304/obj/Debug/net8.0/Testfins.B5FCF812.Up2Date b/Testfinskaya0304/obj/Debug/net8.0/Testfins.B5FCF812.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.AssemblyInfo.cs b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.AssemblyInfo.cs new file mode 100644 index 0000000..4ef74a1 --- /dev/null +++ b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// 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("Testfinskaya0304")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Testfinskaya0304")] +[assembly: System.Reflection.AssemblyTitleAttribute("Testfinskaya0304")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.AssemblyInfoInputs.cache b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.AssemblyInfoInputs.cache new file mode 100644 index 0000000..d675bdd --- /dev/null +++ b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +2140a0c99455bbe732e5958790644551b2bf0d30853f27312ce4a66e075a475d diff --git a/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.GeneratedMSBuildEditorConfig.editorconfig b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d5dfba5 --- /dev/null +++ b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Testfinskaya0304 +build_property.ProjectDir = /Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.GlobalUsings.g.cs b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.GlobalUsings.g.cs new file mode 100644 index 0000000..d32bf35 --- /dev/null +++ b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.GlobalUsings.g.cs @@ -0,0 +1,9 @@ +// +global using global::NUnit.Framework; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.assets.cache b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.assets.cache new file mode 100644 index 0000000..1bc7eef Binary files /dev/null and b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.assets.cache differ diff --git a/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.csproj.AssemblyReference.cache b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.csproj.AssemblyReference.cache new file mode 100644 index 0000000..fdb50f6 Binary files /dev/null and b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.csproj.AssemblyReference.cache differ diff --git a/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.csproj.CoreCompileInputs.cache b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..9b34638 --- /dev/null +++ b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +5e50855aca02c3bf83ada46fa5ece866f01c368584c2fbd7062749325af4608c diff --git a/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.csproj.FileListAbsolute.txt b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..8152fae --- /dev/null +++ b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.csproj.FileListAbsolute.txt @@ -0,0 +1,104 @@ +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/CoverletSourceRootsMapping_Testfinskaya0304 +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.deps.json +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.runtimeconfig.json +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/finskaya0304 +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/NUnit3.TestAdapter.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/NUnit3.TestAdapter.pdb +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/nunit.engine.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/nunit.engine.api.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/nunit.engine.core.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/testcentric.engine.metadata.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.deps.json +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.runtimeconfig.json +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/Testfinskaya0304.pdb +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/testhost.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/Newtonsoft.Json.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/NuGet.Frameworks.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/nunit.framework.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/bin/Debug/net8.0/finskaya0304.pdb +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.csproj.AssemblyReference.cache +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.GeneratedMSBuildEditorConfig.editorconfig +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.AssemblyInfoInputs.cache +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.AssemblyInfo.cs +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.csproj.CoreCompileInputs.cache +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/obj/Debug/net8.0/Testfins.B5FCF812.Up2Date +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/obj/Debug/net8.0/refint/Testfinskaya0304.dll +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.pdb +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.genruntimeconfig.cache +/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/obj/Debug/net8.0/ref/Testfinskaya0304.dll diff --git a/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.dll b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.dll new file mode 100644 index 0000000..fc99880 Binary files /dev/null and b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.dll differ diff --git a/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.genruntimeconfig.cache b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.genruntimeconfig.cache new file mode 100644 index 0000000..d6a1691 --- /dev/null +++ b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.genruntimeconfig.cache @@ -0,0 +1 @@ +257044c51c2d4233e9239921e9400327583714a4037609bc6874de9dd890c244 diff --git a/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.pdb b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.pdb new file mode 100644 index 0000000..ec522ad Binary files /dev/null and b/Testfinskaya0304/obj/Debug/net8.0/Testfinskaya0304.pdb differ diff --git a/Testfinskaya0304/obj/Debug/net8.0/ref/Testfinskaya0304.dll b/Testfinskaya0304/obj/Debug/net8.0/ref/Testfinskaya0304.dll new file mode 100644 index 0000000..ea3b656 Binary files /dev/null and b/Testfinskaya0304/obj/Debug/net8.0/ref/Testfinskaya0304.dll differ diff --git a/Testfinskaya0304/obj/Debug/net8.0/refint/Testfinskaya0304.dll b/Testfinskaya0304/obj/Debug/net8.0/refint/Testfinskaya0304.dll new file mode 100644 index 0000000..ea3b656 Binary files /dev/null and b/Testfinskaya0304/obj/Debug/net8.0/refint/Testfinskaya0304.dll differ diff --git a/Testfinskaya0304/obj/Testfinskaya0304.csproj.nuget.dgspec.json b/Testfinskaya0304/obj/Testfinskaya0304.csproj.nuget.dgspec.json new file mode 100644 index 0000000..da683c7 --- /dev/null +++ b/Testfinskaya0304/obj/Testfinskaya0304.csproj.nuget.dgspec.json @@ -0,0 +1,150 @@ +{ + "format": 1, + "restore": { + "/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/Testfinskaya0304.csproj": {} + }, + "projects": { + "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj", + "projectName": "finskaya0304", + "projectPath": "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj", + "packagesPath": "/Users/rinchi/.nuget/packages/", + "outputPath": "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/rinchi/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/8.0.402/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/Testfinskaya0304.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/Testfinskaya0304.csproj", + "projectName": "Testfinskaya0304", + "projectPath": "/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/Testfinskaya0304.csproj", + "packagesPath": "/Users/rinchi/.nuget/packages/", + "outputPath": "/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/rinchi/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj": { + "projectPath": "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.8.0, )" + }, + "NUnit": { + "target": "Package", + "version": "[3.14.0, )" + }, + "NUnit.Analyzers": { + "target": "Package", + "version": "[3.9.0, )" + }, + "NUnit3TestAdapter": { + "target": "Package", + "version": "[4.5.0, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[6.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/8.0.402/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Testfinskaya0304/obj/Testfinskaya0304.csproj.nuget.g.props b/Testfinskaya0304/obj/Testfinskaya0304.csproj.nuget.g.props new file mode 100644 index 0000000..c3ffa72 --- /dev/null +++ b/Testfinskaya0304/obj/Testfinskaya0304.csproj.nuget.g.props @@ -0,0 +1,25 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/rinchi/.nuget/packages/ + /Users/rinchi/.nuget/packages/ + PackageReference + 6.12.0 + + + + + + + + + + + + + /Users/rinchi/.nuget/packages/nunit.analyzers/3.9.0 + + \ No newline at end of file diff --git a/Testfinskaya0304/obj/Testfinskaya0304.csproj.nuget.g.targets b/Testfinskaya0304/obj/Testfinskaya0304.csproj.nuget.g.targets new file mode 100644 index 0000000..e5709b7 --- /dev/null +++ b/Testfinskaya0304/obj/Testfinskaya0304.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/Testfinskaya0304/obj/project.assets.json b/Testfinskaya0304/obj/project.assets.json new file mode 100644 index 0000000..b8d9802 --- /dev/null +++ b/Testfinskaya0304/obj/project.assets.json @@ -0,0 +1,1087 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "coverlet.collector/6.0.0": { + "type": "package", + "build": { + "build/netstandard1.0/coverlet.collector.targets": {} + } + }, + "Microsoft.CodeCoverage/17.8.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard2.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard2.0/Microsoft.CodeCoverage.targets": {} + } + }, + "Microsoft.NET.Test.Sdk/17.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "17.8.0", + "Microsoft.TestPlatform.TestHost": "17.8.0" + }, + "compile": { + "lib/netcoreapp3.1/_._": {} + }, + "runtime": { + "lib/netcoreapp3.1/_._": {} + }, + "build": { + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props": {}, + "build/netcoreapp3.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.TestPlatform.ObjectModel/17.8.0": { + "type": "package", + "dependencies": { + "NuGet.Frameworks": "6.5.0", + "System.Reflection.Metadata": "1.6.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/17.8.0": { + "type": "package", + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.8.0", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp3.1/testhost.dll": { + "related": ".deps.json" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp3.1/testhost.dll": { + "related": ".deps.json" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props": {} + } + }, + "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/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "NuGet.Frameworks/6.5.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + } + }, + "NUnit/3.14.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/nunit.framework.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/nunit.framework.dll": { + "related": ".xml" + } + }, + "build": { + "build/NUnit.props": {} + } + }, + "NUnit.Analyzers/3.9.0": { + "type": "package" + }, + "NUnit3TestAdapter/4.5.0": { + "type": "package", + "build": { + "build/netcoreapp3.1/NUnit3TestAdapter.props": {} + } + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + } + }, + "finskaya0304/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "compile": { + "bin/placeholder/finskaya0304.dll": {} + }, + "runtime": { + "bin/placeholder/finskaya0304.dll": {} + } + } + } + }, + "libraries": { + "coverlet.collector/6.0.0": { + "sha512": "tW3lsNS+dAEII6YGUX/VMoJjBS1QvsxqJeqLaJXub08y1FSjasFPtQ4UBUsudE9PNrzLjooClMsPtY2cZLdXpQ==", + "type": "package", + "path": "coverlet.collector/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard1.0/Microsoft.Bcl.AsyncInterfaces.dll", + "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.CompilerServices.Unsafe.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.6.0.0.nupkg.sha512", + "coverlet.collector.nuspec" + ] + }, + "Microsoft.CodeCoverage/17.8.0": { + "sha512": "KC8SXWbGIdoFVdlxKk9WHccm0llm9HypcHMLUUFabRiTS3SO2fQXNZfdiF3qkEdTJhbRrxhdRxjL4jbtwPq4Ew==", + "type": "package", + "path": "microsoft.codecoverage/17.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_MIT.txt", + "ThirdPartyNotices.txt", + "build/netstandard2.0/CodeCoverage/CodeCoverage.config", + "build/netstandard2.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config", + "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/arm64/VanguardInstrumentationProfiler_arm64.config", + "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll", + "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "build/netstandard2.0/CodeCoverage/covrun32.dll", + "build/netstandard2.0/CodeCoverage/msdia140.dll", + "build/netstandard2.0/InstrumentationEngine/alpine/x64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/InstrumentationEngine/alpine/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/InstrumentationEngine/alpine/x64/libInstrumentationEngine.so", + "build/netstandard2.0/InstrumentationEngine/arm64/MicrosoftInstrumentationEngine_arm64.dll", + "build/netstandard2.0/InstrumentationEngine/macos/x64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/InstrumentationEngine/macos/x64/libCoverageInstrumentationMethod.dylib", + "build/netstandard2.0/InstrumentationEngine/macos/x64/libInstrumentationEngine.dylib", + "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libInstrumentationEngine.so", + "build/netstandard2.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll", + "build/netstandard2.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.props", + "build/netstandard2.0/Microsoft.CodeCoverage.targets", + "build/netstandard2.0/Microsoft.DiaSymReader.dll", + "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard2.0/Mono.Cecil.Pdb.dll", + "build/netstandard2.0/Mono.Cecil.Rocks.dll", + "build/netstandard2.0/Mono.Cecil.dll", + "build/netstandard2.0/ThirdPartyNotices.txt", + "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.17.8.0.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "Microsoft.NET.Test.Sdk/17.8.0": { + "sha512": "BmTYGbD/YuDHmApIENdoyN1jCk0Rj1fJB0+B/fVekyTdVidr91IlzhqzytiUgaEAzL1ZJcYCme0MeBMYvJVzvw==", + "type": "package", + "path": "microsoft.net.test.sdk/17.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_MIT.txt", + "build/net462/Microsoft.NET.Test.Sdk.props", + "build/net462/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets", + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", + "lib/net462/_._", + "lib/netcoreapp3.1/_._", + "microsoft.net.test.sdk.17.8.0.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.TestPlatform.ObjectModel/17.8.0": { + "sha512": "AYy6vlpGMfz5kOFq99L93RGbqftW/8eQTqjT9iGXW6s9MRP3UdtY8idJ8rJcjeSja8A18IhIro5YnH3uv1nz4g==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/17.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_MIT.txt", + "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/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", + "microsoft.testplatform.objectmodel.17.8.0.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/17.8.0": { + "sha512": "9ivcl/7SGRmOT0YYrHQGohWiT5YCpkmy/UEzldfVisLm6QxbLaK3FAJqZXI34rnRLmqqDCeMQxKINwmKwAPiDw==", + "type": "package", + "path": "microsoft.testplatform.testhost/17.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_MIT.txt", + "ThirdPartyNotices.txt", + "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props", + "build/netcoreapp3.1/x64/testhost.dll", + "build/netcoreapp3.1/x64/testhost.exe", + "build/netcoreapp3.1/x86/testhost.x86.dll", + "build/netcoreapp3.1/x86/testhost.x86.exe", + "lib/net462/_._", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/testhost.deps.json", + "lib/netcoreapp3.1/testhost.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/x64/msdia140.dll", + "lib/netcoreapp3.1/x86/msdia140.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "microsoft.testplatform.testhost.17.8.0.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "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/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "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/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NuGet.Frameworks/6.5.0": { + "sha512": "QWINE2x3MbTODsWT1Gh71GaGb5icBz4chS8VYvTgsBnsi8esgN6wtHhydd7fvToWECYGq7T4cgBBDiKD/363fg==", + "type": "package", + "path": "nuget.frameworks/6.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net472/NuGet.Frameworks.dll", + "lib/netstandard2.0/NuGet.Frameworks.dll", + "nuget.frameworks.6.5.0.nupkg.sha512", + "nuget.frameworks.nuspec" + ] + }, + "NUnit/3.14.0": { + "sha512": "R7iPwD7kbOaP3o2zldWJbWeMQAvDKD0uld27QvA3PAALl1unl7x0v2J7eGiJOYjimV/BuGT4VJmr45RjS7z4LA==", + "type": "package", + "path": "nunit/3.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGES.md", + "LICENSE.txt", + "NOTICES.txt", + "README.md", + "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.14.0.nupkg.sha512", + "nunit.nuspec" + ] + }, + "NUnit.Analyzers/3.9.0": { + "sha512": "8bGAEljlBnzR+uU8oGQhTVKnbgBw1Mo71qjVkgzHdvtUkiB5XOIDyjAcS4KUo/j+F2Zv/xBUZRkCWXmejx4bfA==", + "type": "package", + "path": "nunit.analyzers/3.9.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/nunit.analyzers.dll", + "docs/README.md", + "images/nunit_256.png", + "license.txt", + "nunit.analyzers.3.9.0.nupkg.sha512", + "nunit.analyzers.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "NUnit3TestAdapter/4.5.0": { + "sha512": "s8JpqTe9bI2f49Pfr3dFRfoVSuFQyraTj68c3XXjIS/MRGvvkLnrg6RLqnTjdShX+AdFUCCU/4Xex58AdUfs6A==", + "type": "package", + "path": "nunit3testadapter/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net462/NUnit3.TestAdapter.dll", + "build/net462/NUnit3.TestAdapter.pdb", + "build/net462/NUnit3TestAdapter.props", + "build/net462/nunit.engine.api.dll", + "build/net462/nunit.engine.core.dll", + "build/net462/nunit.engine.dll", + "build/net462/testcentric.engine.metadata.dll", + "build/netcoreapp3.1/NUnit3.TestAdapter.dll", + "build/netcoreapp3.1/NUnit3.TestAdapter.pdb", + "build/netcoreapp3.1/NUnit3TestAdapter.props", + "build/netcoreapp3.1/nunit.engine.api.dll", + "build/netcoreapp3.1/nunit.engine.core.dll", + "build/netcoreapp3.1/nunit.engine.dll", + "build/netcoreapp3.1/testcentric.engine.metadata.dll", + "docs/README.md", + "nunit3testadapter.4.5.0.nupkg.sha512", + "nunit3testadapter.nuspec", + "nunit_256.png" + ] + }, + "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" + ] + }, + "finskaya0304/1.0.0": { + "type": "project", + "path": "../finskaya0304/finskaya0304.csproj", + "msbuildProject": "../finskaya0304/finskaya0304.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Microsoft.NET.Test.Sdk >= 17.8.0", + "NUnit >= 3.14.0", + "NUnit.Analyzers >= 3.9.0", + "NUnit3TestAdapter >= 4.5.0", + "coverlet.collector >= 6.0.0", + "finskaya0304 >= 1.0.0" + ] + }, + "packageFolders": { + "/Users/rinchi/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/Testfinskaya0304.csproj", + "projectName": "Testfinskaya0304", + "projectPath": "/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/Testfinskaya0304.csproj", + "packagesPath": "/Users/rinchi/.nuget/packages/", + "outputPath": "/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/rinchi/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj": { + "projectPath": "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.8.0, )" + }, + "NUnit": { + "target": "Package", + "version": "[3.14.0, )" + }, + "NUnit.Analyzers": { + "target": "Package", + "version": "[3.9.0, )" + }, + "NUnit3TestAdapter": { + "target": "Package", + "version": "[4.5.0, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[6.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/8.0.402/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Testfinskaya0304/obj/project.nuget.cache b/Testfinskaya0304/obj/project.nuget.cache new file mode 100644 index 0000000..84815b1 --- /dev/null +++ b/Testfinskaya0304/obj/project.nuget.cache @@ -0,0 +1,22 @@ +{ + "version": 2, + "dgSpecHash": "KJ/9wNxlCyQ=", + "success": true, + "projectFilePath": "/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/Testfinskaya0304.csproj", + "expectedPackageFiles": [ + "/Users/rinchi/.nuget/packages/coverlet.collector/6.0.0/coverlet.collector.6.0.0.nupkg.sha512", + "/Users/rinchi/.nuget/packages/microsoft.codecoverage/17.8.0/microsoft.codecoverage.17.8.0.nupkg.sha512", + "/Users/rinchi/.nuget/packages/microsoft.net.test.sdk/17.8.0/microsoft.net.test.sdk.17.8.0.nupkg.sha512", + "/Users/rinchi/.nuget/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "/Users/rinchi/.nuget/packages/microsoft.testplatform.objectmodel/17.8.0/microsoft.testplatform.objectmodel.17.8.0.nupkg.sha512", + "/Users/rinchi/.nuget/packages/microsoft.testplatform.testhost/17.8.0/microsoft.testplatform.testhost.17.8.0.nupkg.sha512", + "/Users/rinchi/.nuget/packages/netstandard.library/2.0.0/netstandard.library.2.0.0.nupkg.sha512", + "/Users/rinchi/.nuget/packages/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg.sha512", + "/Users/rinchi/.nuget/packages/nuget.frameworks/6.5.0/nuget.frameworks.6.5.0.nupkg.sha512", + "/Users/rinchi/.nuget/packages/nunit/3.14.0/nunit.3.14.0.nupkg.sha512", + "/Users/rinchi/.nuget/packages/nunit.analyzers/3.9.0/nunit.analyzers.3.9.0.nupkg.sha512", + "/Users/rinchi/.nuget/packages/nunit3testadapter/4.5.0/nunit3testadapter.4.5.0.nupkg.sha512", + "/Users/rinchi/.nuget/packages/system.reflection.metadata/1.6.0/system.reflection.metadata.1.6.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Testfinskaya0304/obj/project.packagespec.json b/Testfinskaya0304/obj/project.packagespec.json new file mode 100644 index 0000000..1b2e5ad --- /dev/null +++ b/Testfinskaya0304/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/Testfinskaya0304.csproj","projectName":"Testfinskaya0304","projectPath":"/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/Testfinskaya0304.csproj","outputPath":"/Users/rinchi/RiderProjects/finskaya0304/Testfinskaya0304/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj":{"projectPath":"/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Microsoft.NET.Test.Sdk":{"target":"Package","version":"[17.8.0, )"},"NUnit":{"target":"Package","version":"[3.14.0, )"},"NUnit.Analyzers":{"target":"Package","version":"[3.9.0, )"},"NUnit3TestAdapter":{"target":"Package","version":"[4.5.0, )"},"coverlet.collector":{"target":"Package","version":"[6.0.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/8.0.402/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/Testfinskaya0304/obj/rider.project.model.nuget.info b/Testfinskaya0304/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..e83cb1d --- /dev/null +++ b/Testfinskaya0304/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17436629069672902 \ No newline at end of file diff --git a/Testfinskaya0304/obj/rider.project.restore.info b/Testfinskaya0304/obj/rider.project.restore.info new file mode 100644 index 0000000..e83cb1d --- /dev/null +++ b/Testfinskaya0304/obj/rider.project.restore.info @@ -0,0 +1 @@ +17436629069672902 \ No newline at end of file diff --git a/finskaya0304.sln b/finskaya0304.sln new file mode 100644 index 0000000..7e84833 --- /dev/null +++ b/finskaya0304.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "finskaya0304", "finskaya0304\finskaya0304.csproj", "{CEE381CE-83FF-404C-8B5C-B3FC89E7B9ED}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Testfinskaya0304", "Testfinskaya0304\Testfinskaya0304.csproj", "{9851A59E-0F17-4E77-83C5-C37DE986144E}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CEE381CE-83FF-404C-8B5C-B3FC89E7B9ED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CEE381CE-83FF-404C-8B5C-B3FC89E7B9ED}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CEE381CE-83FF-404C-8B5C-B3FC89E7B9ED}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CEE381CE-83FF-404C-8B5C-B3FC89E7B9ED}.Release|Any CPU.Build.0 = Release|Any CPU + {9851A59E-0F17-4E77-83C5-C37DE986144E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9851A59E-0F17-4E77-83C5-C37DE986144E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9851A59E-0F17-4E77-83C5-C37DE986144E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9851A59E-0F17-4E77-83C5-C37DE986144E}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/finskaya0304.sln.DotSettings.user b/finskaya0304.sln.DotSettings.user new file mode 100644 index 0000000..4b7f1b7 --- /dev/null +++ b/finskaya0304.sln.DotSettings.user @@ -0,0 +1,6 @@ + + <SessionState ContinuousTestingMode="0" IsActive="True" Name="Test1" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session"> + <TestAncestor> + <TestId>NUnit3x::9851A59E-0F17-4E77-83C5-C37DE986144E::net8.0::TestFinskaya0304.Tests</TestId> + </TestAncestor> +</SessionState> \ No newline at end of file diff --git a/finskaya0304/86630476851401043650.txt b/finskaya0304/86630476851401043650.txt new file mode 100644 index 0000000..e19fbe2 --- /dev/null +++ b/finskaya0304/86630476851401043650.txt @@ -0,0 +1,3 @@ +Номер счёта: 86630476851401043650 +ФИО владельца: ашщ +Баланс: 1000 р. diff --git a/finskaya0304/Program.cs b/finskaya0304/Program.cs new file mode 100644 index 0000000..4f70ad6 --- /dev/null +++ b/finskaya0304/Program.cs @@ -0,0 +1,83 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Security.Cryptography.X509Certificates; +using System.Security.Principal; +using System.Text; +using System.Threading.Tasks; + +namespace finskaya0304 +{ + internal class Program + { + static void Main(string[] args) + { + Console.WriteLine("Здравствуйте!\nВы хотите открыть счёт в нашем банке?"); + string ans = Console.ReadLine(); + if ((ans == "ДА") || (ans == "Да") || (ans == "да")) + { + Console.WriteLine("\nСколько счетов Вы собираетесь создать?"); + int kolvo = Convert.ToInt32(Console.ReadLine()); + account[] user = new account[kolvo]; + + for (int i = 0; i < kolvo; i++) + { + user[i] = new account(); + user[i].otk(); + Console.WriteLine("Счёту присвоен индекс: " + i); + } + + Console.WriteLine("\nВыберите индекс счёта, с которым Вы хотели бы произвести операцию."); + int a = Convert.ToInt32(Console.ReadLine()); + + Console.WriteLine("\nТеперь выберите операцию, которую хотели бы произвести.\n(пополнить, снять сумму, снять всё, перевести на другой счёт)"); + string strr = Console.ReadLine(); + + switch (strr) + { + case "Пополнить": + user[a].top_up(); + break; + + case "пополнить": + goto case "Пополнить"; + break; + + case "Снять сумму": + user[a].umen(); + break; + + case "снять сумму": + goto case "Снять сумму"; + break; + + case "Снять всё": + user[a].obnul(); + break; + + case "снять всё": + goto case "Снять всё"; + break; + + case "Перевести": + user[a].perevod(); + int ind = user[a].index; + float per = user[a].summ; + user[ind].summ = per; + user[ind].top_up(); + break; + + case "перевести": + goto case "Перевести"; + break; + } + } + else + { + Console.WriteLine("\nОчень жаль! Если передумаете, будем рады видеть вас в качестве нашего клиента!\nВсего доброго."); + } + + Console.ReadKey(); + } + } +} \ No newline at end of file diff --git a/finskaya0304/account.cs b/finskaya0304/account.cs new file mode 100644 index 0000000..646405f --- /dev/null +++ b/finskaya0304/account.cs @@ -0,0 +1,170 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Net; +using System.Text; +using System.Threading.Tasks; + +namespace finskaya0304 +{ + public class account + { + private string num; + private string name; + public float sum; + public float summ; + public int index; + public string putt; + + public string GetName() + { + return name; + } + + public float GetSum() + { + return sum; + } + + public string GetNum() + { + return num; + } + + public void otk() + { + //Метод открытия счёта. + + int i = 0; + while (i == 0) + { + Console.WriteLine("\nПожалуйста, введите своё ФИО:"); + name = Console.ReadLine(); + Console.WriteLine("Также введите сумму для первичного пополнения счёта:"); + sum = Convert.ToSingle(Console.ReadLine()); + + if (sum < 1000) + { + Console.WriteLine("Сумма слишком мала, попробуйте ещё раз!"); + } + else + { + Console.WriteLine("Готово! Счёт успешно открыт!\n"); + num_gen(); + show(); + i++; + } + } + } + + public void num_gen() + { + //Генерация номера счёта, состоящего из случайных чисел. + + int[] array = new int[20]; + Random rand = new Random(); + for (int i = 0; i < array.Length; i++) + array[i] = rand.Next(0, 9); + num = string.Join("", array); + } + + public void show() + { + //Вывод введённой пользователем информации на консоль. + + putt = num + ".txt"; + StreamWriter sw = new StreamWriter(putt, true); + + Console.WriteLine("\nНиже Вы можете увидеть реквизиты и актуальные данные вашего банковского счёта."); + Console.WriteLine("Номер счёта: " + num); + Console.WriteLine("ФИО владельца: " + name); + Console.WriteLine("Баланс: " + sum + " р."); + + sw.WriteLine("Номер счёта: " + num); + sw.WriteLine("ФИО владельца: " + name); + sw.WriteLine("Баланс: " + sum + " р."); + sw.Close(); + } + + public void top_up() + { + //Операция пополнения баланса на счету. + + Console.WriteLine("\nВведите сумму, которую Вы собираетесь положить на счёт:"); + int sum_t = Convert.ToInt32(Console.ReadLine()); + sum = sum + sum_t; + //pereschet(); + show(); + } + + public void umen() + { + //Операция снятия определённой суммы со счёта. + + Console.WriteLine("\nВведите сумму, которую Вы собираетесь снять:"); + int sum_t = Convert.ToInt32(Console.ReadLine()); + sum = sum - sum_t; + //pereschet(); + show(); + } + + public void obnul() + { + //Операция снятия всей суммы со счёта. + + sum = sum - sum; + //pereschet(); + show(); + } + + public void perevod() + { + //Операция перевода средств с одного счёта на другой. + + Console.WriteLine("\nКакую сумму хотите перевести?"); + summ = Convert.ToSingle(Console.ReadLine()); + Console.WriteLine("Введите индекс счёта, на который хотите осуществить перевод."); + index = Convert.ToInt32(Console.ReadLine()); + if (summ > sum) + { + Console.WriteLine("\nНа счету недостаточно средств!"); + } + else + { + sum = sum - summ; + show(); + } + //pereschet(); + } + + private async void pereschet() + { + string[] lines = new string[3]; + + using (StreamReader reader = new StreamReader(putt)) + { + for (int i = 0; i < lines.Length; i++) + { + string line = reader.ReadLine(); + lines[i] = line; + } + reader.Close(); + } + + using (StreamWriter sww = new StreamWriter(putt)) + { + for (int i = 0; i < lines.Length; i++) + { + if (i < lines.Length - 1) + sww.WriteLine(lines[i]); + } + sww.WriteLine("Номер счёта: " + num); + sww.WriteLine("ФИО владельца: " + name); + sww.WriteLine("Баланс: " + sum + " р."); + sww.Close(); + } + } + } +} + diff --git a/finskaya0304/bin/Debug/net8.0/finskaya0304 b/finskaya0304/bin/Debug/net8.0/finskaya0304 new file mode 100755 index 0000000..04acc85 Binary files /dev/null and b/finskaya0304/bin/Debug/net8.0/finskaya0304 differ diff --git a/finskaya0304/bin/Debug/net8.0/finskaya0304.deps.json b/finskaya0304/bin/Debug/net8.0/finskaya0304.deps.json new file mode 100644 index 0000000..1e3c416 --- /dev/null +++ b/finskaya0304/bin/Debug/net8.0/finskaya0304.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "finskaya0304/1.0.0": { + "runtime": { + "finskaya0304.dll": {} + } + } + } + }, + "libraries": { + "finskaya0304/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/finskaya0304/bin/Debug/net8.0/finskaya0304.dll b/finskaya0304/bin/Debug/net8.0/finskaya0304.dll new file mode 100644 index 0000000..a5795cf Binary files /dev/null and b/finskaya0304/bin/Debug/net8.0/finskaya0304.dll differ diff --git a/finskaya0304/bin/Debug/net8.0/finskaya0304.pdb b/finskaya0304/bin/Debug/net8.0/finskaya0304.pdb new file mode 100644 index 0000000..5cc6b77 Binary files /dev/null and b/finskaya0304/bin/Debug/net8.0/finskaya0304.pdb differ diff --git a/finskaya0304/bin/Debug/net8.0/finskaya0304.runtimeconfig.json b/finskaya0304/bin/Debug/net8.0/finskaya0304.runtimeconfig.json new file mode 100644 index 0000000..becfaea --- /dev/null +++ b/finskaya0304/bin/Debug/net8.0/finskaya0304.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/finskaya0304/finskaya0304.csproj b/finskaya0304/finskaya0304.csproj new file mode 100644 index 0000000..2f4fc77 --- /dev/null +++ b/finskaya0304/finskaya0304.csproj @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + + diff --git a/finskaya0304/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/finskaya0304/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..dca70aa --- /dev/null +++ b/finskaya0304/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/finskaya0304/obj/Debug/net8.0/apphost b/finskaya0304/obj/Debug/net8.0/apphost new file mode 100755 index 0000000..04acc85 Binary files /dev/null and b/finskaya0304/obj/Debug/net8.0/apphost differ diff --git a/finskaya0304/obj/Debug/net8.0/finskaya0304.AssemblyInfo.cs b/finskaya0304/obj/Debug/net8.0/finskaya0304.AssemblyInfo.cs new file mode 100644 index 0000000..121f7af --- /dev/null +++ b/finskaya0304/obj/Debug/net8.0/finskaya0304.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// 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("finskaya0304")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("finskaya0304")] +[assembly: System.Reflection.AssemblyTitleAttribute("finskaya0304")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/finskaya0304/obj/Debug/net8.0/finskaya0304.AssemblyInfoInputs.cache b/finskaya0304/obj/Debug/net8.0/finskaya0304.AssemblyInfoInputs.cache new file mode 100644 index 0000000..bb3227a --- /dev/null +++ b/finskaya0304/obj/Debug/net8.0/finskaya0304.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b66549e65847a74615f25929dec81cadc69ca30d97522411890565909f5d7d6b diff --git a/finskaya0304/obj/Debug/net8.0/finskaya0304.GeneratedMSBuildEditorConfig.editorconfig b/finskaya0304/obj/Debug/net8.0/finskaya0304.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a96c3f3 --- /dev/null +++ b/finskaya0304/obj/Debug/net8.0/finskaya0304.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = finskaya0304 +build_property.ProjectDir = /Users/rinchi/RiderProjects/finskaya0304/finskaya0304/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/finskaya0304/obj/Debug/net8.0/finskaya0304.GlobalUsings.g.cs b/finskaya0304/obj/Debug/net8.0/finskaya0304.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/finskaya0304/obj/Debug/net8.0/finskaya0304.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/finskaya0304/obj/Debug/net8.0/finskaya0304.assets.cache b/finskaya0304/obj/Debug/net8.0/finskaya0304.assets.cache new file mode 100644 index 0000000..011b191 Binary files /dev/null and b/finskaya0304/obj/Debug/net8.0/finskaya0304.assets.cache differ diff --git a/finskaya0304/obj/Debug/net8.0/finskaya0304.csproj.CoreCompileInputs.cache b/finskaya0304/obj/Debug/net8.0/finskaya0304.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..b8c0acd --- /dev/null +++ b/finskaya0304/obj/Debug/net8.0/finskaya0304.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +b0614a6da74b87500ad3e80bf1b062d6c07665f1379049666f6d793e5ef0ea1f diff --git a/finskaya0304/obj/Debug/net8.0/finskaya0304.csproj.FileListAbsolute.txt b/finskaya0304/obj/Debug/net8.0/finskaya0304.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c2d42f3 --- /dev/null +++ b/finskaya0304/obj/Debug/net8.0/finskaya0304.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/bin/Debug/net8.0/finskaya0304 +/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/bin/Debug/net8.0/finskaya0304.deps.json +/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/bin/Debug/net8.0/finskaya0304.runtimeconfig.json +/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/bin/Debug/net8.0/finskaya0304.dll +/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/bin/Debug/net8.0/finskaya0304.pdb +/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/obj/Debug/net8.0/finskaya0304.GeneratedMSBuildEditorConfig.editorconfig +/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/obj/Debug/net8.0/finskaya0304.AssemblyInfoInputs.cache +/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/obj/Debug/net8.0/finskaya0304.AssemblyInfo.cs +/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/obj/Debug/net8.0/finskaya0304.csproj.CoreCompileInputs.cache +/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/obj/Debug/net8.0/finskaya0304.dll +/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/obj/Debug/net8.0/refint/finskaya0304.dll +/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/obj/Debug/net8.0/finskaya0304.pdb +/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/obj/Debug/net8.0/finskaya0304.genruntimeconfig.cache +/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/obj/Debug/net8.0/ref/finskaya0304.dll diff --git a/finskaya0304/obj/Debug/net8.0/finskaya0304.dll b/finskaya0304/obj/Debug/net8.0/finskaya0304.dll new file mode 100644 index 0000000..a5795cf Binary files /dev/null and b/finskaya0304/obj/Debug/net8.0/finskaya0304.dll differ diff --git a/finskaya0304/obj/Debug/net8.0/finskaya0304.genruntimeconfig.cache b/finskaya0304/obj/Debug/net8.0/finskaya0304.genruntimeconfig.cache new file mode 100644 index 0000000..c713e75 --- /dev/null +++ b/finskaya0304/obj/Debug/net8.0/finskaya0304.genruntimeconfig.cache @@ -0,0 +1 @@ +66e45ed6e22a59e09ca7e536a4096875959be717313dc82ab46dae3520ea13c8 diff --git a/finskaya0304/obj/Debug/net8.0/finskaya0304.pdb b/finskaya0304/obj/Debug/net8.0/finskaya0304.pdb new file mode 100644 index 0000000..5cc6b77 Binary files /dev/null and b/finskaya0304/obj/Debug/net8.0/finskaya0304.pdb differ diff --git a/finskaya0304/obj/Debug/net8.0/ref/finskaya0304.dll b/finskaya0304/obj/Debug/net8.0/ref/finskaya0304.dll new file mode 100644 index 0000000..c4a6904 Binary files /dev/null and b/finskaya0304/obj/Debug/net8.0/ref/finskaya0304.dll differ diff --git a/finskaya0304/obj/Debug/net8.0/refint/finskaya0304.dll b/finskaya0304/obj/Debug/net8.0/refint/finskaya0304.dll new file mode 100644 index 0000000..c4a6904 Binary files /dev/null and b/finskaya0304/obj/Debug/net8.0/refint/finskaya0304.dll differ diff --git a/finskaya0304/obj/finskaya0304.csproj.nuget.dgspec.json b/finskaya0304/obj/finskaya0304.csproj.nuget.dgspec.json new file mode 100644 index 0000000..daae589 --- /dev/null +++ b/finskaya0304/obj/finskaya0304.csproj.nuget.dgspec.json @@ -0,0 +1,66 @@ +{ + "format": 1, + "restore": { + "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj": {} + }, + "projects": { + "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj", + "projectName": "finskaya0304", + "projectPath": "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj", + "packagesPath": "/Users/rinchi/.nuget/packages/", + "outputPath": "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/rinchi/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/8.0.402/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/finskaya0304/obj/finskaya0304.csproj.nuget.g.props b/finskaya0304/obj/finskaya0304.csproj.nuget.g.props new file mode 100644 index 0000000..c20bf38 --- /dev/null +++ b/finskaya0304/obj/finskaya0304.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/rinchi/.nuget/packages/ + /Users/rinchi/.nuget/packages/ + PackageReference + 6.12.0 + + + + + \ No newline at end of file diff --git a/finskaya0304/obj/finskaya0304.csproj.nuget.g.targets b/finskaya0304/obj/finskaya0304.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/finskaya0304/obj/finskaya0304.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/finskaya0304/obj/project.assets.json b/finskaya0304/obj/project.assets.json new file mode 100644 index 0000000..a5527d6 --- /dev/null +++ b/finskaya0304/obj/project.assets.json @@ -0,0 +1,71 @@ +{ + "version": 3, + "targets": { + "net8.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0": [] + }, + "packageFolders": { + "/Users/rinchi/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj", + "projectName": "finskaya0304", + "projectPath": "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj", + "packagesPath": "/Users/rinchi/.nuget/packages/", + "outputPath": "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/rinchi/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/8.0.402/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/finskaya0304/obj/project.nuget.cache b/finskaya0304/obj/project.nuget.cache new file mode 100644 index 0000000..24550cb --- /dev/null +++ b/finskaya0304/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "ILPTa5gNDko=", + "success": true, + "projectFilePath": "/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/finskaya0304/obj/project.packagespec.json b/finskaya0304/obj/project.packagespec.json new file mode 100644 index 0000000..cc89bae --- /dev/null +++ b/finskaya0304/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj","projectName":"finskaya0304","projectPath":"/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/finskaya0304.csproj","outputPath":"/Users/rinchi/RiderProjects/finskaya0304/finskaya0304/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/8.0.402/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/finskaya0304/obj/rider.project.model.nuget.info b/finskaya0304/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..e0090e1 --- /dev/null +++ b/finskaya0304/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17436615963681617 \ No newline at end of file diff --git a/finskaya0304/obj/rider.project.restore.info b/finskaya0304/obj/rider.project.restore.info new file mode 100644 index 0000000..e0090e1 --- /dev/null +++ b/finskaya0304/obj/rider.project.restore.info @@ -0,0 +1 @@ +17436615963681617 \ No newline at end of file