commit fd71ea880c35dedfa96bbff1516e73f12bb273fd Author: 1billy17 Date: Thu May 15 05:54:37 2025 +0300 first commit diff --git a/.idea/.idea.finskaybank/.idea/.gitignore b/.idea/.idea.finskaybank/.idea/.gitignore new file mode 100644 index 0000000..7efe7ac --- /dev/null +++ b/.idea/.idea.finskaybank/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/modules.xml +/.idea.finskaybank.iml +/contentModel.xml +/projectSettingsUpdater.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.idea.finskaybank/.idea/indexLayout.xml b/.idea/.idea.finskaybank/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.finskaybank/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.finskaybank/.idea/vcs.xml b/.idea/.idea.finskaybank/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/.idea.finskaybank/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/TestProject1/TestProject1.csproj b/TestProject1/TestProject1.csproj new file mode 100644 index 0000000..01d678e --- /dev/null +++ b/TestProject1/TestProject1.csproj @@ -0,0 +1,28 @@ + + + + net8.0 + enable + enable + + false + true + + + + + + + + + + + + + + + + + + + diff --git a/TestProject1/UnitTest1.cs b/TestProject1/UnitTest1.cs new file mode 100644 index 0000000..7318457 --- /dev/null +++ b/TestProject1/UnitTest1.cs @@ -0,0 +1,290 @@ +using System; +using System.IO; +using finskaybank; +using NUnit.Framework; + +namespace BankAccountTests +{ + [TestFixture] + public class BankAccountOperationsTests + { + private account[] _accounts; + private StringReader _inputSimulator; + private StringWriter _outputCapture; + + [SetUp] + public void InitializeTestEnvironment() + { + _accounts = new account[100]; + _outputCapture = new StringWriter(); + Console.SetOut(_outputCapture); + } + + [TearDown] + public void CleanupTestEnvironment() + { + _outputCapture?.Dispose(); + _inputSimulator?.Dispose(); + } + + [Test] + public void otk_ValidInput_SetsCorrectProperties() + { + _inputSimulator = new StringReader("fio\n1500\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + Assert.That(_accounts[0].GetName(), Is.EqualTo("fio")); + Assert.That(_accounts[0].GetSum(), Is.EqualTo(1500.00)); + Assert.That(_accounts[0].GetNum(), Is.Not.Empty); + } + + [Test] + public void otk_InsufficientDeposit_PrintsRetryMessage() + { + _inputSimulator = new StringReader("fio\n500\nfio1\n2000\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + string consoleOutput = _outputCapture.ToString(); + Assert.That(consoleOutput, Does.Contain("Сумма слишком мала, попробуйте ещё раз!")); + } + + [Test] + public void otk_NumericNameInput_StoresNameCorrectly() + { + _inputSimulator = new StringReader("12345\n2500\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + Assert.That(_accounts[0].GetName(), Is.EqualTo("12345")); + } + + [Test] + public void otk_InvalidDepositInput_ThrowsFormatException() + { + _inputSimulator = new StringReader("fio\ninvalidAmount\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + + Assert.Throws(() => _accounts[0].otk()); + } + + [Test] + public void num_gen_GeneratesTwentyDigitNumber() + { + _accounts[0] = new account(); + _accounts[0].num_gen(); + + Assert.That(_accounts[0].GetNum().Length, Is.EqualTo(20)); + } + + [Test] + public void otk_AfterCreation_AccountFileContainsCorrectInfo() + { + _inputSimulator = new StringReader("fio\n3000\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + string accountFile = $"{_accounts[0].GetNum()}.txt"; + Assert.That(File.Exists(accountFile), Is.True); + + string fileContents = File.ReadAllText(accountFile); + Assert.That(fileContents, Does.Contain(_accounts[0].GetNum())); + Assert.That(fileContents, Does.Contain(_accounts[0].GetName())); + Assert.That(fileContents, Does.Contain(_accounts[0].GetSum().ToString())); + } + + [Test] + public void top_up_PositiveAmount_IncreasesBalance() + { + _inputSimulator = new StringReader("fio\n1000\n750\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + float expected = _accounts[0].GetSum() + 750; + _accounts[0].top_up(); + + Assert.That(_accounts[0].GetSum(), Is.EqualTo(expected)); + } + + [Test] + public void top_up_NegativeAmount_DecreasesBalance() + { + _inputSimulator = new StringReader("fio\n2000\n-500\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + float expected = _accounts[0].GetSum() - 500; + _accounts[0].top_up(); + + Assert.That(_accounts[0].GetSum(), Is.EqualTo(expected)); + } + + [Test] + public void top_up_ZeroAmount_LeavesBalanceUnchanged() + { + _inputSimulator = new StringReader("fio\n1500\n0\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + float original = _accounts[0].GetSum(); + _accounts[0].top_up(); + + Assert.That(_accounts[0].GetSum(), Is.EqualTo(original)); + } + + [Test] + public void top_up_InvalidInput_ThrowsFormatException() + { + _inputSimulator = new StringReader("fio\n1000\nnotANumber\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + Assert.Throws(() => _accounts[0].top_up()); + } + + [Test] + public void umen_PositiveAmount_DecreasesBalance() + { + _inputSimulator = new StringReader("fio\n3000\n1000\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + float expected = _accounts[0].GetSum() - 1000; + _accounts[0].umen(); + + Assert.That(_accounts[0].GetSum(), Is.EqualTo(expected)); + } + + [Test] + public void umen_NegativeAmount_IncreasesBalance() + { + _inputSimulator = new StringReader("fio\n4000\n-1000\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + float expected = _accounts[0].GetSum() + 1000; + _accounts[0].umen(); + + Assert.That(_accounts[0].GetSum(), Is.EqualTo(expected)); + } + + [Test] + public void umen_ZeroAmount_LeavesBalanceUnchanged() + { + _inputSimulator = new StringReader("fio\n2500\n0\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + float original = _accounts[0].GetSum(); + _accounts[0].umen(); + + Assert.That(_accounts[0].GetSum(), Is.EqualTo(original)); + } + + [Test] + public void umen_InvalidInput_ThrowsFormatException() + { + _inputSimulator = new StringReader("fio\n2000\nabc\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + Assert.Throws(() => _accounts[0].umen()); + } + + [Test] + public void obnul_ClearsBalanceToZero() + { + _inputSimulator = new StringReader("fio\n5000\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + _accounts[0].obnul(); + + Assert.That(_accounts[0].GetSum(), Is.EqualTo(0.00)); + } + + [Test] + public void perevod_SufficientFunds_TransfersAmountCorrectly() + { + _inputSimulator = new StringReader("fio\n5000\nfio1\n3000\n2000\n1\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + _accounts[1] = new account(); + _accounts[1].otk(); + + float senderExpected = _accounts[0].GetSum() - 2000; + float recipientExpected = _accounts[1].GetSum() + 2000; + + _accounts[0].perevod(); + _accounts[1].sum += 2000; + + Assert.That(_accounts[0].GetSum(), Is.EqualTo(senderExpected)); + Assert.That(_accounts[1].GetSum(), Is.EqualTo(recipientExpected)); + } + + [Test] + public void perevod_InsufficientFunds_PrintsErrorMessage() + { + _inputSimulator = new StringReader("fio\n1000\nfio1\n5000\n2000\n1\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + _accounts[1] = new account(); + _accounts[1].otk(); + + _accounts[0].perevod(); + + string output = _outputCapture.ToString(); + Assert.That(output, Does.Contain("На счету недостаточно средств!")); + } + + [Test] + public void perevod_InvalidAmount_ThrowsFormatException() + { + _inputSimulator = new StringReader("fio\n3000\nfio1\n5000\ninvalid\n1\n"); + Console.SetIn(_inputSimulator); + + _accounts[0] = new account(); + _accounts[0].otk(); + + _accounts[1] = new account(); + _accounts[1].otk(); + + Assert.Throws(() => _accounts[0].perevod()); + } + } +} \ No newline at end of file diff --git a/TestProject1/bin/Debug/net8.0/03151235477065664064.txt b/TestProject1/bin/Debug/net8.0/03151235477065664064.txt new file mode 100644 index 0000000..f196972 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/03151235477065664064.txt @@ -0,0 +1,3 @@ +Номер счёта: 03151235477065664064 +ФИО владельца: fio1 +Баланс: 5000 р. diff --git a/TestProject1/bin/Debug/net8.0/04207462807662277288.txt b/TestProject1/bin/Debug/net8.0/04207462807662277288.txt new file mode 100644 index 0000000..5ec38f4 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/04207462807662277288.txt @@ -0,0 +1,6 @@ +Номер счёта: 04207462807662277288 +ФИО владельца: Zero Test +Баланс: 1500 р. +Номер счёта: 04207462807662277288 +ФИО владельца: Zero Test +Баланс: 1500 р. diff --git a/TestProject1/bin/Debug/net8.0/04603462010340186853.txt b/TestProject1/bin/Debug/net8.0/04603462010340186853.txt new file mode 100644 index 0000000..7272d2d --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/04603462010340186853.txt @@ -0,0 +1,6 @@ +Номер счёта: 04603462010340186853 +ФИО владельца: Negative Withdrawal +Баланс: 4000 р. +Номер счёта: 04603462010340186853 +ФИО владельца: Negative Withdrawal +Баланс: 5000 р. diff --git a/TestProject1/bin/Debug/net8.0/06330165663037231445.txt b/TestProject1/bin/Debug/net8.0/06330165663037231445.txt new file mode 100644 index 0000000..cffaab6 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/06330165663037231445.txt @@ -0,0 +1,3 @@ +Номер счёта: 06330165663037231445 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/TestProject1/bin/Debug/net8.0/06810318468816702222.txt b/TestProject1/bin/Debug/net8.0/06810318468816702222.txt new file mode 100644 index 0000000..943cb17 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/06810318468816702222.txt @@ -0,0 +1,3 @@ +Номер счёта: 06810318468816702222 +ФИО владельца: 12345 +Баланс: 2500 р. diff --git a/TestProject1/bin/Debug/net8.0/07337603772452255185.txt b/TestProject1/bin/Debug/net8.0/07337603772452255185.txt new file mode 100644 index 0000000..a356910 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/07337603772452255185.txt @@ -0,0 +1,6 @@ +Номер счёта: 07337603772452255185 +ФИО владельца: Sender +Баланс: 5000 р. +Номер счёта: 07337603772452255185 +ФИО владельца: Sender +Баланс: 3000 р. diff --git a/TestProject1/bin/Debug/net8.0/07471672354334144438.txt b/TestProject1/bin/Debug/net8.0/07471672354334144438.txt new file mode 100644 index 0000000..76ebb75 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/07471672354334144438.txt @@ -0,0 +1,6 @@ +Номер счёта: 07471672354334144438 +ФИО владельца: fio +Баланс: 3000 р. +Номер счёта: 07471672354334144438 +ФИО владельца: fio +Баланс: 2000 р. diff --git a/TestProject1/bin/Debug/net8.0/11438546583638306322.txt b/TestProject1/bin/Debug/net8.0/11438546583638306322.txt new file mode 100644 index 0000000..b2aecd7 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/11438546583638306322.txt @@ -0,0 +1,6 @@ +Номер счёта: 11438546583638306322 +ФИО владельца: fio +Баланс: 1500 р. +Номер счёта: 11438546583638306322 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/TestProject1/bin/Debug/net8.0/12710100502607755014.txt b/TestProject1/bin/Debug/net8.0/12710100502607755014.txt new file mode 100644 index 0000000..e495cb0 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/12710100502607755014.txt @@ -0,0 +1,6 @@ +Номер счёта: 12710100502607755014 +ФИО владельца: Zero Withdrawal +Баланс: 2500 р. +Номер счёта: 12710100502607755014 +ФИО владельца: Zero Withdrawal +Баланс: 2500 р. diff --git a/TestProject1/bin/Debug/net8.0/13383244113333616152.txt b/TestProject1/bin/Debug/net8.0/13383244113333616152.txt new file mode 100644 index 0000000..a606927 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/13383244113333616152.txt @@ -0,0 +1,3 @@ +Номер счёта: 13383244113333616152 +ФИО владельца: fio +Баланс: 2000 р. diff --git a/TestProject1/bin/Debug/net8.0/13720811423188243716.txt b/TestProject1/bin/Debug/net8.0/13720811423188243716.txt new file mode 100644 index 0000000..1fd2391 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/13720811423188243716.txt @@ -0,0 +1,3 @@ +Номер счёта: 13720811423188243716 +ФИО владельца: fio +Баланс: 3000 р. diff --git a/TestProject1/bin/Debug/net8.0/14003212204214225334.txt b/TestProject1/bin/Debug/net8.0/14003212204214225334.txt new file mode 100644 index 0000000..a559489 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/14003212204214225334.txt @@ -0,0 +1,3 @@ +Номер счёта: 14003212204214225334 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/TestProject1/bin/Debug/net8.0/14270217031860586631.txt b/TestProject1/bin/Debug/net8.0/14270217031860586631.txt new file mode 100644 index 0000000..35e5b70 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/14270217031860586631.txt @@ -0,0 +1,6 @@ +Номер счёта: 14270217031860586631 +ФИО владельца: fio +Баланс: 4000 р. +Номер счёта: 14270217031860586631 +ФИО владельца: fio +Баланс: 5000 р. diff --git a/TestProject1/bin/Debug/net8.0/17015805184440764160.txt b/TestProject1/bin/Debug/net8.0/17015805184440764160.txt new file mode 100644 index 0000000..16b8e19 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/17015805184440764160.txt @@ -0,0 +1,3 @@ +Номер счёта: 17015805184440764160 +ФИО владельца: 12345 +Баланс: 2500 р. diff --git a/TestProject1/bin/Debug/net8.0/17164515345362384222.txt b/TestProject1/bin/Debug/net8.0/17164515345362384222.txt new file mode 100644 index 0000000..b063bbb --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/17164515345362384222.txt @@ -0,0 +1,3 @@ +Номер счёта: 17164515345362384222 +ФИО владельца: 12345 +Баланс: 2500 р. diff --git a/TestProject1/bin/Debug/net8.0/17525163105547162502.txt b/TestProject1/bin/Debug/net8.0/17525163105547162502.txt new file mode 100644 index 0000000..7175bfa --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/17525163105547162502.txt @@ -0,0 +1,6 @@ +Номер счёта: 17525163105547162502 +ФИО владельца: Full Withdrawal +Баланс: 5000 р. +Номер счёта: 17525163105547162502 +ФИО владельца: Full Withdrawal +Баланс: 0 р. diff --git a/TestProject1/bin/Debug/net8.0/20261842202732854811.txt b/TestProject1/bin/Debug/net8.0/20261842202732854811.txt new file mode 100644 index 0000000..e660e49 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/20261842202732854811.txt @@ -0,0 +1,6 @@ +Номер счёта: 20261842202732854811 +ФИО владельца: fio +Баланс: 2000 р. +Номер счёта: 20261842202732854811 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/TestProject1/bin/Debug/net8.0/20550116713767668776.txt b/TestProject1/bin/Debug/net8.0/20550116713767668776.txt new file mode 100644 index 0000000..d1f64e8 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/20550116713767668776.txt @@ -0,0 +1,3 @@ +Номер счёта: 20550116713767668776 +ФИО владельца: fio +Баланс: 3000 р. diff --git a/TestProject1/bin/Debug/net8.0/22806651547462483663.txt b/TestProject1/bin/Debug/net8.0/22806651547462483663.txt new file mode 100644 index 0000000..82003e9 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/22806651547462483663.txt @@ -0,0 +1,3 @@ +Номер счёта: 22806651547462483663 +ФИО владельца: Poor Sender +Баланс: 1000 р. diff --git a/TestProject1/bin/Debug/net8.0/23636715435328743440.txt b/TestProject1/bin/Debug/net8.0/23636715435328743440.txt new file mode 100644 index 0000000..4e782a6 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/23636715435328743440.txt @@ -0,0 +1,3 @@ +Номер счёта: 23636715435328743440 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/TestProject1/bin/Debug/net8.0/25010266106035806010.txt b/TestProject1/bin/Debug/net8.0/25010266106035806010.txt new file mode 100644 index 0000000..1f4555b --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/25010266106035806010.txt @@ -0,0 +1,3 @@ +Номер счёта: 25010266106035806010 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/TestProject1/bin/Debug/net8.0/26040520067318416828.txt b/TestProject1/bin/Debug/net8.0/26040520067318416828.txt new file mode 100644 index 0000000..7a5c504 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/26040520067318416828.txt @@ -0,0 +1,3 @@ +Номер счёта: 26040520067318416828 +ФИО владельца: fio1 +Баланс: 3000 р. diff --git a/TestProject1/bin/Debug/net8.0/30110588752070831382.txt b/TestProject1/bin/Debug/net8.0/30110588752070831382.txt new file mode 100644 index 0000000..7e927a7 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/30110588752070831382.txt @@ -0,0 +1,3 @@ +Номер счёта: 30110588752070831382 +ФИО владельца: fio1 +Баланс: 5000 р. diff --git a/TestProject1/bin/Debug/net8.0/30677622407585284644.txt b/TestProject1/bin/Debug/net8.0/30677622407585284644.txt new file mode 100644 index 0000000..7d8aead --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/30677622407585284644.txt @@ -0,0 +1,6 @@ +Номер счёта: 30677622407585284644 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 30677622407585284644 +ФИО владельца: fio +Баланс: 1750 р. diff --git a/TestProject1/bin/Debug/net8.0/30806753720172605111.txt b/TestProject1/bin/Debug/net8.0/30806753720172605111.txt new file mode 100644 index 0000000..8a0fdef --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/30806753720172605111.txt @@ -0,0 +1,3 @@ +Номер счёта: 30806753720172605111 +ФИО владельца: fio1 +Баланс: 5000 р. diff --git a/TestProject1/bin/Debug/net8.0/33137185587653304404.txt b/TestProject1/bin/Debug/net8.0/33137185587653304404.txt new file mode 100644 index 0000000..1f5d1ec --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/33137185587653304404.txt @@ -0,0 +1,6 @@ +Номер счёта: 33137185587653304404 +ФИО владельца: fio +Баланс: 5000 р. +Номер счёта: 33137185587653304404 +ФИО владельца: fio +Баланс: 0 р. diff --git a/TestProject1/bin/Debug/net8.0/33510062866324557160.txt b/TestProject1/bin/Debug/net8.0/33510062866324557160.txt new file mode 100644 index 0000000..4af0e69 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/33510062866324557160.txt @@ -0,0 +1,3 @@ +Номер счёта: 33510062866324557160 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/TestProject1/bin/Debug/net8.0/42161546817030485316.txt b/TestProject1/bin/Debug/net8.0/42161546817030485316.txt new file mode 100644 index 0000000..0b63210 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/42161546817030485316.txt @@ -0,0 +1,3 @@ +Номер счёта: 42161546817030485316 +ФИО владельца: fio1 +Баланс: 5000 р. diff --git a/TestProject1/bin/Debug/net8.0/43264570683542032844.txt b/TestProject1/bin/Debug/net8.0/43264570683542032844.txt new file mode 100644 index 0000000..fb1c8ee --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/43264570683542032844.txt @@ -0,0 +1,3 @@ +Номер счёта: 43264570683542032844 +ФИО владельца: Rich Recipient +Баланс: 5000 р. diff --git a/TestProject1/bin/Debug/net8.0/44217283706302624771.txt b/TestProject1/bin/Debug/net8.0/44217283706302624771.txt new file mode 100644 index 0000000..f4e40eb --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/44217283706302624771.txt @@ -0,0 +1,3 @@ +Номер счёта: 44217283706302624771 +ФИО владельца: fio +Баланс: 2000 р. diff --git a/TestProject1/bin/Debug/net8.0/45173133426616307836.txt b/TestProject1/bin/Debug/net8.0/45173133426616307836.txt new file mode 100644 index 0000000..2204132 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/45173133426616307836.txt @@ -0,0 +1,6 @@ +Номер счёта: 45173133426616307836 +ФИО владельца: fio +Баланс: 4000 р. +Номер счёта: 45173133426616307836 +ФИО владельца: fio +Баланс: 5000 р. diff --git a/TestProject1/bin/Debug/net8.0/47016818268437163738.txt b/TestProject1/bin/Debug/net8.0/47016818268437163738.txt new file mode 100644 index 0000000..5647069 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/47016818268437163738.txt @@ -0,0 +1,6 @@ +Номер счёта: 47016818268437163738 +ФИО владельца: fio +Баланс: 2500 р. +Номер счёта: 47016818268437163738 +ФИО владельца: fio +Баланс: 2500 р. diff --git a/TestProject1/bin/Debug/net8.0/48646517674475331423.txt b/TestProject1/bin/Debug/net8.0/48646517674475331423.txt new file mode 100644 index 0000000..aedd270 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/48646517674475331423.txt @@ -0,0 +1,3 @@ +Номер счёта: 48646517674475331423 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/TestProject1/bin/Debug/net8.0/50188127181241611014.txt b/TestProject1/bin/Debug/net8.0/50188127181241611014.txt new file mode 100644 index 0000000..1a41ea4 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/50188127181241611014.txt @@ -0,0 +1,3 @@ +Номер счёта: 50188127181241611014 +ФИО владельца: Alice Wonderland +Баланс: 3000 р. diff --git a/TestProject1/bin/Debug/net8.0/50542353147470535027.txt b/TestProject1/bin/Debug/net8.0/50542353147470535027.txt new file mode 100644 index 0000000..5b13aa8 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/50542353147470535027.txt @@ -0,0 +1,3 @@ +Номер счёта: 50542353147470535027 +ФИО владельца: fio1 +Баланс: 2000 р. diff --git a/TestProject1/bin/Debug/net8.0/50586332743643813362.txt b/TestProject1/bin/Debug/net8.0/50586332743643813362.txt new file mode 100644 index 0000000..8b85535 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/50586332743643813362.txt @@ -0,0 +1,6 @@ +Номер счёта: 50586332743643813362 +ФИО владельца: Bob Builder +Баланс: 1000 р. +Номер счёта: 50586332743643813362 +ФИО владельца: Bob Builder +Баланс: 1750 р. diff --git a/TestProject1/bin/Debug/net8.0/55532442586382874685.txt b/TestProject1/bin/Debug/net8.0/55532442586382874685.txt new file mode 100644 index 0000000..36f19ef --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/55532442586382874685.txt @@ -0,0 +1,6 @@ +Номер счёта: 55532442586382874685 +ФИО владельца: fio +Баланс: 1000 р. +Номер счёта: 55532442586382874685 +ФИО владельца: fio +Баланс: 1750 р. diff --git a/TestProject1/bin/Debug/net8.0/62087748265301757467.txt b/TestProject1/bin/Debug/net8.0/62087748265301757467.txt new file mode 100644 index 0000000..4ac33d5 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/62087748265301757467.txt @@ -0,0 +1,3 @@ +Номер счёта: 62087748265301757467 +ФИО владельца: 12345 +Баланс: 2500 р. diff --git a/TestProject1/bin/Debug/net8.0/64736230734018645230.txt b/TestProject1/bin/Debug/net8.0/64736230734018645230.txt new file mode 100644 index 0000000..3316fe6 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/64736230734018645230.txt @@ -0,0 +1,6 @@ +Номер счёта: 64736230734018645230 +ФИО владельца: fio +Баланс: 1500 р. +Номер счёта: 64736230734018645230 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/TestProject1/bin/Debug/net8.0/65668020374755845554.txt b/TestProject1/bin/Debug/net8.0/65668020374755845554.txt new file mode 100644 index 0000000..2dd37f3 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/65668020374755845554.txt @@ -0,0 +1,6 @@ +Номер счёта: 65668020374755845554 +ФИО владельца: fio +Баланс: 2000 р. +Номер счёта: 65668020374755845554 +ФИО владельца: fio +Баланс: 1500 р. diff --git a/TestProject1/bin/Debug/net8.0/65725117722633865360.txt b/TestProject1/bin/Debug/net8.0/65725117722633865360.txt new file mode 100644 index 0000000..9074bfa --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/65725117722633865360.txt @@ -0,0 +1,3 @@ +Номер счёта: 65725117722633865360 +ФИО владельца: fio1 +Баланс: 3000 р. diff --git a/TestProject1/bin/Debug/net8.0/67685851786458253055.txt b/TestProject1/bin/Debug/net8.0/67685851786458253055.txt new file mode 100644 index 0000000..d04820b --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/67685851786458253055.txt @@ -0,0 +1,3 @@ +Номер счёта: 67685851786458253055 +ФИО владельца: Invalid Input +Баланс: 1000 р. diff --git a/TestProject1/bin/Debug/net8.0/67864262436237128014.txt b/TestProject1/bin/Debug/net8.0/67864262436237128014.txt new file mode 100644 index 0000000..5a6699b --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/67864262436237128014.txt @@ -0,0 +1,6 @@ +Номер счёта: 67864262436237128014 +ФИО владельца: fio +Баланс: 2500 р. +Номер счёта: 67864262436237128014 +ФИО владельца: fio +Баланс: 2500 р. diff --git a/TestProject1/bin/Debug/net8.0/70061446087468258137.txt b/TestProject1/bin/Debug/net8.0/70061446087468258137.txt new file mode 100644 index 0000000..cd1e415 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/70061446087468258137.txt @@ -0,0 +1,3 @@ +Номер счёта: 70061446087468258137 +ФИО владельца: Recipient +Баланс: 3000 р. diff --git a/TestProject1/bin/Debug/net8.0/70818567074201344022.txt b/TestProject1/bin/Debug/net8.0/70818567074201344022.txt new file mode 100644 index 0000000..1498e94 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/70818567074201344022.txt @@ -0,0 +1,3 @@ +Номер счёта: 70818567074201344022 +ФИО владельца: Sender +Баланс: 3000 р. diff --git a/TestProject1/bin/Debug/net8.0/71718627582070281067.txt b/TestProject1/bin/Debug/net8.0/71718627582070281067.txt new file mode 100644 index 0000000..cf20458 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/71718627582070281067.txt @@ -0,0 +1,3 @@ +Номер счёта: 71718627582070281067 +ФИО владельца: John Doe +Баланс: 1500 р. diff --git a/TestProject1/bin/Debug/net8.0/74485170860215670613.txt b/TestProject1/bin/Debug/net8.0/74485170860215670613.txt new file mode 100644 index 0000000..963dd9b --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/74485170860215670613.txt @@ -0,0 +1,3 @@ +Номер счёта: 74485170860215670613 +ФИО владельца: fio1 +Баланс: 2000 р. diff --git a/TestProject1/bin/Debug/net8.0/75057545160220814236.txt b/TestProject1/bin/Debug/net8.0/75057545160220814236.txt new file mode 100644 index 0000000..1d1aeeb --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/75057545160220814236.txt @@ -0,0 +1,6 @@ +Номер счёта: 75057545160220814236 +ФИО владельца: fio +Баланс: 5000 р. +Номер счёта: 75057545160220814236 +ФИО владельца: fio +Баланс: 3000 р. diff --git a/TestProject1/bin/Debug/net8.0/75830550626132041544.txt b/TestProject1/bin/Debug/net8.0/75830550626132041544.txt new file mode 100644 index 0000000..98b925b --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/75830550626132041544.txt @@ -0,0 +1,3 @@ +Номер счёта: 75830550626132041544 +ФИО владельца: Invalid Withdrawal +Баланс: 2000 р. diff --git a/TestProject1/bin/Debug/net8.0/77040501408840747653.txt b/TestProject1/bin/Debug/net8.0/77040501408840747653.txt new file mode 100644 index 0000000..ccb36b1 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/77040501408840747653.txt @@ -0,0 +1,3 @@ +Номер счёта: 77040501408840747653 +ФИО владельца: fio +Баланс: 3000 р. diff --git a/TestProject1/bin/Debug/net8.0/78048148134700125184.txt b/TestProject1/bin/Debug/net8.0/78048148134700125184.txt new file mode 100644 index 0000000..6ef89f8 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/78048148134700125184.txt @@ -0,0 +1,3 @@ +Номер счёта: 78048148134700125184 +ФИО владельца: fio +Баланс: 3000 р. diff --git a/TestProject1/bin/Debug/net8.0/81618026013504070362.txt b/TestProject1/bin/Debug/net8.0/81618026013504070362.txt new file mode 100644 index 0000000..18c5438 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/81618026013504070362.txt @@ -0,0 +1,6 @@ +Номер счёта: 81618026013504070362 +ФИО владельца: fio +Баланс: 3000 р. +Номер счёта: 81618026013504070362 +ФИО владельца: fio +Баланс: 2000 р. diff --git a/TestProject1/bin/Debug/net8.0/82288674836626565785.txt b/TestProject1/bin/Debug/net8.0/82288674836626565785.txt new file mode 100644 index 0000000..b5763e5 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/82288674836626565785.txt @@ -0,0 +1,6 @@ +Номер счёта: 82288674836626565785 +ФИО владельца: Withdrawal Test +Баланс: 3000 р. +Номер счёта: 82288674836626565785 +ФИО владельца: Withdrawal Test +Баланс: 2000 р. diff --git a/TestProject1/bin/Debug/net8.0/82354082324566021076.txt b/TestProject1/bin/Debug/net8.0/82354082324566021076.txt new file mode 100644 index 0000000..1b9844a --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/82354082324566021076.txt @@ -0,0 +1,6 @@ +Номер счёта: 82354082324566021076 +ФИО владельца: Test Case +Баланс: 2000 р. +Номер счёта: 82354082324566021076 +ФИО владельца: Test Case +Баланс: 1500 р. diff --git a/TestProject1/bin/Debug/net8.0/82854018263246314875.txt b/TestProject1/bin/Debug/net8.0/82854018263246314875.txt new file mode 100644 index 0000000..f3f2bf6 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/82854018263246314875.txt @@ -0,0 +1,6 @@ +Номер счёта: 82854018263246314875 +ФИО владельца: Sender +Баланс: 5000 р. +Номер счёта: 82854018263246314875 +ФИО владельца: Sender +Баланс: 3000 р. diff --git a/TestProject1/bin/Debug/net8.0/83247361071423073252.txt b/TestProject1/bin/Debug/net8.0/83247361071423073252.txt new file mode 100644 index 0000000..6838b6a --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/83247361071423073252.txt @@ -0,0 +1,3 @@ +Номер счёта: 83247361071423073252 +ФИО владельца: Jane Smith +Баланс: 2000 р. diff --git a/TestProject1/bin/Debug/net8.0/84714770150383833460.txt b/TestProject1/bin/Debug/net8.0/84714770150383833460.txt new file mode 100644 index 0000000..b1d621e --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/84714770150383833460.txt @@ -0,0 +1,6 @@ +Номер счёта: 84714770150383833460 +ФИО владельца: fio +Баланс: 5000 р. +Номер счёта: 84714770150383833460 +ФИО владельца: fio +Баланс: 3000 р. diff --git a/TestProject1/bin/Debug/net8.0/86033772765325226238.txt b/TestProject1/bin/Debug/net8.0/86033772765325226238.txt new file mode 100644 index 0000000..bc17be5 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/86033772765325226238.txt @@ -0,0 +1,3 @@ +Номер счёта: 86033772765325226238 +ФИО владельца: Recipient +Баланс: 5000 р. diff --git a/TestProject1/bin/Debug/net8.0/87188288773272165742.txt b/TestProject1/bin/Debug/net8.0/87188288773272165742.txt new file mode 100644 index 0000000..0e7649b --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/87188288773272165742.txt @@ -0,0 +1,6 @@ +Номер счёта: 87188288773272165742 +ФИО владельца: fio +Баланс: 5000 р. +Номер счёта: 87188288773272165742 +ФИО владельца: fio +Баланс: 0 р. diff --git a/TestProject1/bin/Debug/net8.0/88858624425644404756.txt b/TestProject1/bin/Debug/net8.0/88858624425644404756.txt new file mode 100644 index 0000000..183ff0c --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/88858624425644404756.txt @@ -0,0 +1,3 @@ +Номер счёта: 88858624425644404756 +ФИО владельца: Recipient +Баланс: 3000 р. diff --git a/TestProject1/bin/Debug/net8.0/CoverletSourceRootsMapping_TestProject1 b/TestProject1/bin/Debug/net8.0/CoverletSourceRootsMapping_TestProject1 new file mode 100644 index 0000000..406ec30 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/CoverletSourceRootsMapping_TestProject1 differ diff --git a/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll new file mode 100755 index 0000000..514e543 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll differ diff --git a/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll b/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll new file mode 100755 index 0000000..67c6e6f Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll differ diff --git a/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll new file mode 100755 index 0000000..09efce0 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll differ diff --git a/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll new file mode 100755 index 0000000..a18a266 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll differ diff --git a/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll b/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll new file mode 100755 index 0000000..22a03b8 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll differ diff --git a/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll new file mode 100755 index 0000000..117ba73 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ diff --git a/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll new file mode 100755 index 0000000..8213a95 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll differ diff --git a/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll new file mode 100755 index 0000000..b002d6b Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ diff --git a/TestProject1/bin/Debug/net8.0/NUnit3.TestAdapter.dll b/TestProject1/bin/Debug/net8.0/NUnit3.TestAdapter.dll new file mode 100755 index 0000000..65c8c3d Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/NUnit3.TestAdapter.dll differ diff --git a/TestProject1/bin/Debug/net8.0/NUnit3.TestAdapter.pdb b/TestProject1/bin/Debug/net8.0/NUnit3.TestAdapter.pdb new file mode 100755 index 0000000..5a3a1b8 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/NUnit3.TestAdapter.pdb differ diff --git a/TestProject1/bin/Debug/net8.0/Newtonsoft.Json.dll b/TestProject1/bin/Debug/net8.0/Newtonsoft.Json.dll new file mode 100755 index 0000000..1ffeabe Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/Newtonsoft.Json.dll differ diff --git a/TestProject1/bin/Debug/net8.0/NuGet.Frameworks.dll b/TestProject1/bin/Debug/net8.0/NuGet.Frameworks.dll new file mode 100755 index 0000000..d78c478 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/NuGet.Frameworks.dll differ diff --git a/TestProject1/bin/Debug/net8.0/TestProject1.deps.json b/TestProject1/bin/Debug/net8.0/TestProject1.deps.json new file mode 100644 index 0000000..0e9ae9e --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/TestProject1.deps.json @@ -0,0 +1,433 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "TestProject1/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", + "finskaybank": "1.0.0" + }, + "runtime": { + "TestProject1.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": {}, + "finskaybank/1.0.0": { + "runtime": { + "finskaybank.dll": { + "assemblyVersion": "1.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "TestProject1/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" + }, + "finskaybank/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/TestProject1/bin/Debug/net8.0/TestProject1.dll b/TestProject1/bin/Debug/net8.0/TestProject1.dll new file mode 100644 index 0000000..7922dca Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/TestProject1.dll differ diff --git a/TestProject1/bin/Debug/net8.0/TestProject1.pdb b/TestProject1/bin/Debug/net8.0/TestProject1.pdb new file mode 100644 index 0000000..382f17d Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/TestProject1.pdb differ diff --git a/TestProject1/bin/Debug/net8.0/TestProject1.runtimeconfig.json b/TestProject1/bin/Debug/net8.0/TestProject1.runtimeconfig.json new file mode 100644 index 0000000..becfaea --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/TestProject1.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/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..1768037 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..7310fb0 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..5af6e0e Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/TestProject1/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..86c5af1 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/TestProject1/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..d9a801b Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..2bb1465 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..d457408 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..998dc29 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/TestProject1/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..3cd7988 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/TestProject1/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..e6266e6 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..d5a8c37 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..e548e68 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..e014e2d Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/TestProject1/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..d2d34a9 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/TestProject1/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..95ba380 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/finskaybank b/TestProject1/bin/Debug/net8.0/finskaybank new file mode 100755 index 0000000..980890a Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/finskaybank differ diff --git a/TestProject1/bin/Debug/net8.0/finskaybank.deps.json b/TestProject1/bin/Debug/net8.0/finskaybank.deps.json new file mode 100644 index 0000000..5059870 --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/finskaybank.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "finskaybank/1.0.0": { + "runtime": { + "finskaybank.dll": {} + } + } + } + }, + "libraries": { + "finskaybank/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/TestProject1/bin/Debug/net8.0/finskaybank.dll b/TestProject1/bin/Debug/net8.0/finskaybank.dll new file mode 100644 index 0000000..e12af56 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/finskaybank.dll differ diff --git a/TestProject1/bin/Debug/net8.0/finskaybank.pdb b/TestProject1/bin/Debug/net8.0/finskaybank.pdb new file mode 100644 index 0000000..16dd6aa Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/finskaybank.pdb differ diff --git a/TestProject1/bin/Debug/net8.0/finskaybank.runtimeconfig.json b/TestProject1/bin/Debug/net8.0/finskaybank.runtimeconfig.json new file mode 100644 index 0000000..becfaea --- /dev/null +++ b/TestProject1/bin/Debug/net8.0/finskaybank.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/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..fbd6f21 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..dca8640 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..388c3a8 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/TestProject1/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..52ca0cc Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/TestProject1/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..a160e8c Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..5aaa36b Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..21e5f9a Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..f1b2ec1 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/TestProject1/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..95f5ff8 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/TestProject1/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..e863878 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..9021665 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..1d3b394 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..773c01f Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/TestProject1/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..dd242e2 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/TestProject1/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..a6d1507 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..e1544b1 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..b973f38 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..f35bfe7 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/TestProject1/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..eade81b Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/TestProject1/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..e6e46b6 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/nunit.engine.api.dll b/TestProject1/bin/Debug/net8.0/nunit.engine.api.dll new file mode 100755 index 0000000..ffd41b5 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/nunit.engine.api.dll differ diff --git a/TestProject1/bin/Debug/net8.0/nunit.engine.core.dll b/TestProject1/bin/Debug/net8.0/nunit.engine.core.dll new file mode 100755 index 0000000..6750450 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/nunit.engine.core.dll differ diff --git a/TestProject1/bin/Debug/net8.0/nunit.engine.dll b/TestProject1/bin/Debug/net8.0/nunit.engine.dll new file mode 100755 index 0000000..029f779 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/nunit.engine.dll differ diff --git a/TestProject1/bin/Debug/net8.0/nunit.framework.dll b/TestProject1/bin/Debug/net8.0/nunit.framework.dll new file mode 100755 index 0000000..5724561 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/nunit.framework.dll differ diff --git a/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..8d2ec40 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..fc39387 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..65efdcd Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/TestProject1/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..20e7c34 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/TestProject1/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..8fbbbf4 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..3d0d41c Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..64495e5 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..89213a1 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/TestProject1/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/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/TestProject1/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/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..aefa288 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..60fe8bb Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..d58604b Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/TestProject1/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..a60916e Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/TestProject1/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..905b81d Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/testcentric.engine.metadata.dll b/TestProject1/bin/Debug/net8.0/testcentric.engine.metadata.dll new file mode 100755 index 0000000..b982b6b Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/testcentric.engine.metadata.dll differ diff --git a/TestProject1/bin/Debug/net8.0/testhost.dll b/TestProject1/bin/Debug/net8.0/testhost.dll new file mode 100755 index 0000000..1293868 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/testhost.dll differ diff --git a/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..d065beb Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..3ce4b68 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..0ae1f0a Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/TestProject1/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..af9add9 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/TestProject1/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..7b20360 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..3a8015b Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..edf5098 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..f57eeba Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/TestProject1/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/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/TestProject1/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/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..6880d0d Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..2185e73 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..a5ba960 Binary files /dev/null and b/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/TestProject1/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/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/TestProject1/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/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/TestProject1/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/TestProject1/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..dca70aa --- /dev/null +++ b/TestProject1/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/TestProject1/obj/Debug/net8.0/TestProj.494AA513.Up2Date b/TestProject1/obj/Debug/net8.0/TestProj.494AA513.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/TestProject1/obj/Debug/net8.0/TestProject1.AssemblyInfo.cs b/TestProject1/obj/Debug/net8.0/TestProject1.AssemblyInfo.cs new file mode 100644 index 0000000..6b0d47e --- /dev/null +++ b/TestProject1/obj/Debug/net8.0/TestProject1.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("TestProject1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("TestProject1")] +[assembly: System.Reflection.AssemblyTitleAttribute("TestProject1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Создано классом WriteCodeFragment MSBuild. + diff --git a/TestProject1/obj/Debug/net8.0/TestProject1.AssemblyInfoInputs.cache b/TestProject1/obj/Debug/net8.0/TestProject1.AssemblyInfoInputs.cache new file mode 100644 index 0000000..e50b7ef --- /dev/null +++ b/TestProject1/obj/Debug/net8.0/TestProject1.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +be44bdd0d3e31afd61705a14b55cf4ed358ccbf593cd14c718aac4a5c78e444f diff --git a/TestProject1/obj/Debug/net8.0/TestProject1.GeneratedMSBuildEditorConfig.editorconfig b/TestProject1/obj/Debug/net8.0/TestProject1.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b862b63 --- /dev/null +++ b/TestProject1/obj/Debug/net8.0/TestProject1.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 = TestProject1 +build_property.ProjectDir = /Users/feitanportor/dev/C#/finskaybank/TestProject1/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/TestProject1/obj/Debug/net8.0/TestProject1.GlobalUsings.g.cs b/TestProject1/obj/Debug/net8.0/TestProject1.GlobalUsings.g.cs new file mode 100644 index 0000000..d32bf35 --- /dev/null +++ b/TestProject1/obj/Debug/net8.0/TestProject1.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/TestProject1/obj/Debug/net8.0/TestProject1.assets.cache b/TestProject1/obj/Debug/net8.0/TestProject1.assets.cache new file mode 100644 index 0000000..5304284 Binary files /dev/null and b/TestProject1/obj/Debug/net8.0/TestProject1.assets.cache differ diff --git a/TestProject1/obj/Debug/net8.0/TestProject1.csproj.AssemblyReference.cache b/TestProject1/obj/Debug/net8.0/TestProject1.csproj.AssemblyReference.cache new file mode 100644 index 0000000..ba87a9d Binary files /dev/null and b/TestProject1/obj/Debug/net8.0/TestProject1.csproj.AssemblyReference.cache differ diff --git a/TestProject1/obj/Debug/net8.0/TestProject1.csproj.CoreCompileInputs.cache b/TestProject1/obj/Debug/net8.0/TestProject1.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..8df6303 --- /dev/null +++ b/TestProject1/obj/Debug/net8.0/TestProject1.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ee0f8fada752722e45ec867a592c75a31da14275f48ff2c168cb80c45ad870f3 diff --git a/TestProject1/obj/Debug/net8.0/TestProject1.csproj.FileListAbsolute.txt b/TestProject1/obj/Debug/net8.0/TestProject1.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..84ce027 --- /dev/null +++ b/TestProject1/obj/Debug/net8.0/TestProject1.csproj.FileListAbsolute.txt @@ -0,0 +1,104 @@ +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/CoverletSourceRootsMapping_TestProject1 +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/finskaybank.deps.json +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/finskaybank.runtimeconfig.json +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/finskaybank +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/NUnit3.TestAdapter.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/NUnit3.TestAdapter.pdb +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/nunit.engine.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/nunit.engine.api.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/nunit.engine.core.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/testcentric.engine.metadata.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/TestProject1.deps.json +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/TestProject1.runtimeconfig.json +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/TestProject1.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/TestProject1.pdb +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/testhost.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/Newtonsoft.Json.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/NuGet.Frameworks.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/nunit.framework.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/finskaybank.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/bin/Debug/net8.0/finskaybank.pdb +/Users/feitanportor/dev/C#/finskaybank/TestProject1/obj/Debug/net8.0/TestProject1.csproj.AssemblyReference.cache +/Users/feitanportor/dev/C#/finskaybank/TestProject1/obj/Debug/net8.0/TestProject1.GeneratedMSBuildEditorConfig.editorconfig +/Users/feitanportor/dev/C#/finskaybank/TestProject1/obj/Debug/net8.0/TestProject1.AssemblyInfoInputs.cache +/Users/feitanportor/dev/C#/finskaybank/TestProject1/obj/Debug/net8.0/TestProject1.AssemblyInfo.cs +/Users/feitanportor/dev/C#/finskaybank/TestProject1/obj/Debug/net8.0/TestProject1.csproj.CoreCompileInputs.cache +/Users/feitanportor/dev/C#/finskaybank/TestProject1/obj/Debug/net8.0/TestProj.494AA513.Up2Date +/Users/feitanportor/dev/C#/finskaybank/TestProject1/obj/Debug/net8.0/TestProject1.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/obj/Debug/net8.0/refint/TestProject1.dll +/Users/feitanportor/dev/C#/finskaybank/TestProject1/obj/Debug/net8.0/TestProject1.pdb +/Users/feitanportor/dev/C#/finskaybank/TestProject1/obj/Debug/net8.0/TestProject1.genruntimeconfig.cache +/Users/feitanportor/dev/C#/finskaybank/TestProject1/obj/Debug/net8.0/ref/TestProject1.dll diff --git a/TestProject1/obj/Debug/net8.0/TestProject1.dll b/TestProject1/obj/Debug/net8.0/TestProject1.dll new file mode 100644 index 0000000..7922dca Binary files /dev/null and b/TestProject1/obj/Debug/net8.0/TestProject1.dll differ diff --git a/TestProject1/obj/Debug/net8.0/TestProject1.genruntimeconfig.cache b/TestProject1/obj/Debug/net8.0/TestProject1.genruntimeconfig.cache new file mode 100644 index 0000000..6e17c05 --- /dev/null +++ b/TestProject1/obj/Debug/net8.0/TestProject1.genruntimeconfig.cache @@ -0,0 +1 @@ +c95986546205bea4d6e72b0a6459eabb1564017d6b70af480db83f41db2c0f61 diff --git a/TestProject1/obj/Debug/net8.0/TestProject1.pdb b/TestProject1/obj/Debug/net8.0/TestProject1.pdb new file mode 100644 index 0000000..382f17d Binary files /dev/null and b/TestProject1/obj/Debug/net8.0/TestProject1.pdb differ diff --git a/TestProject1/obj/Debug/net8.0/ref/TestProject1.dll b/TestProject1/obj/Debug/net8.0/ref/TestProject1.dll new file mode 100644 index 0000000..bd82321 Binary files /dev/null and b/TestProject1/obj/Debug/net8.0/ref/TestProject1.dll differ diff --git a/TestProject1/obj/Debug/net8.0/refint/TestProject1.dll b/TestProject1/obj/Debug/net8.0/refint/TestProject1.dll new file mode 100644 index 0000000..bd82321 Binary files /dev/null and b/TestProject1/obj/Debug/net8.0/refint/TestProject1.dll differ diff --git a/TestProject1/obj/TestProject1.csproj.nuget.dgspec.json b/TestProject1/obj/TestProject1.csproj.nuget.dgspec.json new file mode 100644 index 0000000..8cf70f6 --- /dev/null +++ b/TestProject1/obj/TestProject1.csproj.nuget.dgspec.json @@ -0,0 +1,150 @@ +{ + "format": 1, + "restore": { + "/Users/feitanportor/dev/C#/finskaybank/TestProject1/TestProject1.csproj": {} + }, + "projects": { + "/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.csproj", + "projectName": "finskaybank", + "projectPath": "/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.csproj", + "packagesPath": "/Users/feitanportor/.nuget/packages/", + "outputPath": "/Users/feitanportor/dev/C#/finskaybank/finskaybank/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/feitanportor/.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/feitanportor/dev/C#/finskaybank/TestProject1/TestProject1.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/feitanportor/dev/C#/finskaybank/TestProject1/TestProject1.csproj", + "projectName": "TestProject1", + "projectPath": "/Users/feitanportor/dev/C#/finskaybank/TestProject1/TestProject1.csproj", + "packagesPath": "/Users/feitanportor/.nuget/packages/", + "outputPath": "/Users/feitanportor/dev/C#/finskaybank/TestProject1/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/feitanportor/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.csproj": { + "projectPath": "/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.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/TestProject1/obj/TestProject1.csproj.nuget.g.props b/TestProject1/obj/TestProject1.csproj.nuget.g.props new file mode 100644 index 0000000..0f46707 --- /dev/null +++ b/TestProject1/obj/TestProject1.csproj.nuget.g.props @@ -0,0 +1,25 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/feitanportor/.nuget/packages/ + /Users/feitanportor/.nuget/packages/ + PackageReference + 6.12.2 + + + + + + + + + + + + + /Users/feitanportor/.nuget/packages/nunit.analyzers/3.9.0 + + \ No newline at end of file diff --git a/TestProject1/obj/TestProject1.csproj.nuget.g.targets b/TestProject1/obj/TestProject1.csproj.nuget.g.targets new file mode 100644 index 0000000..e5709b7 --- /dev/null +++ b/TestProject1/obj/TestProject1.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/TestProject1/obj/project.assets.json b/TestProject1/obj/project.assets.json new file mode 100644 index 0000000..0074b7e --- /dev/null +++ b/TestProject1/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" + } + } + }, + "finskaybank/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "compile": { + "bin/placeholder/finskaybank.dll": {} + }, + "runtime": { + "bin/placeholder/finskaybank.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" + ] + }, + "finskaybank/1.0.0": { + "type": "project", + "path": "../finskaybank/finskaybank.csproj", + "msbuildProject": "../finskaybank/finskaybank.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", + "finskaybank >= 1.0.0" + ] + }, + "packageFolders": { + "/Users/feitanportor/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/feitanportor/dev/C#/finskaybank/TestProject1/TestProject1.csproj", + "projectName": "TestProject1", + "projectPath": "/Users/feitanportor/dev/C#/finskaybank/TestProject1/TestProject1.csproj", + "packagesPath": "/Users/feitanportor/.nuget/packages/", + "outputPath": "/Users/feitanportor/dev/C#/finskaybank/TestProject1/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/feitanportor/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.csproj": { + "projectPath": "/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.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/TestProject1/obj/project.nuget.cache b/TestProject1/obj/project.nuget.cache new file mode 100644 index 0000000..eadf930 --- /dev/null +++ b/TestProject1/obj/project.nuget.cache @@ -0,0 +1,22 @@ +{ + "version": 2, + "dgSpecHash": "NATnBK2Mw34=", + "success": true, + "projectFilePath": "/Users/feitanportor/dev/C#/finskaybank/TestProject1/TestProject1.csproj", + "expectedPackageFiles": [ + "/Users/feitanportor/.nuget/packages/coverlet.collector/6.0.0/coverlet.collector.6.0.0.nupkg.sha512", + "/Users/feitanportor/.nuget/packages/microsoft.codecoverage/17.8.0/microsoft.codecoverage.17.8.0.nupkg.sha512", + "/Users/feitanportor/.nuget/packages/microsoft.net.test.sdk/17.8.0/microsoft.net.test.sdk.17.8.0.nupkg.sha512", + "/Users/feitanportor/.nuget/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "/Users/feitanportor/.nuget/packages/microsoft.testplatform.objectmodel/17.8.0/microsoft.testplatform.objectmodel.17.8.0.nupkg.sha512", + "/Users/feitanportor/.nuget/packages/microsoft.testplatform.testhost/17.8.0/microsoft.testplatform.testhost.17.8.0.nupkg.sha512", + "/Users/feitanportor/.nuget/packages/netstandard.library/2.0.0/netstandard.library.2.0.0.nupkg.sha512", + "/Users/feitanportor/.nuget/packages/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg.sha512", + "/Users/feitanportor/.nuget/packages/nuget.frameworks/6.5.0/nuget.frameworks.6.5.0.nupkg.sha512", + "/Users/feitanportor/.nuget/packages/nunit/3.14.0/nunit.3.14.0.nupkg.sha512", + "/Users/feitanportor/.nuget/packages/nunit.analyzers/3.9.0/nunit.analyzers.3.9.0.nupkg.sha512", + "/Users/feitanportor/.nuget/packages/nunit3testadapter/4.5.0/nunit3testadapter.4.5.0.nupkg.sha512", + "/Users/feitanportor/.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/TestProject1/obj/project.packagespec.json b/TestProject1/obj/project.packagespec.json new file mode 100644 index 0000000..fafc877 --- /dev/null +++ b/TestProject1/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"/Users/feitanportor/dev/C#/finskaybank/TestProject1/TestProject1.csproj","projectName":"TestProject1","projectPath":"/Users/feitanportor/dev/C#/finskaybank/TestProject1/TestProject1.csproj","outputPath":"/Users/feitanportor/dev/C#/finskaybank/TestProject1/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.csproj":{"projectPath":"/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.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/TestProject1/obj/rider.project.model.nuget.info b/TestProject1/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..19ce0ae --- /dev/null +++ b/TestProject1/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17472748986275512 \ No newline at end of file diff --git a/TestProject1/obj/rider.project.restore.info b/TestProject1/obj/rider.project.restore.info new file mode 100644 index 0000000..19ce0ae --- /dev/null +++ b/TestProject1/obj/rider.project.restore.info @@ -0,0 +1 @@ +17472748986275512 \ No newline at end of file diff --git a/finskaybank.sln b/finskaybank.sln new file mode 100644 index 0000000..bbe7af0 --- /dev/null +++ b/finskaybank.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "finskaybank", "finskaybank\finskaybank.csproj", "{0C7D810C-B54D-45AB-ACC8-3BDF2A9AD9CD}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestProject1", "TestProject1\TestProject1.csproj", "{F20CBF9E-4817-4ECB-B455-94C05B144DBC}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0C7D810C-B54D-45AB-ACC8-3BDF2A9AD9CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0C7D810C-B54D-45AB-ACC8-3BDF2A9AD9CD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0C7D810C-B54D-45AB-ACC8-3BDF2A9AD9CD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0C7D810C-B54D-45AB-ACC8-3BDF2A9AD9CD}.Release|Any CPU.Build.0 = Release|Any CPU + {F20CBF9E-4817-4ECB-B455-94C05B144DBC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F20CBF9E-4817-4ECB-B455-94C05B144DBC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F20CBF9E-4817-4ECB-B455-94C05B144DBC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F20CBF9E-4817-4ECB-B455-94C05B144DBC}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/finskaybank.sln.DotSettings.user b/finskaybank.sln.DotSettings.user new file mode 100644 index 0000000..944b838 --- /dev/null +++ b/finskaybank.sln.DotSettings.user @@ -0,0 +1,6 @@ + + <SessionState ContinuousTestingMode="0" IsActive="True" Name="BankAccountOperationsTests" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session"> + <TestAncestor> + <TestId>NUnit3x::F20CBF9E-4817-4ECB-B455-94C05B144DBC::net8.0::BankAccountTests.BankAccountOperationsTests</TestId> + </TestAncestor> +</SessionState> \ No newline at end of file diff --git a/finskaybank/Program.cs b/finskaybank/Program.cs new file mode 100644 index 0000000..34a5071 --- /dev/null +++ b/finskaybank/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 finskaybank +{ + 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/finskaybank/account.cs b/finskaybank/account.cs new file mode 100644 index 0000000..a01bccc --- /dev/null +++ b/finskaybank/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 finskaybank +{ + 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/finskaybank/bin/Debug/net8.0/32128383614716234133.txt b/finskaybank/bin/Debug/net8.0/32128383614716234133.txt new file mode 100644 index 0000000..3a40f47 --- /dev/null +++ b/finskaybank/bin/Debug/net8.0/32128383614716234133.txt @@ -0,0 +1,3 @@ +Номер счёта: 32128383614716234133 +ФИО владельца: fio +Баланс: 1000 р. diff --git a/finskaybank/bin/Debug/net8.0/42211186487843605328.txt b/finskaybank/bin/Debug/net8.0/42211186487843605328.txt new file mode 100644 index 0000000..236d4bf --- /dev/null +++ b/finskaybank/bin/Debug/net8.0/42211186487843605328.txt @@ -0,0 +1,8 @@ +Номер счёта: 42211186487843605328 +ФИО владельца: fio +Номер счёта: 42211186487843605328 +ФИО владельца: fio +Баланс: 2000 р. +Номер счёта: 42211186487843605328 +ФИО владельца: fio +Баланс: 2000 р. diff --git a/finskaybank/bin/Debug/net8.0/finskaybank b/finskaybank/bin/Debug/net8.0/finskaybank new file mode 100755 index 0000000..980890a Binary files /dev/null and b/finskaybank/bin/Debug/net8.0/finskaybank differ diff --git a/finskaybank/bin/Debug/net8.0/finskaybank.deps.json b/finskaybank/bin/Debug/net8.0/finskaybank.deps.json new file mode 100644 index 0000000..5059870 --- /dev/null +++ b/finskaybank/bin/Debug/net8.0/finskaybank.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "finskaybank/1.0.0": { + "runtime": { + "finskaybank.dll": {} + } + } + } + }, + "libraries": { + "finskaybank/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/finskaybank/bin/Debug/net8.0/finskaybank.dll b/finskaybank/bin/Debug/net8.0/finskaybank.dll new file mode 100644 index 0000000..40e5729 Binary files /dev/null and b/finskaybank/bin/Debug/net8.0/finskaybank.dll differ diff --git a/finskaybank/bin/Debug/net8.0/finskaybank.pdb b/finskaybank/bin/Debug/net8.0/finskaybank.pdb new file mode 100644 index 0000000..70a6f80 Binary files /dev/null and b/finskaybank/bin/Debug/net8.0/finskaybank.pdb differ diff --git a/finskaybank/bin/Debug/net8.0/finskaybank.runtimeconfig.json b/finskaybank/bin/Debug/net8.0/finskaybank.runtimeconfig.json new file mode 100644 index 0000000..becfaea --- /dev/null +++ b/finskaybank/bin/Debug/net8.0/finskaybank.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/finskaybank/finskaybank.csproj b/finskaybank/finskaybank.csproj new file mode 100644 index 0000000..2f4fc77 --- /dev/null +++ b/finskaybank/finskaybank.csproj @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + + diff --git a/finskaybank/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/finskaybank/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..dca70aa --- /dev/null +++ b/finskaybank/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/finskaybank/obj/Debug/net8.0/apphost b/finskaybank/obj/Debug/net8.0/apphost new file mode 100755 index 0000000..980890a Binary files /dev/null and b/finskaybank/obj/Debug/net8.0/apphost differ diff --git a/finskaybank/obj/Debug/net8.0/finskaybank.AssemblyInfo.cs b/finskaybank/obj/Debug/net8.0/finskaybank.AssemblyInfo.cs new file mode 100644 index 0000000..079b11f --- /dev/null +++ b/finskaybank/obj/Debug/net8.0/finskaybank.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("finskaybank")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("finskaybank")] +[assembly: System.Reflection.AssemblyTitleAttribute("finskaybank")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Создано классом WriteCodeFragment MSBuild. + diff --git a/finskaybank/obj/Debug/net8.0/finskaybank.AssemblyInfoInputs.cache b/finskaybank/obj/Debug/net8.0/finskaybank.AssemblyInfoInputs.cache new file mode 100644 index 0000000..f06faf9 --- /dev/null +++ b/finskaybank/obj/Debug/net8.0/finskaybank.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +fb6d85e9246caa78a189ee1e137c98de0246a67009c09689124b251321308922 diff --git a/finskaybank/obj/Debug/net8.0/finskaybank.GeneratedMSBuildEditorConfig.editorconfig b/finskaybank/obj/Debug/net8.0/finskaybank.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e1e9e0d --- /dev/null +++ b/finskaybank/obj/Debug/net8.0/finskaybank.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 = finskaybank +build_property.ProjectDir = /Users/feitanportor/dev/C#/finskaybank/finskaybank/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/finskaybank/obj/Debug/net8.0/finskaybank.GlobalUsings.g.cs b/finskaybank/obj/Debug/net8.0/finskaybank.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/finskaybank/obj/Debug/net8.0/finskaybank.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/finskaybank/obj/Debug/net8.0/finskaybank.assets.cache b/finskaybank/obj/Debug/net8.0/finskaybank.assets.cache new file mode 100644 index 0000000..4163a60 Binary files /dev/null and b/finskaybank/obj/Debug/net8.0/finskaybank.assets.cache differ diff --git a/finskaybank/obj/Debug/net8.0/finskaybank.csproj.CoreCompileInputs.cache b/finskaybank/obj/Debug/net8.0/finskaybank.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..cfa0b55 --- /dev/null +++ b/finskaybank/obj/Debug/net8.0/finskaybank.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +3dad1392c05f3cdbeabf0f192f41516323a2c7903e2137d2875d158dd71d222a diff --git a/finskaybank/obj/Debug/net8.0/finskaybank.csproj.FileListAbsolute.txt b/finskaybank/obj/Debug/net8.0/finskaybank.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..03a9208 --- /dev/null +++ b/finskaybank/obj/Debug/net8.0/finskaybank.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +/Users/feitanportor/dev/C#/finskaybank/finskaybank/bin/Debug/net8.0/finskaybank +/Users/feitanportor/dev/C#/finskaybank/finskaybank/bin/Debug/net8.0/finskaybank.deps.json +/Users/feitanportor/dev/C#/finskaybank/finskaybank/bin/Debug/net8.0/finskaybank.runtimeconfig.json +/Users/feitanportor/dev/C#/finskaybank/finskaybank/bin/Debug/net8.0/finskaybank.dll +/Users/feitanportor/dev/C#/finskaybank/finskaybank/bin/Debug/net8.0/finskaybank.pdb +/Users/feitanportor/dev/C#/finskaybank/finskaybank/obj/Debug/net8.0/finskaybank.GeneratedMSBuildEditorConfig.editorconfig +/Users/feitanportor/dev/C#/finskaybank/finskaybank/obj/Debug/net8.0/finskaybank.AssemblyInfoInputs.cache +/Users/feitanportor/dev/C#/finskaybank/finskaybank/obj/Debug/net8.0/finskaybank.AssemblyInfo.cs +/Users/feitanportor/dev/C#/finskaybank/finskaybank/obj/Debug/net8.0/finskaybank.csproj.CoreCompileInputs.cache +/Users/feitanportor/dev/C#/finskaybank/finskaybank/obj/Debug/net8.0/finskaybank.dll +/Users/feitanportor/dev/C#/finskaybank/finskaybank/obj/Debug/net8.0/refint/finskaybank.dll +/Users/feitanportor/dev/C#/finskaybank/finskaybank/obj/Debug/net8.0/finskaybank.pdb +/Users/feitanportor/dev/C#/finskaybank/finskaybank/obj/Debug/net8.0/finskaybank.genruntimeconfig.cache +/Users/feitanportor/dev/C#/finskaybank/finskaybank/obj/Debug/net8.0/ref/finskaybank.dll diff --git a/finskaybank/obj/Debug/net8.0/finskaybank.dll b/finskaybank/obj/Debug/net8.0/finskaybank.dll new file mode 100644 index 0000000..40e5729 Binary files /dev/null and b/finskaybank/obj/Debug/net8.0/finskaybank.dll differ diff --git a/finskaybank/obj/Debug/net8.0/finskaybank.genruntimeconfig.cache b/finskaybank/obj/Debug/net8.0/finskaybank.genruntimeconfig.cache new file mode 100644 index 0000000..2dc5056 --- /dev/null +++ b/finskaybank/obj/Debug/net8.0/finskaybank.genruntimeconfig.cache @@ -0,0 +1 @@ +eab80ec7edbf6d1d0b108bb893443a4f58e71ba0485c37b4aa7a7dbf0e4c052c diff --git a/finskaybank/obj/Debug/net8.0/finskaybank.pdb b/finskaybank/obj/Debug/net8.0/finskaybank.pdb new file mode 100644 index 0000000..70a6f80 Binary files /dev/null and b/finskaybank/obj/Debug/net8.0/finskaybank.pdb differ diff --git a/finskaybank/obj/Debug/net8.0/ref/finskaybank.dll b/finskaybank/obj/Debug/net8.0/ref/finskaybank.dll new file mode 100644 index 0000000..e93820e Binary files /dev/null and b/finskaybank/obj/Debug/net8.0/ref/finskaybank.dll differ diff --git a/finskaybank/obj/Debug/net8.0/refint/finskaybank.dll b/finskaybank/obj/Debug/net8.0/refint/finskaybank.dll new file mode 100644 index 0000000..e93820e Binary files /dev/null and b/finskaybank/obj/Debug/net8.0/refint/finskaybank.dll differ diff --git a/finskaybank/obj/finskaybank.csproj.nuget.dgspec.json b/finskaybank/obj/finskaybank.csproj.nuget.dgspec.json new file mode 100644 index 0000000..326e4a4 --- /dev/null +++ b/finskaybank/obj/finskaybank.csproj.nuget.dgspec.json @@ -0,0 +1,66 @@ +{ + "format": 1, + "restore": { + "/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.csproj": {} + }, + "projects": { + "/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.csproj", + "projectName": "finskaybank", + "projectPath": "/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.csproj", + "packagesPath": "/Users/feitanportor/.nuget/packages/", + "outputPath": "/Users/feitanportor/dev/C#/finskaybank/finskaybank/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/feitanportor/.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/finskaybank/obj/finskaybank.csproj.nuget.g.props b/finskaybank/obj/finskaybank.csproj.nuget.g.props new file mode 100644 index 0000000..9a506e6 --- /dev/null +++ b/finskaybank/obj/finskaybank.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/feitanportor/.nuget/packages/ + /Users/feitanportor/.nuget/packages/ + PackageReference + 6.12.2 + + + + + \ No newline at end of file diff --git a/finskaybank/obj/finskaybank.csproj.nuget.g.targets b/finskaybank/obj/finskaybank.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/finskaybank/obj/finskaybank.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/finskaybank/obj/project.assets.json b/finskaybank/obj/project.assets.json new file mode 100644 index 0000000..5b09484 --- /dev/null +++ b/finskaybank/obj/project.assets.json @@ -0,0 +1,71 @@ +{ + "version": 3, + "targets": { + "net8.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0": [] + }, + "packageFolders": { + "/Users/feitanportor/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.csproj", + "projectName": "finskaybank", + "projectPath": "/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.csproj", + "packagesPath": "/Users/feitanportor/.nuget/packages/", + "outputPath": "/Users/feitanportor/dev/C#/finskaybank/finskaybank/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/feitanportor/.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/finskaybank/obj/project.nuget.cache b/finskaybank/obj/project.nuget.cache new file mode 100644 index 0000000..b2cb2a7 --- /dev/null +++ b/finskaybank/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "CtujhFsAqPo=", + "success": true, + "projectFilePath": "/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/finskaybank/obj/project.packagespec.json b/finskaybank/obj/project.packagespec.json new file mode 100644 index 0000000..2184a58 --- /dev/null +++ b/finskaybank/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.csproj","projectName":"finskaybank","projectPath":"/Users/feitanportor/dev/C#/finskaybank/finskaybank/finskaybank.csproj","outputPath":"/Users/feitanportor/dev/C#/finskaybank/finskaybank/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/finskaybank/obj/rider.project.model.nuget.info b/finskaybank/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..d0e9b7c --- /dev/null +++ b/finskaybank/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17472747672203685 \ No newline at end of file diff --git a/finskaybank/obj/rider.project.restore.info b/finskaybank/obj/rider.project.restore.info new file mode 100644 index 0000000..d0e9b7c --- /dev/null +++ b/finskaybank/obj/rider.project.restore.info @@ -0,0 +1 @@ +17472747672203685 \ No newline at end of file