diff --git a/.DS_Store b/.DS_Store
index 32f4444..21f480b 100644
Binary files a/.DS_Store and b/.DS_Store differ
diff --git a/.idea/.idea.dmeo040225/.idea/avalonia.xml b/.idea/.idea.dmeo040225/.idea/avalonia.xml
index fdabbc9..80e098d 100644
--- a/.idea/.idea.dmeo040225/.idea/avalonia.xml
+++ b/.idea/.idea.dmeo040225/.idea/avalonia.xml
@@ -12,6 +12,7 @@
+
diff --git a/.idea/.idea.dmeo040225/.idea/vcs.xml b/.idea/.idea.dmeo040225/.idea/vcs.xml
index 27f6c91..0a3791a 100644
--- a/.idea/.idea.dmeo040225/.idea/vcs.xml
+++ b/.idea/.idea.dmeo040225/.idea/vcs.xml
@@ -1,6 +1,7 @@
+
\ No newline at end of file
diff --git a/ClassLibrary.Test/.idea/.idea.ClassLibrary.dir/.idea/.gitignore b/ClassLibrary.Test/.idea/.idea.ClassLibrary.dir/.idea/.gitignore
new file mode 100644
index 0000000..4318ee7
--- /dev/null
+++ b/ClassLibrary.Test/.idea/.idea.ClassLibrary.dir/.idea/.gitignore
@@ -0,0 +1,13 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Rider ignored files
+/contentModel.xml
+/.idea.ClassLibrary.iml
+/modules.xml
+/projectSettingsUpdater.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/ClassLibrary.Test/.idea/.idea.ClassLibrary.dir/.idea/.name b/ClassLibrary.Test/.idea/.idea.ClassLibrary.dir/.idea/.name
new file mode 100644
index 0000000..e94939d
--- /dev/null
+++ b/ClassLibrary.Test/.idea/.idea.ClassLibrary.dir/.idea/.name
@@ -0,0 +1 @@
+ClassLibrary
\ No newline at end of file
diff --git a/ClassLibrary.Test/.idea/.idea.ClassLibrary.dir/.idea/encodings.xml b/ClassLibrary.Test/.idea/.idea.ClassLibrary.dir/.idea/encodings.xml
new file mode 100644
index 0000000..df87cf9
--- /dev/null
+++ b/ClassLibrary.Test/.idea/.idea.ClassLibrary.dir/.idea/encodings.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/ClassLibrary.Test/.idea/.idea.ClassLibrary.dir/.idea/indexLayout.xml b/ClassLibrary.Test/.idea/.idea.ClassLibrary.dir/.idea/indexLayout.xml
new file mode 100644
index 0000000..7b08163
--- /dev/null
+++ b/ClassLibrary.Test/.idea/.idea.ClassLibrary.dir/.idea/indexLayout.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ClassLibrary.Test/.idea/.idea.ClassLibrary.dir/.idea/vcs.xml b/ClassLibrary.Test/.idea/.idea.ClassLibrary.dir/.idea/vcs.xml
new file mode 100644
index 0000000..6c0b863
--- /dev/null
+++ b/ClassLibrary.Test/.idea/.idea.ClassLibrary.dir/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ClassLibrary.Test/ClassLibrary.Test.csproj b/ClassLibrary.Test/ClassLibrary.Test.csproj
new file mode 100644
index 0000000..990c0c6
--- /dev/null
+++ b/ClassLibrary.Test/ClassLibrary.Test.csproj
@@ -0,0 +1,29 @@
+
+
+
+ net8.0
+ enable
+ enable
+
+ false
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ClassLibrary.Test/UnitTest1.cs b/ClassLibrary.Test/UnitTest1.cs
new file mode 100644
index 0000000..6416842
--- /dev/null
+++ b/ClassLibrary.Test/UnitTest1.cs
@@ -0,0 +1,120 @@
+using System;
+using NUnit.Framework;
+
+namespace ClassLibrary.Test
+{
+ public class Tests
+ {
+ [TestCaseSource(nameof(TestData))]
+ public void DataAssertTest(
+ TimeSpan[] startTimes,
+ int[] durations,
+ TimeSpan beginWorkingTime,
+ TimeSpan endWorkingTime,
+ int consultationTime,
+ string[] expected)
+ {
+ var result = Calculations.AvailablePeriods(startTimes, durations, beginWorkingTime, endWorkingTime, consultationTime);
+
+ Assert.AreEqual(expected.Length, result.Length);
+ for (int i = 0; i < expected.Length; i++)
+ {
+ Assert.AreEqual(expected[i], result[i]);
+ }
+ }
+
+ public static object[] TestData = new object[]
+ {
+ new object[]
+ {
+ new TimeSpan[] { TimeSpan.FromHours(10) },
+ new int[] { 60 },
+ TimeSpan.FromHours(9),
+ TimeSpan.FromHours(12),
+ 30,
+ new string[] { "09:00-09:30", "09:30-10:00", "11:00-11:30", "11:30-12:00" }
+ },
+ new object[]
+ {
+ new TimeSpan[] { },
+ new int[] { },
+ TimeSpan.FromHours(8),
+ TimeSpan.FromHours(9),
+ 20,
+ new string[] { "08:00-08:20", "08:20-08:40", "08:40-09:00" }
+ },
+ new object[]
+ {
+ new TimeSpan[] { TimeSpan.FromHours(9) },
+ new int[] { 480 },
+ TimeSpan.FromHours(9),
+ TimeSpan.FromHours(17),
+ 30,
+ new string[] { }
+ },
+ new object[]
+ {
+ new TimeSpan[] { TimeSpan.FromHours(10), TimeSpan.FromHours(12) },
+ new int[] { 60, 60 },
+ TimeSpan.FromHours(9),
+ TimeSpan.FromHours(14),
+ 30,
+ new string[] { "09:00-09:30", "09:30-10:00", "11:00-11:30", "11:30-12:00", "13:00-13:30", "13:30-14:00" }
+ },
+ new object[]
+ {
+ new TimeSpan[] { },
+ new int[] { },
+ TimeSpan.FromHours(9),
+ TimeSpan.FromHours(10),
+ 15,
+ new string[] { "09:00-09:15", "09:15-09:30", "09:30-09:45", "09:45-10:00" }
+ },
+ new object[]
+ {
+ new TimeSpan[] { TimeSpan.FromHours(10) },
+ new int[] { 60 },
+ TimeSpan.FromHours(15),
+ TimeSpan.FromHours(17),
+ 30,
+ new string[] { "15:00-15:30", "15:30-16:00", "16:00-16:30", "16:30-17:00" }
+ },
+ new object[]
+ {
+ new TimeSpan[] { },
+ new int[] { },
+ TimeSpan.FromHours(9),
+ TimeSpan.FromHours(12),
+ 45,
+ new string[] { "09:00-09:45", "09:45-10:30", "10:30-11:15", "11:15-12:00" }
+ },
+ new object[]
+ {
+ new TimeSpan[] { },
+ new int[] { },
+ TimeSpan.FromHours(8),
+ TimeSpan.FromHours(11),
+ 20,
+ new string[] { "08:00-08:20", "08:20-08:40", "08:40-09:00", "09:00-09:20", "09:20-09:40", "09:40-10:00", "10:00-10:20", "10:20-10:40", "10:40-11:00" }
+ },
+ new object[]
+ {
+ new TimeSpan[] { },
+ new int[] { },
+ TimeSpan.FromHours(9),
+ TimeSpan.FromHours(10),
+ 30,
+ new string[] { "09:00-09:30", "09:30-10:00" }
+ },
+ new object[]
+ {
+ new TimeSpan[] { TimeSpan.FromHours(10) },
+ new int[] { 60 },
+ TimeSpan.FromHours(9),
+ TimeSpan.FromHours(12),
+ 20,
+ new string[] { "09:00-09:20", "09:20-09:40", "09:40-10:00", "11:00-11:20", "11:20-11:40", "11:40-12:00" }
+ }
+ };
+ }
+}
\ No newline at end of file
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.deps.json b/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.deps.json
new file mode 100644
index 0000000..c704ba7
--- /dev/null
+++ b/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.deps.json
@@ -0,0 +1,647 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {
+ "ClassLibrary.Test/1.0.0": {
+ "dependencies": {
+ "ClassLibrary": "1.0.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"
+ },
+ "runtime": {
+ "ClassLibrary.Test.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/5.0.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": "5.0.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": {},
+ "OxyPlot.Core/2.2.0": {
+ "runtime": {
+ "lib/net8.0/OxyPlot.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.0"
+ }
+ }
+ },
+ "OxyPlot.ImageSharp/2.2.0": {
+ "dependencies": {
+ "OxyPlot.Core": "2.2.0",
+ "SixLabors.ImageSharp": "2.1.9",
+ "SixLabors.ImageSharp.Drawing": "1.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/OxyPlot.ImageSharp.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.0"
+ }
+ }
+ },
+ "SixLabors.Fonts/2.1.2": {
+ "runtime": {
+ "lib/net6.0/SixLabors.Fonts.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.1.2.0"
+ }
+ }
+ },
+ "SixLabors.ImageSharp/2.1.9": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Text.Encoding.CodePages": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.1.9.0"
+ }
+ }
+ },
+ "SixLabors.ImageSharp.Drawing/1.0.0": {
+ "dependencies": {
+ "SixLabors.Fonts": "2.1.2",
+ "SixLabors.ImageSharp": "2.1.9"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ },
+ "System.Reflection.Metadata/1.6.0": {},
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {},
+ "System.Text.Encoding.CodePages/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0"
+ }
+ },
+ "xunit/2.9.3": {
+ "dependencies": {
+ "xunit.analyzers": "1.18.0",
+ "xunit.assert": "2.9.3",
+ "xunit.core": "2.9.3"
+ }
+ },
+ "xunit.abstractions/2.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/xunit.abstractions.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "xunit.analyzers/1.18.0": {},
+ "xunit.assert/2.9.3": {
+ "runtime": {
+ "lib/net6.0/xunit.assert.dll": {
+ "assemblyVersion": "2.9.3.0",
+ "fileVersion": "2.9.3.0"
+ }
+ }
+ },
+ "xunit.core/2.9.3": {
+ "dependencies": {
+ "xunit.extensibility.core": "2.9.3",
+ "xunit.extensibility.execution": "2.9.3"
+ }
+ },
+ "xunit.extensibility.core/2.9.3": {
+ "dependencies": {
+ "xunit.abstractions": "2.0.3"
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.core.dll": {
+ "assemblyVersion": "2.9.3.0",
+ "fileVersion": "2.9.3.0"
+ }
+ }
+ },
+ "xunit.extensibility.execution/2.9.3": {
+ "dependencies": {
+ "xunit.extensibility.core": "2.9.3"
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.execution.dotnet.dll": {
+ "assemblyVersion": "2.9.3.0",
+ "fileVersion": "2.9.3.0"
+ }
+ }
+ },
+ "ClassLibrary/1.0.0": {
+ "dependencies": {
+ "OxyPlot.ImageSharp": "2.2.0",
+ "SixLabors.Fonts": "2.1.2",
+ "xunit": "2.9.3"
+ },
+ "runtime": {
+ "ClassLibrary.dll": {
+ "assemblyVersion": "1.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "ClassLibrary.Test/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/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
+ "path": "microsoft.netcore.platforms/5.0.0",
+ "hashPath": "microsoft.netcore.platforms.5.0.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"
+ },
+ "OxyPlot.Core/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QhXNdXR5FPpro/VoLx3BOp6AhQo7YrbfmWEZ9cgY+pnYM7RYORZjnu+aDMA8ka9A1r8hLkX//NbCPZNUv+l8qA==",
+ "path": "oxyplot.core/2.2.0",
+ "hashPath": "oxyplot.core.2.2.0.nupkg.sha512"
+ },
+ "OxyPlot.ImageSharp/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-W/L5TMvYPC7LS4TQd/DVq4lzeWovRXHwe0e+Sq+NDOG/waLcUYOyReP6cinDVPckJF3iaXEPyMqHwxtpup61OA==",
+ "path": "oxyplot.imagesharp/2.2.0",
+ "hashPath": "oxyplot.imagesharp.2.2.0.nupkg.sha512"
+ },
+ "SixLabors.Fonts/2.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UGl99i9hCJ4MXLaoGw2aq8nklIL/31QcRU7oqQza4AqCg54XojtIIRczj9aO7zJPDGF+XoA3yJ6X1NOfhZOrWA==",
+ "path": "sixlabors.fonts/2.1.2",
+ "hashPath": "sixlabors.fonts.2.1.2.nupkg.sha512"
+ },
+ "SixLabors.ImageSharp/2.1.9": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VcjfKbOExie3RgZGrQL1jJMI4iZ3J9B6ifDo2QpDVJUYhTZKVcKnBhpNOHqbvNjHgadAks1jzhRjB7OZet1PJA==",
+ "path": "sixlabors.imagesharp/2.1.9",
+ "hashPath": "sixlabors.imagesharp.2.1.9.nupkg.sha512"
+ },
+ "SixLabors.ImageSharp.Drawing/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-02z/+BESLiV/dn8NV+9+DkK9X6R2UmcwR8AVytupvwKa0EPVqYyx8zh+PpksqSjpibDVnVMXlq3OaMCDeDrEug==",
+ "path": "sixlabors.imagesharp.drawing/1.0.0",
+ "hashPath": "sixlabors.imagesharp.drawing.1.0.0.nupkg.sha512"
+ },
+ "System.Reflection.Metadata/1.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
+ "path": "system.reflection.metadata/1.6.0",
+ "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
+ "path": "system.runtime.compilerservices.unsafe/5.0.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
+ },
+ "System.Text.Encoding.CodePages/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
+ "path": "system.text.encoding.codepages/5.0.0",
+ "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512"
+ },
+ "xunit/2.9.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==",
+ "path": "xunit/2.9.3",
+ "hashPath": "xunit.2.9.3.nupkg.sha512"
+ },
+ "xunit.abstractions/2.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==",
+ "path": "xunit.abstractions/2.0.3",
+ "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512"
+ },
+ "xunit.analyzers/1.18.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==",
+ "path": "xunit.analyzers/1.18.0",
+ "hashPath": "xunit.analyzers.1.18.0.nupkg.sha512"
+ },
+ "xunit.assert/2.9.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==",
+ "path": "xunit.assert/2.9.3",
+ "hashPath": "xunit.assert.2.9.3.nupkg.sha512"
+ },
+ "xunit.core/2.9.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==",
+ "path": "xunit.core/2.9.3",
+ "hashPath": "xunit.core.2.9.3.nupkg.sha512"
+ },
+ "xunit.extensibility.core/2.9.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==",
+ "path": "xunit.extensibility.core/2.9.3",
+ "hashPath": "xunit.extensibility.core.2.9.3.nupkg.sha512"
+ },
+ "xunit.extensibility.execution/2.9.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==",
+ "path": "xunit.extensibility.execution/2.9.3",
+ "hashPath": "xunit.extensibility.execution.2.9.3.nupkg.sha512"
+ },
+ "ClassLibrary/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.dll b/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.dll
new file mode 100644
index 0000000..56f4ecf
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.pdb b/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.pdb
new file mode 100644
index 0000000..4835a61
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.pdb differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.runtimeconfig.json b/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.runtimeconfig.json
new file mode 100644
index 0000000..becfaea
--- /dev/null
+++ b/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.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/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.dll b/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.dll
new file mode 100644
index 0000000..1145af9
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.pdb b/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.pdb
new file mode 100644
index 0000000..6e6b20d
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.pdb differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/CoverletSourceRootsMapping_ClassLibrary.Test b/ClassLibrary.Test/bin/Debug/net8.0/CoverletSourceRootsMapping_ClassLibrary.Test
new file mode 100644
index 0000000..25c7863
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/CoverletSourceRootsMapping_ClassLibrary.Test differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll
new file mode 100755
index 0000000..514e543
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll
new file mode 100755
index 0000000..67c6e6f
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll
new file mode 100755
index 0000000..09efce0
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll
new file mode 100755
index 0000000..a18a266
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll
new file mode 100755
index 0000000..22a03b8
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll
new file mode 100755
index 0000000..117ba73
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll
new file mode 100755
index 0000000..8213a95
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
new file mode 100755
index 0000000..b002d6b
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/NUnit3.TestAdapter.dll b/ClassLibrary.Test/bin/Debug/net8.0/NUnit3.TestAdapter.dll
new file mode 100755
index 0000000..65c8c3d
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/NUnit3.TestAdapter.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/NUnit3.TestAdapter.pdb b/ClassLibrary.Test/bin/Debug/net8.0/NUnit3.TestAdapter.pdb
new file mode 100755
index 0000000..5a3a1b8
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/NUnit3.TestAdapter.pdb differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/Newtonsoft.Json.dll b/ClassLibrary.Test/bin/Debug/net8.0/Newtonsoft.Json.dll
new file mode 100755
index 0000000..1ffeabe
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/Newtonsoft.Json.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/NuGet.Frameworks.dll b/ClassLibrary.Test/bin/Debug/net8.0/NuGet.Frameworks.dll
new file mode 100755
index 0000000..d78c478
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/NuGet.Frameworks.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/OxyPlot.ImageSharp.dll b/ClassLibrary.Test/bin/Debug/net8.0/OxyPlot.ImageSharp.dll
new file mode 100755
index 0000000..e7c4125
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/OxyPlot.ImageSharp.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/OxyPlot.dll b/ClassLibrary.Test/bin/Debug/net8.0/OxyPlot.dll
new file mode 100755
index 0000000..c652fdb
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/OxyPlot.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/SixLabors.Fonts.dll b/ClassLibrary.Test/bin/Debug/net8.0/SixLabors.Fonts.dll
new file mode 100755
index 0000000..8ca92b5
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/SixLabors.Fonts.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/SixLabors.ImageSharp.Drawing.dll b/ClassLibrary.Test/bin/Debug/net8.0/SixLabors.ImageSharp.Drawing.dll
new file mode 100755
index 0000000..b6ae9d1
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/SixLabors.ImageSharp.Drawing.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/SixLabors.ImageSharp.dll b/ClassLibrary.Test/bin/Debug/net8.0/SixLabors.ImageSharp.dll
new file mode 100755
index 0000000..ee3ad5f
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/SixLabors.ImageSharp.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..1768037
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..7310fb0
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..5af6e0e
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..86c5af1
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..d9a801b
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..2bb1465
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..d457408
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..998dc29
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..3cd7988
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..e6266e6
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..d5a8c37
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..e548e68
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..e014e2d
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..d2d34a9
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..95ba380
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..fbd6f21
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..dca8640
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..388c3a8
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..52ca0cc
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..a160e8c
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..5aaa36b
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..21e5f9a
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..f1b2ec1
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..95f5ff8
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..e863878
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..9021665
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..1d3b394
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..773c01f
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..dd242e2
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..a6d1507
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..e1544b1
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..b973f38
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..f35bfe7
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..eade81b
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..e6e46b6
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/nunit.engine.api.dll b/ClassLibrary.Test/bin/Debug/net8.0/nunit.engine.api.dll
new file mode 100755
index 0000000..ffd41b5
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/nunit.engine.api.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/nunit.engine.core.dll b/ClassLibrary.Test/bin/Debug/net8.0/nunit.engine.core.dll
new file mode 100755
index 0000000..6750450
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/nunit.engine.core.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/nunit.engine.dll b/ClassLibrary.Test/bin/Debug/net8.0/nunit.engine.dll
new file mode 100755
index 0000000..029f779
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/nunit.engine.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/nunit.framework.dll b/ClassLibrary.Test/bin/Debug/net8.0/nunit.framework.dll
new file mode 100755
index 0000000..5724561
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/nunit.framework.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..8d2ec40
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..fc39387
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..65efdcd
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..20e7c34
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..8fbbbf4
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..3d0d41c
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..64495e5
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..89213a1
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ClassLibrary.Test/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/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ClassLibrary.Test/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/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..aefa288
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..60fe8bb
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..d58604b
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..a60916e
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..905b81d
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/testcentric.engine.metadata.dll b/ClassLibrary.Test/bin/Debug/net8.0/testcentric.engine.metadata.dll
new file mode 100755
index 0000000..b982b6b
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/testcentric.engine.metadata.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/testhost.dll b/ClassLibrary.Test/bin/Debug/net8.0/testhost.dll
new file mode 100755
index 0000000..1293868
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/testhost.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..d065beb
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..3ce4b68
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..0ae1f0a
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..af9add9
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..7b20360
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/xunit.abstractions.dll b/ClassLibrary.Test/bin/Debug/net8.0/xunit.abstractions.dll
new file mode 100755
index 0000000..d1e90bf
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/xunit.abstractions.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/xunit.assert.dll b/ClassLibrary.Test/bin/Debug/net8.0/xunit.assert.dll
new file mode 100755
index 0000000..99bc34c
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/xunit.assert.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/xunit.core.dll b/ClassLibrary.Test/bin/Debug/net8.0/xunit.core.dll
new file mode 100755
index 0000000..d56aa16
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/xunit.core.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/xunit.execution.dotnet.dll b/ClassLibrary.Test/bin/Debug/net8.0/xunit.execution.dotnet.dll
new file mode 100755
index 0000000..7a1cc87
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/xunit.execution.dotnet.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..3a8015b
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..edf5098
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..f57eeba
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ClassLibrary.Test/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/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ClassLibrary.Test/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/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..6880d0d
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..2185e73
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..a5ba960
Binary files /dev/null and b/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/ClassLibrary.Test/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/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/ClassLibrary.Test/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/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/ClassLibrary.Test/obj/ClassLibrary.Test.csproj.nuget.dgspec.json b/ClassLibrary.Test/obj/ClassLibrary.Test.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..c23593e
--- /dev/null
+++ b/ClassLibrary.Test/obj/ClassLibrary.Test.csproj.nuget.dgspec.json
@@ -0,0 +1,164 @@
+{
+ "format": 1,
+ "restore": {
+ "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/ClassLibrary.Test.csproj": {}
+ },
+ "projects": {
+ "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/ClassLibrary.Test.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/ClassLibrary.Test.csproj",
+ "projectName": "ClassLibrary.Test",
+ "projectPath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/ClassLibrary.Test.csproj",
+ "packagesPath": "/Users/rinchi/.nuget/packages/",
+ "outputPath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/Users/rinchi/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {
+ "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj": {
+ "projectPath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.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"
+ }
+ }
+ },
+ "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj",
+ "projectName": "ClassLibrary",
+ "projectPath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj",
+ "packagesPath": "/Users/rinchi/.nuget/packages/",
+ "outputPath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/Users/rinchi/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ }
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "dependencies": {
+ "OxyPlot.ImageSharp": {
+ "target": "Package",
+ "version": "[2.2.0, )"
+ },
+ "SixLabors.Fonts": {
+ "target": "Package",
+ "version": "[2.1.2, )"
+ },
+ "xunit": {
+ "target": "Package",
+ "version": "[2.9.3, )"
+ }
+ },
+ "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/ClassLibrary.Test/obj/ClassLibrary.Test.csproj.nuget.g.props b/ClassLibrary.Test/obj/ClassLibrary.Test.csproj.nuget.g.props
new file mode 100644
index 0000000..9137d91
--- /dev/null
+++ b/ClassLibrary.Test/obj/ClassLibrary.Test.csproj.nuget.g.props
@@ -0,0 +1,26 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ /Users/rinchi/.nuget/packages/
+ /Users/rinchi/.nuget/packages/
+ PackageReference
+ 6.12.0
+
+
+
+
+
+
+
+
+
+
+
+
+ /Users/rinchi/.nuget/packages/xunit.analyzers/1.18.0
+ /Users/rinchi/.nuget/packages/nunit.analyzers/3.9.0
+
+
\ No newline at end of file
diff --git a/ClassLibrary.Test/obj/ClassLibrary.Test.csproj.nuget.g.targets b/ClassLibrary.Test/obj/ClassLibrary.Test.csproj.nuget.g.targets
new file mode 100644
index 0000000..e5709b7
--- /dev/null
+++ b/ClassLibrary.Test/obj/ClassLibrary.Test.csproj.nuget.g.targets
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ClassLibrary.Test/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/ClassLibrary.Test/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..dca70aa
--- /dev/null
+++ b/ClassLibrary.Test/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/ClassLibrary.Test/obj/Debug/net8.0/ClassLib.700DA2F6.Up2Date b/ClassLibrary.Test/obj/Debug/net8.0/ClassLib.700DA2F6.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.AssemblyInfo.cs b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.AssemblyInfo.cs
new file mode 100644
index 0000000..89b07ca
--- /dev/null
+++ b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.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("ClassLibrary.Test")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c943086e791084356af391570f707e630874e6e1")]
+[assembly: System.Reflection.AssemblyProductAttribute("ClassLibrary.Test")]
+[assembly: System.Reflection.AssemblyTitleAttribute("ClassLibrary.Test")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.AssemblyInfoInputs.cache b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..38b8f4b
--- /dev/null
+++ b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+ba21bc106a9651565e37ad501185896a1ea0c037bdcd6f0fa4abc1e76865a540
diff --git a/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.GeneratedMSBuildEditorConfig.editorconfig b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..db0371b
--- /dev/null
+++ b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.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 = ClassLibrary.Test
+build_property.ProjectDir = /Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.GlobalUsings.g.cs b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.GlobalUsings.g.cs
new file mode 100644
index 0000000..d32bf35
--- /dev/null
+++ b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.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/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.assets.cache b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.assets.cache
new file mode 100644
index 0000000..2bc3b94
Binary files /dev/null and b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.assets.cache differ
diff --git a/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.csproj.AssemblyReference.cache b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..b76023b
Binary files /dev/null and b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.csproj.AssemblyReference.cache differ
diff --git a/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.csproj.CoreCompileInputs.cache b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..e0dc915
--- /dev/null
+++ b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+bd956313a19aabd49a61976ccab080865508ebb4a0e2e598f15d0b2292f4a322
diff --git a/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.csproj.FileListAbsolute.txt b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..67f3694
--- /dev/null
+++ b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.csproj.FileListAbsolute.txt
@@ -0,0 +1,110 @@
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/NUnit3.TestAdapter.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/NUnit3.TestAdapter.pdb
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/nunit.engine.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/nunit.engine.api.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/nunit.engine.core.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/testcentric.engine.metadata.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.deps.json
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.runtimeconfig.json
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.Test.pdb
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/testhost.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/Newtonsoft.Json.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/NuGet.Frameworks.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/nunit.framework.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/xunit.abstractions.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/xunit.assert.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/xunit.core.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/xunit.execution.dotnet.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.csproj.AssemblyReference.cache
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.GeneratedMSBuildEditorConfig.editorconfig
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.AssemblyInfoInputs.cache
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.AssemblyInfo.cs
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.csproj.CoreCompileInputs.cache
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/obj/Debug/net8.0/ClassLib.700DA2F6.Up2Date
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/obj/Debug/net8.0/refint/ClassLibrary.Test.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.pdb
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.genruntimeconfig.cache
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/obj/Debug/net8.0/ref/ClassLibrary.Test.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/CoverletSourceRootsMapping_ClassLibrary.Test
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/OxyPlot.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/OxyPlot.ImageSharp.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/SixLabors.Fonts.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/SixLabors.ImageSharp.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/SixLabors.ImageSharp.Drawing.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/bin/Debug/net8.0/ClassLibrary.pdb
diff --git a/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.dll b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.dll
new file mode 100644
index 0000000..56f4ecf
Binary files /dev/null and b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.dll differ
diff --git a/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.genruntimeconfig.cache b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.genruntimeconfig.cache
new file mode 100644
index 0000000..4162b98
--- /dev/null
+++ b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.genruntimeconfig.cache
@@ -0,0 +1 @@
+61951fd709dab750017fc9d54ffc84c151699b21b1923a39b531dec34d5ade30
diff --git a/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.pdb b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.pdb
new file mode 100644
index 0000000..4835a61
Binary files /dev/null and b/ClassLibrary.Test/obj/Debug/net8.0/ClassLibrary.Test.pdb differ
diff --git a/ClassLibrary.Test/obj/Debug/net8.0/ref/ClassLibrary.Test.dll b/ClassLibrary.Test/obj/Debug/net8.0/ref/ClassLibrary.Test.dll
new file mode 100644
index 0000000..f9b3d64
Binary files /dev/null and b/ClassLibrary.Test/obj/Debug/net8.0/ref/ClassLibrary.Test.dll differ
diff --git a/ClassLibrary.Test/obj/Debug/net8.0/refint/ClassLibrary.Test.dll b/ClassLibrary.Test/obj/Debug/net8.0/refint/ClassLibrary.Test.dll
new file mode 100644
index 0000000..f9b3d64
Binary files /dev/null and b/ClassLibrary.Test/obj/Debug/net8.0/refint/ClassLibrary.Test.dll differ
diff --git a/ClassLibrary.Test/obj/project.assets.json b/ClassLibrary.Test/obj/project.assets.json
new file mode 100644
index 0000000..1ae52fa
--- /dev/null
+++ b/ClassLibrary.Test/obj/project.assets.json
@@ -0,0 +1,1577 @@
+{
+ "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/5.0.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": {}
+ }
+ },
+ "OxyPlot.Core/2.2.0": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/OxyPlot.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/OxyPlot.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "OxyPlot.ImageSharp/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "OxyPlot.Core": "2.2.0",
+ "SixLabors.ImageSharp": "2.1.9",
+ "SixLabors.ImageSharp.Drawing": "1.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/OxyPlot.ImageSharp.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/OxyPlot.ImageSharp.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "SixLabors.Fonts/2.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/SixLabors.Fonts.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/SixLabors.Fonts.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "SixLabors.ImageSharp/2.1.9": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Text.Encoding.CodePages": "5.0.0"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "SixLabors.ImageSharp.Drawing/1.0.0": {
+ "type": "package",
+ "dependencies": {
+ "SixLabors.Fonts": "1.0.0",
+ "SixLabors.ImageSharp": "2.1.5"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "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"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Text.Encoding.CodePages/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "xunit/2.9.3": {
+ "type": "package",
+ "dependencies": {
+ "xunit.analyzers": "1.18.0",
+ "xunit.assert": "2.9.3",
+ "xunit.core": "[2.9.3]"
+ }
+ },
+ "xunit.abstractions/2.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/xunit.abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/xunit.abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "xunit.analyzers/1.18.0": {
+ "type": "package"
+ },
+ "xunit.assert/2.9.3": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/xunit.assert.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/xunit.assert.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "xunit.core/2.9.3": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.9.3]",
+ "xunit.extensibility.execution": "[2.9.3]"
+ },
+ "build": {
+ "build/_._": {}
+ },
+ "buildMultiTargeting": {
+ "buildMultiTargeting/_._": {}
+ }
+ },
+ "xunit.extensibility.core/2.9.3": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "2.0.3"
+ },
+ "compile": {
+ "lib/netstandard1.1/xunit.core.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.core.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "xunit.extensibility.execution/2.9.3": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.9.3]"
+ },
+ "compile": {
+ "lib/netstandard1.1/xunit.execution.dotnet.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.execution.dotnet.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "ClassLibrary/1.0.0": {
+ "type": "project",
+ "framework": ".NETCoreApp,Version=v8.0",
+ "dependencies": {
+ "OxyPlot.ImageSharp": "2.2.0",
+ "SixLabors.Fonts": "2.1.2",
+ "xunit": "2.9.3"
+ },
+ "compile": {
+ "bin/placeholder/ClassLibrary.dll": {}
+ },
+ "runtime": {
+ "bin/placeholder/ClassLibrary.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/5.0.0": {
+ "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "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"
+ ]
+ },
+ "OxyPlot.Core/2.2.0": {
+ "sha512": "QhXNdXR5FPpro/VoLx3BOp6AhQo7YrbfmWEZ9cgY+pnYM7RYORZjnu+aDMA8ka9A1r8hLkX//NbCPZNUv+l8qA==",
+ "type": "package",
+ "path": "oxyplot.core/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "OxyPlot_128.png",
+ "README.md",
+ "lib/net462/OxyPlot.dll",
+ "lib/net462/OxyPlot.xml",
+ "lib/net6.0/OxyPlot.dll",
+ "lib/net6.0/OxyPlot.xml",
+ "lib/net8.0/OxyPlot.dll",
+ "lib/net8.0/OxyPlot.xml",
+ "lib/netstandard2.0/OxyPlot.dll",
+ "lib/netstandard2.0/OxyPlot.xml",
+ "oxyplot.core.2.2.0.nupkg.sha512",
+ "oxyplot.core.nuspec"
+ ]
+ },
+ "OxyPlot.ImageSharp/2.2.0": {
+ "sha512": "W/L5TMvYPC7LS4TQd/DVq4lzeWovRXHwe0e+Sq+NDOG/waLcUYOyReP6cinDVPckJF3iaXEPyMqHwxtpup61OA==",
+ "type": "package",
+ "path": "oxyplot.imagesharp/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "OxyPlot_128.png",
+ "README.md",
+ "lib/netstandard2.0/OxyPlot.ImageSharp.dll",
+ "lib/netstandard2.0/OxyPlot.ImageSharp.xml",
+ "oxyplot.imagesharp.2.2.0.nupkg.sha512",
+ "oxyplot.imagesharp.nuspec"
+ ]
+ },
+ "SixLabors.Fonts/2.1.2": {
+ "sha512": "UGl99i9hCJ4MXLaoGw2aq8nklIL/31QcRU7oqQza4AqCg54XojtIIRczj9aO7zJPDGF+XoA3yJ6X1NOfhZOrWA==",
+ "type": "package",
+ "path": "sixlabors.fonts/2.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE",
+ "lib/net6.0/SixLabors.Fonts.dll",
+ "lib/net6.0/SixLabors.Fonts.xml",
+ "sixlabors.fonts.128.png",
+ "sixlabors.fonts.2.1.2.nupkg.sha512",
+ "sixlabors.fonts.nuspec"
+ ]
+ },
+ "SixLabors.ImageSharp/2.1.9": {
+ "sha512": "VcjfKbOExie3RgZGrQL1jJMI4iZ3J9B6ifDo2QpDVJUYhTZKVcKnBhpNOHqbvNjHgadAks1jzhRjB7OZet1PJA==",
+ "type": "package",
+ "path": "sixlabors.imagesharp/2.1.9",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net472/SixLabors.ImageSharp.dll",
+ "lib/net472/SixLabors.ImageSharp.xml",
+ "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
+ "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
+ "lib/netstandard2.0/SixLabors.ImageSharp.dll",
+ "lib/netstandard2.0/SixLabors.ImageSharp.xml",
+ "lib/netstandard2.1/SixLabors.ImageSharp.dll",
+ "lib/netstandard2.1/SixLabors.ImageSharp.xml",
+ "sixlabors.imagesharp.128.png",
+ "sixlabors.imagesharp.2.1.9.nupkg.sha512",
+ "sixlabors.imagesharp.nuspec"
+ ]
+ },
+ "SixLabors.ImageSharp.Drawing/1.0.0": {
+ "sha512": "02z/+BESLiV/dn8NV+9+DkK9X6R2UmcwR8AVytupvwKa0EPVqYyx8zh+PpksqSjpibDVnVMXlq3OaMCDeDrEug==",
+ "type": "package",
+ "path": "sixlabors.imagesharp.drawing/1.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net472/SixLabors.ImageSharp.Drawing.dll",
+ "lib/net472/SixLabors.ImageSharp.Drawing.xml",
+ "lib/netcoreapp2.1/SixLabors.ImageSharp.Drawing.dll",
+ "lib/netcoreapp2.1/SixLabors.ImageSharp.Drawing.xml",
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.dll",
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.xml",
+ "lib/netstandard2.0/SixLabors.ImageSharp.Drawing.dll",
+ "lib/netstandard2.0/SixLabors.ImageSharp.Drawing.xml",
+ "lib/netstandard2.1/SixLabors.ImageSharp.Drawing.dll",
+ "lib/netstandard2.1/SixLabors.ImageSharp.Drawing.xml",
+ "sixlabors.imagesharp.drawing.1.0.0.nupkg.sha512",
+ "sixlabors.imagesharp.drawing.128.png",
+ "sixlabors.imagesharp.drawing.nuspec"
+ ]
+ },
+ "System.Reflection.Metadata/1.6.0": {
+ "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
+ "type": "package",
+ "path": "system.reflection.metadata/1.6.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.1/System.Reflection.Metadata.dll",
+ "lib/netstandard1.1/System.Reflection.Metadata.xml",
+ "lib/netstandard2.0/System.Reflection.Metadata.dll",
+ "lib/netstandard2.0/System.Reflection.Metadata.xml",
+ "lib/portable-net45+win8/System.Reflection.Metadata.dll",
+ "lib/portable-net45+win8/System.Reflection.Metadata.xml",
+ "system.reflection.metadata.1.6.0.nupkg.sha512",
+ "system.reflection.metadata.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
+ "type": "package",
+ "path": "system.runtime.compilerservices.unsafe/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
+ "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
+ "system.runtime.compilerservices.unsafe.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Text.Encoding.CodePages/5.0.0": {
+ "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
+ "type": "package",
+ "path": "system.text.encoding.codepages/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Text.Encoding.CodePages.dll",
+ "lib/net461/System.Text.Encoding.CodePages.dll",
+ "lib/net461/System.Text.Encoding.CodePages.xml",
+ "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
+ "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
+ "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
+ "system.text.encoding.codepages.5.0.0.nupkg.sha512",
+ "system.text.encoding.codepages.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "xunit/2.9.3": {
+ "sha512": "TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==",
+ "type": "package",
+ "path": "xunit/2.9.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "xunit.2.9.3.nupkg.sha512",
+ "xunit.nuspec"
+ ]
+ },
+ "xunit.abstractions/2.0.3": {
+ "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==",
+ "type": "package",
+ "path": "xunit.abstractions/2.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net35/xunit.abstractions.dll",
+ "lib/net35/xunit.abstractions.xml",
+ "lib/netstandard1.0/xunit.abstractions.dll",
+ "lib/netstandard1.0/xunit.abstractions.xml",
+ "lib/netstandard2.0/xunit.abstractions.dll",
+ "lib/netstandard2.0/xunit.abstractions.xml",
+ "xunit.abstractions.2.0.3.nupkg.sha512",
+ "xunit.abstractions.nuspec"
+ ]
+ },
+ "xunit.analyzers/1.18.0": {
+ "sha512": "OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==",
+ "type": "package",
+ "path": "xunit.analyzers/1.18.0",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "analyzers/dotnet/cs/xunit.analyzers.dll",
+ "analyzers/dotnet/cs/xunit.analyzers.fixes.dll",
+ "tools/install.ps1",
+ "tools/uninstall.ps1",
+ "xunit.analyzers.1.18.0.nupkg.sha512",
+ "xunit.analyzers.nuspec"
+ ]
+ },
+ "xunit.assert/2.9.3": {
+ "sha512": "/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==",
+ "type": "package",
+ "path": "xunit.assert/2.9.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "lib/net6.0/xunit.assert.dll",
+ "lib/net6.0/xunit.assert.xml",
+ "lib/netstandard1.1/xunit.assert.dll",
+ "lib/netstandard1.1/xunit.assert.xml",
+ "xunit.assert.2.9.3.nupkg.sha512",
+ "xunit.assert.nuspec"
+ ]
+ },
+ "xunit.core/2.9.3": {
+ "sha512": "BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==",
+ "type": "package",
+ "path": "xunit.core/2.9.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "build/xunit.core.props",
+ "build/xunit.core.targets",
+ "buildMultiTargeting/xunit.core.props",
+ "buildMultiTargeting/xunit.core.targets",
+ "xunit.core.2.9.3.nupkg.sha512",
+ "xunit.core.nuspec"
+ ]
+ },
+ "xunit.extensibility.core/2.9.3": {
+ "sha512": "kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==",
+ "type": "package",
+ "path": "xunit.extensibility.core/2.9.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "lib/net452/xunit.core.dll",
+ "lib/net452/xunit.core.dll.tdnet",
+ "lib/net452/xunit.core.xml",
+ "lib/net452/xunit.runner.tdnet.dll",
+ "lib/net452/xunit.runner.utility.net452.dll",
+ "lib/netstandard1.1/xunit.core.dll",
+ "lib/netstandard1.1/xunit.core.xml",
+ "xunit.extensibility.core.2.9.3.nupkg.sha512",
+ "xunit.extensibility.core.nuspec"
+ ]
+ },
+ "xunit.extensibility.execution/2.9.3": {
+ "sha512": "yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==",
+ "type": "package",
+ "path": "xunit.extensibility.execution/2.9.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "lib/net452/xunit.execution.desktop.dll",
+ "lib/net452/xunit.execution.desktop.xml",
+ "lib/netstandard1.1/xunit.execution.dotnet.dll",
+ "lib/netstandard1.1/xunit.execution.dotnet.xml",
+ "xunit.extensibility.execution.2.9.3.nupkg.sha512",
+ "xunit.extensibility.execution.nuspec"
+ ]
+ },
+ "ClassLibrary/1.0.0": {
+ "type": "project",
+ "path": "../ClassLibrary/ClassLibrary.csproj",
+ "msbuildProject": "../ClassLibrary/ClassLibrary.csproj"
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net8.0": [
+ "ClassLibrary >= 1.0.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"
+ ]
+ },
+ "packageFolders": {
+ "/Users/rinchi/.nuget/packages/": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/ClassLibrary.Test.csproj",
+ "projectName": "ClassLibrary.Test",
+ "projectPath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/ClassLibrary.Test.csproj",
+ "packagesPath": "/Users/rinchi/.nuget/packages/",
+ "outputPath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/Users/rinchi/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {
+ "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj": {
+ "projectPath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.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/ClassLibrary.Test/obj/project.nuget.cache b/ClassLibrary.Test/obj/project.nuget.cache
new file mode 100644
index 0000000..1528719
--- /dev/null
+++ b/ClassLibrary.Test/obj/project.nuget.cache
@@ -0,0 +1,36 @@
+{
+ "version": 2,
+ "dgSpecHash": "2V/DvGXQccw=",
+ "success": true,
+ "projectFilePath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/ClassLibrary.Test.csproj",
+ "expectedPackageFiles": [
+ "/Users/rinchi/.nuget/packages/coverlet.collector/6.0.0/coverlet.collector.6.0.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/microsoft.codecoverage/17.8.0/microsoft.codecoverage.17.8.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/microsoft.net.test.sdk/17.8.0/microsoft.net.test.sdk.17.8.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/microsoft.netcore.platforms/5.0.0/microsoft.netcore.platforms.5.0.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/microsoft.testplatform.objectmodel/17.8.0/microsoft.testplatform.objectmodel.17.8.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/microsoft.testplatform.testhost/17.8.0/microsoft.testplatform.testhost.17.8.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/netstandard.library/2.0.0/netstandard.library.2.0.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/nuget.frameworks/6.5.0/nuget.frameworks.6.5.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/nunit/3.14.0/nunit.3.14.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/nunit.analyzers/3.9.0/nunit.analyzers.3.9.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/nunit3testadapter/4.5.0/nunit3testadapter.4.5.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/oxyplot.core/2.2.0/oxyplot.core.2.2.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/oxyplot.imagesharp/2.2.0/oxyplot.imagesharp.2.2.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/sixlabors.fonts/2.1.2/sixlabors.fonts.2.1.2.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/sixlabors.imagesharp/2.1.9/sixlabors.imagesharp.2.1.9.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/sixlabors.imagesharp.drawing/1.0.0/sixlabors.imagesharp.drawing.1.0.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/system.reflection.metadata/1.6.0/system.reflection.metadata.1.6.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/system.runtime.compilerservices.unsafe/5.0.0/system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/system.text.encoding.codepages/5.0.0/system.text.encoding.codepages.5.0.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit/2.9.3/xunit.2.9.3.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.abstractions/2.0.3/xunit.abstractions.2.0.3.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.analyzers/1.18.0/xunit.analyzers.1.18.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.assert/2.9.3/xunit.assert.2.9.3.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.core/2.9.3/xunit.core.2.9.3.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.extensibility.core/2.9.3/xunit.extensibility.core.2.9.3.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.extensibility.execution/2.9.3/xunit.extensibility.execution.2.9.3.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/ClassLibrary.Test/obj/project.packagespec.json b/ClassLibrary.Test/obj/project.packagespec.json
new file mode 100644
index 0000000..56a3ca8
--- /dev/null
+++ b/ClassLibrary.Test/obj/project.packagespec.json
@@ -0,0 +1 @@
+"restore":{"projectUniqueName":"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/ClassLibrary.Test.csproj","projectName":"ClassLibrary.Test","projectPath":"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/ClassLibrary.Test.csproj","outputPath":"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary.Test/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj":{"projectPath":"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.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/ClassLibrary.Test/obj/rider.project.model.nuget.info b/ClassLibrary.Test/obj/rider.project.model.nuget.info
new file mode 100644
index 0000000..7816c9f
--- /dev/null
+++ b/ClassLibrary.Test/obj/rider.project.model.nuget.info
@@ -0,0 +1 @@
+17425431776384439
\ No newline at end of file
diff --git a/ClassLibrary.Test/obj/rider.project.restore.info b/ClassLibrary.Test/obj/rider.project.restore.info
new file mode 100644
index 0000000..7b350ed
--- /dev/null
+++ b/ClassLibrary.Test/obj/rider.project.restore.info
@@ -0,0 +1 @@
+17465160157979317
\ No newline at end of file
diff --git a/ClassLibrary/.idea/.idea.ClassLibrary.dir/.idea/encodings.xml b/ClassLibrary/.idea/.idea.ClassLibrary.dir/.idea/encodings.xml
new file mode 100644
index 0000000..df87cf9
--- /dev/null
+++ b/ClassLibrary/.idea/.idea.ClassLibrary.dir/.idea/encodings.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/ClassLibrary/.idea/.idea.ClassLibrary.dir/.idea/indexLayout.xml b/ClassLibrary/.idea/.idea.ClassLibrary.dir/.idea/indexLayout.xml
new file mode 100644
index 0000000..7b08163
--- /dev/null
+++ b/ClassLibrary/.idea/.idea.ClassLibrary.dir/.idea/indexLayout.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ClassLibrary/.idea/.idea.ClassLibrary.dir/.idea/projectSettingsUpdater.xml b/ClassLibrary/.idea/.idea.ClassLibrary.dir/.idea/projectSettingsUpdater.xml
new file mode 100644
index 0000000..64af657
--- /dev/null
+++ b/ClassLibrary/.idea/.idea.ClassLibrary.dir/.idea/projectSettingsUpdater.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ClassLibrary/.idea/.idea.ClassLibrary.dir/.idea/vcs.xml b/ClassLibrary/.idea/.idea.ClassLibrary.dir/.idea/vcs.xml
new file mode 100644
index 0000000..6c0b863
--- /dev/null
+++ b/ClassLibrary/.idea/.idea.ClassLibrary.dir/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ClassLibrary/.idea/.idea.ClassLibrary.dir/.idea/workspace.xml b/ClassLibrary/.idea/.idea.ClassLibrary.dir/.idea/workspace.xml
new file mode 100644
index 0000000..0106e3e
--- /dev/null
+++ b/ClassLibrary/.idea/.idea.ClassLibrary.dir/.idea/workspace.xml
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1741439898742
+
+
+ 1741439898742
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ClassLibrary/Class1.cs b/ClassLibrary/Class1.cs
index f19b71c..c638ffb 100644
--- a/ClassLibrary/Class1.cs
+++ b/ClassLibrary/Class1.cs
@@ -2,70 +2,46 @@
public class Calculations
{
- static void AvailablePeriods(TimeSpan[] startTimes, int[] durations, TimeSpan beginWorkingTime, TimeSpan endWorkingTime, int consultationTime)
+ public static string[] AvailablePeriods(
+ TimeSpan[] startTimes,
+ int[] durations,
+ TimeSpan beginWorkingTime,
+ TimeSpan endWorkingTime,
+ int consultationTime)
{
- DateTime[] startTimesAsDateTime = new DateTime[startTimes.Length];
+ // Список занятых интервалов
+ var busy = new List<(DateTime Start, DateTime End)>();
for (int i = 0; i < startTimes.Length; i++)
{
- startTimesAsDateTime[i] = DateTime.Today.Add(startTimes[i]);
+ var start = DateTime.Today.Add(startTimes[i]);
+ var end = start.AddMinutes(durations[i]);
+ busy.Add((start, end));
}
- DateTime beginWorkingDateTime = DateTime.Today.Add(beginWorkingTime);
- DateTime endWorkingDateTime = DateTime.Today.Add(endWorkingTime);
+ // Рабочее время
+ var workStart = DateTime.Today.Add(beginWorkingTime);
+ var workEnd = DateTime.Today.Add(endWorkingTime);
- string[] result = DatesBumBum(beginWorkingDateTime, endWorkingDateTime, startTimesAsDateTime, durations, consultationTime);
+ // Разбиваем на слоты
+ var result = new List();
+ var current = workStart;
- int count = 0;
- foreach (string date in result)
+ while (current.AddMinutes(consultationTime) <= workEnd)
{
- if (!string.IsNullOrEmpty(date))
+ var slotEnd = current.AddMinutes(consultationTime);
+
+ bool isOverlapping = busy.Any(b =>
+ current < b.End && slotEnd > b.Start // перекрытие
+ );
+
+ if (!isOverlapping)
{
- Console.WriteLine(date);
- count++;
+ result.Add($"{current:HH:mm}-{slotEnd:HH:mm}");
}
+
+ current = slotEnd; // шаг по времени строго по длительности
}
- Console.WriteLine(count);
- }
- static string[] DatesBumBum(DateTime beginWorkingTime, DateTime endWorkingTime, DateTime[] startTimes, int[] durations, int consultationTime)
- {
- int maxIntervals = (int)((endWorkingTime - beginWorkingTime).TotalMinutes / consultationTime);
- string[] availablePeriods = new string[maxIntervals];
- int index = 0;
- DateTime workTime = beginWorkingTime;
- int i = 0;
-
- while (workTime < endWorkingTime)
- {
- DateTime nextBusyStart = (i < startTimes.Length) ? startTimes[i] : endWorkingTime;
- TimeSpan availableTime = nextBusyStart - workTime;
- int availableMinutes = (int)availableTime.TotalMinutes;
-
- while (availableMinutes >= consultationTime)
- {
- DateTime nextAvailableEnd = workTime.AddMinutes(consultationTime);
-
- if (nextAvailableEnd > endWorkingTime)
- {
- nextAvailableEnd = endWorkingTime;
- }
-
- availablePeriods[index++] = $"{workTime:HH:mm}-{nextAvailableEnd:HH:mm}";
-
- workTime = nextAvailableEnd;
- availableMinutes -= consultationTime;
- }
-
- if (i < startTimes.Length)
- {
- workTime = startTimes[i].AddMinutes(durations[i]);
- i++;
- }
- else
- {
- break;
- }
- }
- return availablePeriods;
+ return result.ToArray();
}
}
\ No newline at end of file
diff --git a/ClassLibrary/ClassLibrary.csproj b/ClassLibrary/ClassLibrary.csproj
index 3a63532..8f5a176 100644
--- a/ClassLibrary/ClassLibrary.csproj
+++ b/ClassLibrary/ClassLibrary.csproj
@@ -6,4 +6,14 @@
enable
+
+
+
+
+
+
+
+
+
+
diff --git a/ClassLibrary/bin/Debug/net8.0/ClassLibrary.deps.json b/ClassLibrary/bin/Debug/net8.0/ClassLibrary.deps.json
new file mode 100644
index 0000000..859036f
--- /dev/null
+++ b/ClassLibrary/bin/Debug/net8.0/ClassLibrary.deps.json
@@ -0,0 +1,245 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {
+ "ClassLibrary/1.0.0": {
+ "dependencies": {
+ "OxyPlot.ImageSharp": "2.2.0",
+ "SixLabors.Fonts": "2.1.2",
+ "xunit": "2.9.3"
+ },
+ "runtime": {
+ "ClassLibrary.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {},
+ "OxyPlot.Core/2.2.0": {
+ "runtime": {
+ "lib/net8.0/OxyPlot.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.0"
+ }
+ }
+ },
+ "OxyPlot.ImageSharp/2.2.0": {
+ "dependencies": {
+ "OxyPlot.Core": "2.2.0",
+ "SixLabors.ImageSharp": "2.1.9",
+ "SixLabors.ImageSharp.Drawing": "1.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/OxyPlot.ImageSharp.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.0"
+ }
+ }
+ },
+ "SixLabors.Fonts/2.1.2": {
+ "runtime": {
+ "lib/net6.0/SixLabors.Fonts.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.1.2.0"
+ }
+ }
+ },
+ "SixLabors.ImageSharp/2.1.9": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Text.Encoding.CodePages": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.1.9.0"
+ }
+ }
+ },
+ "SixLabors.ImageSharp.Drawing/1.0.0": {
+ "dependencies": {
+ "SixLabors.Fonts": "2.1.2",
+ "SixLabors.ImageSharp": "2.1.9"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {},
+ "System.Text.Encoding.CodePages/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0"
+ }
+ },
+ "xunit/2.9.3": {
+ "dependencies": {
+ "xunit.analyzers": "1.18.0",
+ "xunit.assert": "2.9.3",
+ "xunit.core": "2.9.3"
+ }
+ },
+ "xunit.abstractions/2.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/xunit.abstractions.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "xunit.analyzers/1.18.0": {},
+ "xunit.assert/2.9.3": {
+ "runtime": {
+ "lib/net6.0/xunit.assert.dll": {
+ "assemblyVersion": "2.9.3.0",
+ "fileVersion": "2.9.3.0"
+ }
+ }
+ },
+ "xunit.core/2.9.3": {
+ "dependencies": {
+ "xunit.extensibility.core": "2.9.3",
+ "xunit.extensibility.execution": "2.9.3"
+ }
+ },
+ "xunit.extensibility.core/2.9.3": {
+ "dependencies": {
+ "xunit.abstractions": "2.0.3"
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.core.dll": {
+ "assemblyVersion": "2.9.3.0",
+ "fileVersion": "2.9.3.0"
+ }
+ }
+ },
+ "xunit.extensibility.execution/2.9.3": {
+ "dependencies": {
+ "xunit.extensibility.core": "2.9.3"
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.execution.dotnet.dll": {
+ "assemblyVersion": "2.9.3.0",
+ "fileVersion": "2.9.3.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "ClassLibrary/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
+ "path": "microsoft.netcore.platforms/5.0.0",
+ "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
+ },
+ "OxyPlot.Core/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QhXNdXR5FPpro/VoLx3BOp6AhQo7YrbfmWEZ9cgY+pnYM7RYORZjnu+aDMA8ka9A1r8hLkX//NbCPZNUv+l8qA==",
+ "path": "oxyplot.core/2.2.0",
+ "hashPath": "oxyplot.core.2.2.0.nupkg.sha512"
+ },
+ "OxyPlot.ImageSharp/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-W/L5TMvYPC7LS4TQd/DVq4lzeWovRXHwe0e+Sq+NDOG/waLcUYOyReP6cinDVPckJF3iaXEPyMqHwxtpup61OA==",
+ "path": "oxyplot.imagesharp/2.2.0",
+ "hashPath": "oxyplot.imagesharp.2.2.0.nupkg.sha512"
+ },
+ "SixLabors.Fonts/2.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UGl99i9hCJ4MXLaoGw2aq8nklIL/31QcRU7oqQza4AqCg54XojtIIRczj9aO7zJPDGF+XoA3yJ6X1NOfhZOrWA==",
+ "path": "sixlabors.fonts/2.1.2",
+ "hashPath": "sixlabors.fonts.2.1.2.nupkg.sha512"
+ },
+ "SixLabors.ImageSharp/2.1.9": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VcjfKbOExie3RgZGrQL1jJMI4iZ3J9B6ifDo2QpDVJUYhTZKVcKnBhpNOHqbvNjHgadAks1jzhRjB7OZet1PJA==",
+ "path": "sixlabors.imagesharp/2.1.9",
+ "hashPath": "sixlabors.imagesharp.2.1.9.nupkg.sha512"
+ },
+ "SixLabors.ImageSharp.Drawing/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-02z/+BESLiV/dn8NV+9+DkK9X6R2UmcwR8AVytupvwKa0EPVqYyx8zh+PpksqSjpibDVnVMXlq3OaMCDeDrEug==",
+ "path": "sixlabors.imagesharp.drawing/1.0.0",
+ "hashPath": "sixlabors.imagesharp.drawing.1.0.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
+ "path": "system.runtime.compilerservices.unsafe/5.0.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
+ },
+ "System.Text.Encoding.CodePages/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
+ "path": "system.text.encoding.codepages/5.0.0",
+ "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512"
+ },
+ "xunit/2.9.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==",
+ "path": "xunit/2.9.3",
+ "hashPath": "xunit.2.9.3.nupkg.sha512"
+ },
+ "xunit.abstractions/2.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==",
+ "path": "xunit.abstractions/2.0.3",
+ "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512"
+ },
+ "xunit.analyzers/1.18.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==",
+ "path": "xunit.analyzers/1.18.0",
+ "hashPath": "xunit.analyzers.1.18.0.nupkg.sha512"
+ },
+ "xunit.assert/2.9.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==",
+ "path": "xunit.assert/2.9.3",
+ "hashPath": "xunit.assert.2.9.3.nupkg.sha512"
+ },
+ "xunit.core/2.9.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==",
+ "path": "xunit.core/2.9.3",
+ "hashPath": "xunit.core.2.9.3.nupkg.sha512"
+ },
+ "xunit.extensibility.core/2.9.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==",
+ "path": "xunit.extensibility.core/2.9.3",
+ "hashPath": "xunit.extensibility.core.2.9.3.nupkg.sha512"
+ },
+ "xunit.extensibility.execution/2.9.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==",
+ "path": "xunit.extensibility.execution/2.9.3",
+ "hashPath": "xunit.extensibility.execution.2.9.3.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/ClassLibrary/bin/Debug/net8.0/ClassLibrary.dll b/ClassLibrary/bin/Debug/net8.0/ClassLibrary.dll
new file mode 100644
index 0000000..1145af9
Binary files /dev/null and b/ClassLibrary/bin/Debug/net8.0/ClassLibrary.dll differ
diff --git a/ClassLibrary/bin/Debug/net8.0/ClassLibrary.pdb b/ClassLibrary/bin/Debug/net8.0/ClassLibrary.pdb
new file mode 100644
index 0000000..6e6b20d
Binary files /dev/null and b/ClassLibrary/bin/Debug/net8.0/ClassLibrary.pdb differ
diff --git a/ClassLibrary/bin/Debug/net8.0/ClassLibrary.runtimeconfig.json b/ClassLibrary/bin/Debug/net8.0/ClassLibrary.runtimeconfig.json
new file mode 100644
index 0000000..becfaea
--- /dev/null
+++ b/ClassLibrary/bin/Debug/net8.0/ClassLibrary.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/ClassLibrary/obj/ClassLibrary.csproj.nuget.dgspec.json b/ClassLibrary/obj/ClassLibrary.csproj.nuget.dgspec.json
index 50085b0..f2193d9 100644
--- a/ClassLibrary/obj/ClassLibrary.csproj.nuget.dgspec.json
+++ b/ClassLibrary/obj/ClassLibrary.csproj.nuget.dgspec.json
@@ -42,6 +42,20 @@
"frameworks": {
"net8.0": {
"targetAlias": "net8.0",
+ "dependencies": {
+ "OxyPlot.ImageSharp": {
+ "target": "Package",
+ "version": "[2.2.0, )"
+ },
+ "SixLabors.Fonts": {
+ "target": "Package",
+ "version": "[2.1.2, )"
+ },
+ "xunit": {
+ "target": "Package",
+ "version": "[2.9.3, )"
+ }
+ },
"imports": [
"net461",
"net462",
diff --git a/ClassLibrary/obj/ClassLibrary.csproj.nuget.g.props b/ClassLibrary/obj/ClassLibrary.csproj.nuget.g.props
index c20bf38..dbb9f05 100644
--- a/ClassLibrary/obj/ClassLibrary.csproj.nuget.g.props
+++ b/ClassLibrary/obj/ClassLibrary.csproj.nuget.g.props
@@ -12,4 +12,10 @@
+
+
+
+
+ /Users/rinchi/.nuget/packages/xunit.analyzers/1.18.0
+
\ No newline at end of file
diff --git a/ClassLibrary/obj/ClassLibrary.csproj.nuget.g.targets b/ClassLibrary/obj/ClassLibrary.csproj.nuget.g.targets
index 3dc06ef..93ed058 100644
--- a/ClassLibrary/obj/ClassLibrary.csproj.nuget.g.targets
+++ b/ClassLibrary/obj/ClassLibrary.csproj.nuget.g.targets
@@ -1,2 +1,6 @@
-
\ No newline at end of file
+
+
+
+
+
\ No newline at end of file
diff --git a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfo.cs b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfo.cs
index e314123..3d8d831 100644
--- a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfo.cs
+++ b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("ClassLibrary")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c943086e791084356af391570f707e630874e6e1")]
[assembly: System.Reflection.AssemblyProductAttribute("ClassLibrary")]
[assembly: System.Reflection.AssemblyTitleAttribute("ClassLibrary")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfoInputs.cache b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfoInputs.cache
index 6033b9e..2b29f02 100644
--- a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfoInputs.cache
+++ b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfoInputs.cache
@@ -1 +1 @@
-591c39984b2463b5eeb40845e0d7f843492bccac0e513bbf9023d2a5fc0fa932
+4fdfe3585aa16d3983457d020e28404dbfd0dfb54dfe1bf689e38ce790f8bc22
diff --git a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.assets.cache b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.assets.cache
index ab46c8f..9f8506e 100644
Binary files a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.assets.cache and b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.assets.cache differ
diff --git a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.csproj.AssemblyReference.cache b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..42a34ee
Binary files /dev/null and b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.csproj.AssemblyReference.cache differ
diff --git a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.csproj.CoreCompileInputs.cache b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..98bb172
--- /dev/null
+++ b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+71009ba271c8a410fb9d28d7702e7a8d04cb0e196941cda33aefe55e3086529e
diff --git a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.csproj.FileListAbsolute.txt b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..d29edfe
--- /dev/null
+++ b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.csproj.FileListAbsolute.txt
@@ -0,0 +1,14 @@
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/bin/Debug/net8.0/ClassLibrary.deps.json
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/bin/Debug/net8.0/ClassLibrary.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/bin/Debug/net8.0/ClassLibrary.pdb
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/obj/Debug/net8.0/ClassLibrary.GeneratedMSBuildEditorConfig.editorconfig
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfoInputs.cache
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfo.cs
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/obj/Debug/net8.0/ClassLibrary.csproj.CoreCompileInputs.cache
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/obj/Debug/net8.0/ClassLibrary.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/obj/Debug/net8.0/refint/ClassLibrary.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/obj/Debug/net8.0/ClassLibrary.pdb
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/obj/Debug/net8.0/ref/ClassLibrary.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/obj/Debug/net8.0/ClassLibrary.csproj.AssemblyReference.cache
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/bin/Debug/net8.0/ClassLibrary.runtimeconfig.json
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/obj/Debug/net8.0/ClassLibrary.genruntimeconfig.cache
diff --git a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.dll b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.dll
new file mode 100644
index 0000000..1145af9
Binary files /dev/null and b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.dll differ
diff --git a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.genruntimeconfig.cache b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.genruntimeconfig.cache
new file mode 100644
index 0000000..9dba0fe
--- /dev/null
+++ b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.genruntimeconfig.cache
@@ -0,0 +1 @@
+1b26df68bf6802de5a77b0d4230e461d96c1937989aaf6c4eb1260efd46acf54
diff --git a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.pdb b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.pdb
new file mode 100644
index 0000000..6e6b20d
Binary files /dev/null and b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.pdb differ
diff --git a/ClassLibrary/obj/Debug/net8.0/ref/ClassLibrary.dll b/ClassLibrary/obj/Debug/net8.0/ref/ClassLibrary.dll
new file mode 100644
index 0000000..10e308a
Binary files /dev/null and b/ClassLibrary/obj/Debug/net8.0/ref/ClassLibrary.dll differ
diff --git a/ClassLibrary/obj/Debug/net8.0/refint/ClassLibrary.dll b/ClassLibrary/obj/Debug/net8.0/refint/ClassLibrary.dll
new file mode 100644
index 0000000..10e308a
Binary files /dev/null and b/ClassLibrary/obj/Debug/net8.0/refint/ClassLibrary.dll differ
diff --git a/ClassLibrary/obj/project.assets.json b/ClassLibrary/obj/project.assets.json
index 08979e5..bc6458b 100644
--- a/ClassLibrary/obj/project.assets.json
+++ b/ClassLibrary/obj/project.assets.json
@@ -1,11 +1,528 @@
{
"version": 3,
"targets": {
- "net8.0": {}
+ "net8.0": {
+ "Microsoft.NETCore.Platforms/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "OxyPlot.Core/2.2.0": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/OxyPlot.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/OxyPlot.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "OxyPlot.ImageSharp/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "OxyPlot.Core": "2.2.0",
+ "SixLabors.ImageSharp": "2.1.9",
+ "SixLabors.ImageSharp.Drawing": "1.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/OxyPlot.ImageSharp.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/OxyPlot.ImageSharp.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "SixLabors.Fonts/2.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/SixLabors.Fonts.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/SixLabors.Fonts.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "SixLabors.ImageSharp/2.1.9": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Text.Encoding.CodePages": "5.0.0"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "SixLabors.ImageSharp.Drawing/1.0.0": {
+ "type": "package",
+ "dependencies": {
+ "SixLabors.Fonts": "1.0.0",
+ "SixLabors.ImageSharp": "2.1.5"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Text.Encoding.CodePages/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "xunit/2.9.3": {
+ "type": "package",
+ "dependencies": {
+ "xunit.analyzers": "1.18.0",
+ "xunit.assert": "2.9.3",
+ "xunit.core": "[2.9.3]"
+ }
+ },
+ "xunit.abstractions/2.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/xunit.abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/xunit.abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "xunit.analyzers/1.18.0": {
+ "type": "package"
+ },
+ "xunit.assert/2.9.3": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/xunit.assert.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/xunit.assert.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "xunit.core/2.9.3": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.9.3]",
+ "xunit.extensibility.execution": "[2.9.3]"
+ },
+ "build": {
+ "build/xunit.core.props": {},
+ "build/xunit.core.targets": {}
+ },
+ "buildMultiTargeting": {
+ "buildMultiTargeting/xunit.core.props": {},
+ "buildMultiTargeting/xunit.core.targets": {}
+ }
+ },
+ "xunit.extensibility.core/2.9.3": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "2.0.3"
+ },
+ "compile": {
+ "lib/netstandard1.1/xunit.core.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.core.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "xunit.extensibility.execution/2.9.3": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.9.3]"
+ },
+ "compile": {
+ "lib/netstandard1.1/xunit.execution.dotnet.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.execution.dotnet.dll": {
+ "related": ".xml"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.NETCore.Platforms/5.0.0": {
+ "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "OxyPlot.Core/2.2.0": {
+ "sha512": "QhXNdXR5FPpro/VoLx3BOp6AhQo7YrbfmWEZ9cgY+pnYM7RYORZjnu+aDMA8ka9A1r8hLkX//NbCPZNUv+l8qA==",
+ "type": "package",
+ "path": "oxyplot.core/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "OxyPlot_128.png",
+ "README.md",
+ "lib/net462/OxyPlot.dll",
+ "lib/net462/OxyPlot.xml",
+ "lib/net6.0/OxyPlot.dll",
+ "lib/net6.0/OxyPlot.xml",
+ "lib/net8.0/OxyPlot.dll",
+ "lib/net8.0/OxyPlot.xml",
+ "lib/netstandard2.0/OxyPlot.dll",
+ "lib/netstandard2.0/OxyPlot.xml",
+ "oxyplot.core.2.2.0.nupkg.sha512",
+ "oxyplot.core.nuspec"
+ ]
+ },
+ "OxyPlot.ImageSharp/2.2.0": {
+ "sha512": "W/L5TMvYPC7LS4TQd/DVq4lzeWovRXHwe0e+Sq+NDOG/waLcUYOyReP6cinDVPckJF3iaXEPyMqHwxtpup61OA==",
+ "type": "package",
+ "path": "oxyplot.imagesharp/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "OxyPlot_128.png",
+ "README.md",
+ "lib/netstandard2.0/OxyPlot.ImageSharp.dll",
+ "lib/netstandard2.0/OxyPlot.ImageSharp.xml",
+ "oxyplot.imagesharp.2.2.0.nupkg.sha512",
+ "oxyplot.imagesharp.nuspec"
+ ]
+ },
+ "SixLabors.Fonts/2.1.2": {
+ "sha512": "UGl99i9hCJ4MXLaoGw2aq8nklIL/31QcRU7oqQza4AqCg54XojtIIRczj9aO7zJPDGF+XoA3yJ6X1NOfhZOrWA==",
+ "type": "package",
+ "path": "sixlabors.fonts/2.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE",
+ "lib/net6.0/SixLabors.Fonts.dll",
+ "lib/net6.0/SixLabors.Fonts.xml",
+ "sixlabors.fonts.128.png",
+ "sixlabors.fonts.2.1.2.nupkg.sha512",
+ "sixlabors.fonts.nuspec"
+ ]
+ },
+ "SixLabors.ImageSharp/2.1.9": {
+ "sha512": "VcjfKbOExie3RgZGrQL1jJMI4iZ3J9B6ifDo2QpDVJUYhTZKVcKnBhpNOHqbvNjHgadAks1jzhRjB7OZet1PJA==",
+ "type": "package",
+ "path": "sixlabors.imagesharp/2.1.9",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net472/SixLabors.ImageSharp.dll",
+ "lib/net472/SixLabors.ImageSharp.xml",
+ "lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
+ "lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
+ "lib/netstandard2.0/SixLabors.ImageSharp.dll",
+ "lib/netstandard2.0/SixLabors.ImageSharp.xml",
+ "lib/netstandard2.1/SixLabors.ImageSharp.dll",
+ "lib/netstandard2.1/SixLabors.ImageSharp.xml",
+ "sixlabors.imagesharp.128.png",
+ "sixlabors.imagesharp.2.1.9.nupkg.sha512",
+ "sixlabors.imagesharp.nuspec"
+ ]
+ },
+ "SixLabors.ImageSharp.Drawing/1.0.0": {
+ "sha512": "02z/+BESLiV/dn8NV+9+DkK9X6R2UmcwR8AVytupvwKa0EPVqYyx8zh+PpksqSjpibDVnVMXlq3OaMCDeDrEug==",
+ "type": "package",
+ "path": "sixlabors.imagesharp.drawing/1.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net472/SixLabors.ImageSharp.Drawing.dll",
+ "lib/net472/SixLabors.ImageSharp.Drawing.xml",
+ "lib/netcoreapp2.1/SixLabors.ImageSharp.Drawing.dll",
+ "lib/netcoreapp2.1/SixLabors.ImageSharp.Drawing.xml",
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.dll",
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.xml",
+ "lib/netstandard2.0/SixLabors.ImageSharp.Drawing.dll",
+ "lib/netstandard2.0/SixLabors.ImageSharp.Drawing.xml",
+ "lib/netstandard2.1/SixLabors.ImageSharp.Drawing.dll",
+ "lib/netstandard2.1/SixLabors.ImageSharp.Drawing.xml",
+ "sixlabors.imagesharp.drawing.1.0.0.nupkg.sha512",
+ "sixlabors.imagesharp.drawing.128.png",
+ "sixlabors.imagesharp.drawing.nuspec"
+ ]
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
+ "type": "package",
+ "path": "system.runtime.compilerservices.unsafe/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
+ "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
+ "system.runtime.compilerservices.unsafe.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Text.Encoding.CodePages/5.0.0": {
+ "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
+ "type": "package",
+ "path": "system.text.encoding.codepages/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Text.Encoding.CodePages.dll",
+ "lib/net461/System.Text.Encoding.CodePages.dll",
+ "lib/net461/System.Text.Encoding.CodePages.xml",
+ "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
+ "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
+ "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
+ "system.text.encoding.codepages.5.0.0.nupkg.sha512",
+ "system.text.encoding.codepages.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "xunit/2.9.3": {
+ "sha512": "TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==",
+ "type": "package",
+ "path": "xunit/2.9.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "xunit.2.9.3.nupkg.sha512",
+ "xunit.nuspec"
+ ]
+ },
+ "xunit.abstractions/2.0.3": {
+ "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==",
+ "type": "package",
+ "path": "xunit.abstractions/2.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net35/xunit.abstractions.dll",
+ "lib/net35/xunit.abstractions.xml",
+ "lib/netstandard1.0/xunit.abstractions.dll",
+ "lib/netstandard1.0/xunit.abstractions.xml",
+ "lib/netstandard2.0/xunit.abstractions.dll",
+ "lib/netstandard2.0/xunit.abstractions.xml",
+ "xunit.abstractions.2.0.3.nupkg.sha512",
+ "xunit.abstractions.nuspec"
+ ]
+ },
+ "xunit.analyzers/1.18.0": {
+ "sha512": "OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==",
+ "type": "package",
+ "path": "xunit.analyzers/1.18.0",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "analyzers/dotnet/cs/xunit.analyzers.dll",
+ "analyzers/dotnet/cs/xunit.analyzers.fixes.dll",
+ "tools/install.ps1",
+ "tools/uninstall.ps1",
+ "xunit.analyzers.1.18.0.nupkg.sha512",
+ "xunit.analyzers.nuspec"
+ ]
+ },
+ "xunit.assert/2.9.3": {
+ "sha512": "/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==",
+ "type": "package",
+ "path": "xunit.assert/2.9.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "lib/net6.0/xunit.assert.dll",
+ "lib/net6.0/xunit.assert.xml",
+ "lib/netstandard1.1/xunit.assert.dll",
+ "lib/netstandard1.1/xunit.assert.xml",
+ "xunit.assert.2.9.3.nupkg.sha512",
+ "xunit.assert.nuspec"
+ ]
+ },
+ "xunit.core/2.9.3": {
+ "sha512": "BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==",
+ "type": "package",
+ "path": "xunit.core/2.9.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "build/xunit.core.props",
+ "build/xunit.core.targets",
+ "buildMultiTargeting/xunit.core.props",
+ "buildMultiTargeting/xunit.core.targets",
+ "xunit.core.2.9.3.nupkg.sha512",
+ "xunit.core.nuspec"
+ ]
+ },
+ "xunit.extensibility.core/2.9.3": {
+ "sha512": "kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==",
+ "type": "package",
+ "path": "xunit.extensibility.core/2.9.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "lib/net452/xunit.core.dll",
+ "lib/net452/xunit.core.dll.tdnet",
+ "lib/net452/xunit.core.xml",
+ "lib/net452/xunit.runner.tdnet.dll",
+ "lib/net452/xunit.runner.utility.net452.dll",
+ "lib/netstandard1.1/xunit.core.dll",
+ "lib/netstandard1.1/xunit.core.xml",
+ "xunit.extensibility.core.2.9.3.nupkg.sha512",
+ "xunit.extensibility.core.nuspec"
+ ]
+ },
+ "xunit.extensibility.execution/2.9.3": {
+ "sha512": "yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==",
+ "type": "package",
+ "path": "xunit.extensibility.execution/2.9.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "lib/net452/xunit.execution.desktop.dll",
+ "lib/net452/xunit.execution.desktop.xml",
+ "lib/netstandard1.1/xunit.execution.dotnet.dll",
+ "lib/netstandard1.1/xunit.execution.dotnet.xml",
+ "xunit.extensibility.execution.2.9.3.nupkg.sha512",
+ "xunit.extensibility.execution.nuspec"
+ ]
+ }
},
- "libraries": {},
"projectFileDependencyGroups": {
- "net8.0": []
+ "net8.0": [
+ "OxyPlot.ImageSharp >= 2.2.0",
+ "SixLabors.Fonts >= 2.1.2",
+ "xunit >= 2.9.3"
+ ]
},
"packageFolders": {
"/Users/rinchi/.nuget/packages/": {}
@@ -48,6 +565,20 @@
"frameworks": {
"net8.0": {
"targetAlias": "net8.0",
+ "dependencies": {
+ "OxyPlot.ImageSharp": {
+ "target": "Package",
+ "version": "[2.2.0, )"
+ },
+ "SixLabors.Fonts": {
+ "target": "Package",
+ "version": "[2.1.2, )"
+ },
+ "xunit": {
+ "target": "Package",
+ "version": "[2.9.3, )"
+ }
+ },
"imports": [
"net461",
"net462",
diff --git a/ClassLibrary/obj/project.nuget.cache b/ClassLibrary/obj/project.nuget.cache
index 69c6827..f88c51a 100644
--- a/ClassLibrary/obj/project.nuget.cache
+++ b/ClassLibrary/obj/project.nuget.cache
@@ -1,8 +1,24 @@
{
"version": 2,
- "dgSpecHash": "OTbbUH5Axag=",
+ "dgSpecHash": "wwkYJ1/LlKQ=",
"success": true,
"projectFilePath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj",
- "expectedPackageFiles": [],
+ "expectedPackageFiles": [
+ "/Users/rinchi/.nuget/packages/microsoft.netcore.platforms/5.0.0/microsoft.netcore.platforms.5.0.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/oxyplot.core/2.2.0/oxyplot.core.2.2.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/oxyplot.imagesharp/2.2.0/oxyplot.imagesharp.2.2.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/sixlabors.fonts/2.1.2/sixlabors.fonts.2.1.2.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/sixlabors.imagesharp/2.1.9/sixlabors.imagesharp.2.1.9.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/sixlabors.imagesharp.drawing/1.0.0/sixlabors.imagesharp.drawing.1.0.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/system.runtime.compilerservices.unsafe/5.0.0/system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/system.text.encoding.codepages/5.0.0/system.text.encoding.codepages.5.0.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit/2.9.3/xunit.2.9.3.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.abstractions/2.0.3/xunit.abstractions.2.0.3.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.analyzers/1.18.0/xunit.analyzers.1.18.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.assert/2.9.3/xunit.assert.2.9.3.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.core/2.9.3/xunit.core.2.9.3.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.extensibility.core/2.9.3/xunit.extensibility.core.2.9.3.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.extensibility.execution/2.9.3/xunit.extensibility.execution.2.9.3.nupkg.sha512"
+ ],
"logs": []
}
\ No newline at end of file
diff --git a/ClassLibrary/obj/project.packagespec.json b/ClassLibrary/obj/project.packagespec.json
index 00e0824..009be4b 100644
--- a/ClassLibrary/obj/project.packagespec.json
+++ b/ClassLibrary/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj","projectName":"ClassLibrary","projectPath":"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj","outputPath":"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/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
+"restore":{"projectUniqueName":"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj","projectName":"ClassLibrary","projectPath":"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj","outputPath":"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/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","dependencies":{"OxyPlot.ImageSharp":{"target":"Package","version":"[2.2.0, )"},"SixLabors.Fonts":{"target":"Package","version":"[2.1.2, )"},"xunit":{"target":"Package","version":"[2.9.3, )"}},"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/ClassLibrary/obj/rider.project.model.nuget.info b/ClassLibrary/obj/rider.project.model.nuget.info
new file mode 100644
index 0000000..cf82523
--- /dev/null
+++ b/ClassLibrary/obj/rider.project.model.nuget.info
@@ -0,0 +1 @@
+17425431776381386
\ No newline at end of file
diff --git a/ClassLibrary/obj/rider.project.restore.info b/ClassLibrary/obj/rider.project.restore.info
index bb285fd..cf82523 100644
--- a/ClassLibrary/obj/rider.project.restore.info
+++ b/ClassLibrary/obj/rider.project.restore.info
@@ -1 +1 @@
-17410953035453165
\ No newline at end of file
+17425431776381386
\ No newline at end of file
diff --git a/dmeo040225.sln b/dmeo040225.sln
index 1678f67..489d86a 100644
--- a/dmeo040225.sln
+++ b/dmeo040225.sln
@@ -4,6 +4,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dmeo040225", "dmeo040225\dm
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassLibrary", "ClassLibrary\ClassLibrary.csproj", "{3AF78D78-641F-4141-A5BE-7D1A4C1966C7}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassLibrary.Test", "ClassLibrary.Test\ClassLibrary.Test.csproj", "{4E4B8B0B-52DB-4E82-9957-9573171AFC69}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -18,5 +20,9 @@ Global
{3AF78D78-641F-4141-A5BE-7D1A4C1966C7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3AF78D78-641F-4141-A5BE-7D1A4C1966C7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3AF78D78-641F-4141-A5BE-7D1A4C1966C7}.Release|Any CPU.Build.0 = Release|Any CPU
+ {4E4B8B0B-52DB-4E82-9957-9573171AFC69}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {4E4B8B0B-52DB-4E82-9957-9573171AFC69}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {4E4B8B0B-52DB-4E82-9957-9573171AFC69}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {4E4B8B0B-52DB-4E82-9957-9573171AFC69}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
diff --git a/dmeo040225.sln.DotSettings.user b/dmeo040225.sln.DotSettings.user
new file mode 100644
index 0000000..70b2a1c
--- /dev/null
+++ b/dmeo040225.sln.DotSettings.user
@@ -0,0 +1,10 @@
+
+ <SessionState ContinuousTestingMode="0" IsActive="True" Name="DataAssertTest" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session">
+ <TestAncestor>
+ <TestId>NUnit3x::4E4B8B0B-52DB-4E82-9957-9573171AFC69::net8.0::ClassLibrary.Test.Tests</TestId>
+ </TestAncestor>
+</SessionState>
+
+
+
+
\ No newline at end of file
diff --git a/dmeo040225/.DS_Store b/dmeo040225/.DS_Store
index affb85a..ad91870 100644
Binary files a/dmeo040225/.DS_Store and b/dmeo040225/.DS_Store differ
diff --git a/dmeo040225/.idea/.idea.dmeo040225.dir/.idea/.gitignore b/dmeo040225/.idea/.idea.dmeo040225.dir/.idea/.gitignore
new file mode 100644
index 0000000..92ec8fe
--- /dev/null
+++ b/dmeo040225/.idea/.idea.dmeo040225.dir/.idea/.gitignore
@@ -0,0 +1,13 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Rider ignored files
+/contentModel.xml
+/.idea.dmeo040225.iml
+/modules.xml
+/projectSettingsUpdater.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/dmeo040225/.idea/.idea.dmeo040225.dir/.idea/avalonia.xml b/dmeo040225/.idea/.idea.dmeo040225.dir/.idea/avalonia.xml
new file mode 100644
index 0000000..6294f56
--- /dev/null
+++ b/dmeo040225/.idea/.idea.dmeo040225.dir/.idea/avalonia.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/dmeo040225/.idea/.idea.dmeo040225.dir/.idea/encodings.xml b/dmeo040225/.idea/.idea.dmeo040225.dir/.idea/encodings.xml
new file mode 100644
index 0000000..df87cf9
--- /dev/null
+++ b/dmeo040225/.idea/.idea.dmeo040225.dir/.idea/encodings.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/dmeo040225/.idea/.idea.dmeo040225.dir/.idea/indexLayout.xml b/dmeo040225/.idea/.idea.dmeo040225.dir/.idea/indexLayout.xml
new file mode 100644
index 0000000..7b08163
--- /dev/null
+++ b/dmeo040225/.idea/.idea.dmeo040225.dir/.idea/indexLayout.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/dmeo040225/.idea/.idea.dmeo040225.dir/.idea/vcs.xml b/dmeo040225/.idea/.idea.dmeo040225.dir/.idea/vcs.xml
new file mode 100644
index 0000000..6c0b863
--- /dev/null
+++ b/dmeo040225/.idea/.idea.dmeo040225.dir/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/dmeo040225/AdminWindow.axaml b/dmeo040225/AdminWindow.axaml
index c0680c6..45bd3ba 100644
--- a/dmeo040225/AdminWindow.axaml
+++ b/dmeo040225/AdminWindow.axaml
@@ -17,6 +17,7 @@
+
diff --git a/dmeo040225/AdminWindow.axaml.cs b/dmeo040225/AdminWindow.axaml.cs
index 3e917f2..793480d 100644
--- a/dmeo040225/AdminWindow.axaml.cs
+++ b/dmeo040225/AdminWindow.axaml.cs
@@ -34,8 +34,6 @@ public partial class AdminWindow : Window
{
TimerService.Instance.Reset();
Close();
- // MainWindow mainWindow = new MainWindow();
- // mainWindow.ShowDialog(this);
}
private void History_OnClick(object? sender, RoutedEventArgs e)
@@ -44,6 +42,12 @@ public partial class AdminWindow : Window
historyWindow.ShowDialog(this);
}
+ private void Report_OnClick(object? sender, RoutedEventArgs e)
+ {
+ ReportWindow reportWindow = new ReportWindow();
+ reportWindow.ShowDialog(this);
+ }
+
private void UpdateTimerText(TimeSpan time)
{
TimerText.Text = $"Осталось: {time:mm\\:ss}";
diff --git a/dmeo040225/ReportWindow.axaml b/dmeo040225/ReportWindow.axaml
new file mode 100644
index 0000000..0f12da4
--- /dev/null
+++ b/dmeo040225/ReportWindow.axaml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dmeo040225/ReportWindow.axaml.cs b/dmeo040225/ReportWindow.axaml.cs
new file mode 100644
index 0000000..663c66d
--- /dev/null
+++ b/dmeo040225/ReportWindow.axaml.cs
@@ -0,0 +1,237 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using Avalonia.Markup.Xaml;
+using dmeo040225.Models;
+using dmeo040225.Services;
+using OxyPlot;
+using OxyPlot.Avalonia;
+using OxyPlot.Series;
+using OxyPlot.Axes;
+using PdfSharpCore.Drawing;
+using PdfSharpCore.Pdf;
+using LineSeries = OxyPlot.Series.LineSeries;
+
+namespace dmeo040225;
+
+public class ServicePerDay
+{
+ public DateTime Date { get; set; }
+ public int CountServices {get; set; }
+}
+
+public class ServiceOrdersPerDay
+{
+ public DateTime Date { get; set; }
+ public string ServiceName { get; set; }
+ public int OrderCount { get; set; }
+}
+
+public partial class ReportWindow : Window
+{
+ public List ServicesPerDayList { get; set; }
+ public List ServicesOrdersPerDayList { get; set; }
+ public List OrdersPerDayList { get; set; }
+
+ public ReportWindow()
+ {
+ InitializeComponent();
+
+ TimerService.Instance.TimeUpdated += UpdateTimerText;
+ TimerService.Instance.TimerExpired += LogoutUser;
+
+ TimerService.Instance.Start();
+ }
+
+ private void GenerateReport(object? sender, RoutedEventArgs e)
+ {
+ if (StartPicker.SelectedDate == null || EndPicker.SelectedDate == null)
+ {
+ Console.WriteLine("Выберите начальную и конечную дату!");
+ return;
+ }
+
+ DateTime startDate = StartPicker.SelectedDate.Value.DateTime;
+ DateTime endDate = EndPicker.SelectedDate.Value.DateTime;
+
+ if (startDate > endDate)
+ {
+ Console.WriteLine("Начальная дата не может быть позже конечной!");
+ return;
+ }
+
+ using var context = new DatabaseContext();
+
+ ServicesPerDayList = GetServicesPerDay(context, startDate, endDate);
+ ServicesOrdersPerDayList = GetServiceOrdersPerDay(context, startDate, endDate);
+ OrdersPerDayList = GetOrdersPerDay(context, startDate, endDate);
+
+ CreatePdfWithTableAndGraph();
+
+ foreach (var service in ServicesOrdersPerDayList)
+ {
+ Console.WriteLine($"{service.Date.ToShortDateString()} | {service.ServiceName} | {service.OrderCount}");
+ }
+ }
+
+ private PlotModel CreateServiceGraph()
+ {
+ var plotModel = new PlotModel { Title = "График по сервисам" };
+
+ var series = new LineSeries
+ {
+ Title = "Количество сервисов",
+ MarkerType = MarkerType.Circle,
+ MarkerSize = 4,
+ Color = OxyColors.SkyBlue
+ };
+
+ foreach (var item in ServicesPerDayList)
+ {
+ series.Points.Add(new DataPoint(OxyPlot.Axes.DateTimeAxis.ToDouble(item.Date), item.CountServices));
+
+ }
+
+ plotModel.Series.Add(series);
+ return plotModel;
+ }
+
+ private void CreatePdfWithTableAndGraph()
+ {
+ // Создаем новый PDF документ
+ PdfDocument document = new PdfDocument();
+ document.Info.Title = "Отчет";
+
+ // Создаем страницу
+ PdfPage page = document.AddPage();
+
+ // Создаем XGraphics для рисования
+ XGraphics gfx = XGraphics.FromPdfPage(page);
+ XFont font = new XFont("Arial", 12, XFontStyle.Regular);
+
+ // Добавление таблицы в PDF
+ int yPos = 40;
+ // gfx.DrawString("Список сервисов:", font, XBrushes.Black, new XPoint(40, yPos));
+ // yPos += 20;
+ //
+ // foreach (var service in ServicesPerDayList)
+ // {
+ // gfx.DrawString($"{service.Date.ToShortDateString()} | {service.CountServices} сервисов", font, XBrushes.Black, new XPoint(40, yPos));
+ // yPos += 20;
+ // }
+
+ // Добавление графика в PDF
+ var plotModel = CreateServiceGraph();
+ var pngStream = new System.IO.MemoryStream();
+ var pngExporter = new OxyPlot.ImageSharp.PngExporter(400, 300);
+
+ try
+ {
+ pngExporter.Export(plotModel, pngStream);
+ pngStream.Seek(0, System.IO.SeekOrigin.Begin); // Убедитесь, что поток начнется с первого байта
+
+ var image = XImage.FromStream(() => pngStream);
+
+ gfx.DrawImage(image, 40, yPos);
+ }
+ catch (Exception ex)
+ {
+ Console.WriteLine($"Ошибка при экспортировании изображения: {ex.Message}");
+ }
+
+ // Сохраняем PDF
+ string filename = "report.pdf";
+ document.Save(filename);
+ Console.WriteLine($"PDF сохранен в {filename}");
+ }
+
+ private List GetServicesPerDay(DatabaseContext context, DateTime startDate, DateTime endDate)
+ {
+ return context.Orders
+ .Where(order => order.Orderdata.Date >= startDate && order.Orderdata.Date <= endDate)
+ .SelectMany(order => order.OrdersServices)
+ .GroupBy(os => os.Order.Orderdata.Date)
+ .Select(g => new ServicePerDay
+ {
+ Date = g.Key,
+ CountServices = g.Count()
+ })
+ .OrderBy(spd => spd.Date)
+ .ToList();
+ }
+
+
+ private List GetServiceOrdersPerDay(DatabaseContext context, DateTime startDate, DateTime endDate)
+ {
+ return context.Orders
+ .Where(order => order.Orderdata.Date >= startDate.Date && order.Orderdata.Date <= endDate.Date)
+ .SelectMany(order => order.OrdersServices, (order, os) => new { order.Orderdata, os.Service })
+ .GroupBy(o => new { o.Orderdata.Date, o.Service.Name })
+ .Select(g => new ServiceOrdersPerDay
+ {
+ Date = g.Key.Date,
+ ServiceName = g.Key.Name,
+ OrderCount = g.Count()
+ })
+ .OrderBy(spd => spd.Date)
+ .ThenBy(spd => spd.ServiceName)
+ .ToList();
+ }
+
+ private List GetOrdersPerDay(DatabaseContext context, DateTime startDate, DateTime endDate)
+ {
+ return context.Orders
+ .Where(order => order.Orderdata.Date >= startDate.Date && order.Orderdata.Date <= endDate.Date)
+ .GroupBy(order => order.Orderdata.Date)
+ .Select(g => new ServicePerDay
+ {
+ Date = g.Key,
+ CountServices = g.Count()
+ })
+ .OrderBy(spd => spd.Date)
+ .ToList();
+ }
+
+ private void Graph_Pdf()
+ {
+
+ }
+
+ private void Table_Pdf()
+ {
+
+ }
+
+ private void GraphXTable_Pdf()
+ {
+
+ }
+
+ private void Back_OnClick(object? sender, RoutedEventArgs e)
+ {
+ TimerService.Instance.Reset();
+ Close();
+ }
+
+ private void UpdateTimerText(TimeSpan time)
+ {
+ TimerText.Text = $"Осталось: {time:mm\\:ss}";
+ }
+
+ private void LogoutUser()
+ {
+ Close();
+ var mainWindow = new MainWindow();
+ mainWindow.Show();
+ }
+
+ protected override void OnClosed(EventArgs e)
+ {
+ TimerService.Instance.TimeUpdated -= UpdateTimerText;
+ TimerService.Instance.TimerExpired -= LogoutUser;
+ base.OnClosed(e);
+ }
+}
\ No newline at end of file
diff --git a/dmeo040225/bin/Debug/net8.0/ClassLibrary.dll b/dmeo040225/bin/Debug/net8.0/ClassLibrary.dll
new file mode 100644
index 0000000..ed36493
Binary files /dev/null and b/dmeo040225/bin/Debug/net8.0/ClassLibrary.dll differ
diff --git a/dmeo040225/bin/Debug/net8.0/ClassLibrary.pdb b/dmeo040225/bin/Debug/net8.0/ClassLibrary.pdb
new file mode 100644
index 0000000..13fa287
Binary files /dev/null and b/dmeo040225/bin/Debug/net8.0/ClassLibrary.pdb differ
diff --git a/dmeo040225/bin/Debug/net8.0/OxyPlot.Avalonia.dll b/dmeo040225/bin/Debug/net8.0/OxyPlot.Avalonia.dll
new file mode 100755
index 0000000..fae46da
Binary files /dev/null and b/dmeo040225/bin/Debug/net8.0/OxyPlot.Avalonia.dll differ
diff --git a/dmeo040225/bin/Debug/net8.0/OxyPlot.ImageSharp.dll b/dmeo040225/bin/Debug/net8.0/OxyPlot.ImageSharp.dll
new file mode 100755
index 0000000..e7c4125
Binary files /dev/null and b/dmeo040225/bin/Debug/net8.0/OxyPlot.ImageSharp.dll differ
diff --git a/dmeo040225/bin/Debug/net8.0/OxyPlot.WindowsForms.dll b/dmeo040225/bin/Debug/net8.0/OxyPlot.WindowsForms.dll
new file mode 100755
index 0000000..1f67411
Binary files /dev/null and b/dmeo040225/bin/Debug/net8.0/OxyPlot.WindowsForms.dll differ
diff --git a/dmeo040225/bin/Debug/net8.0/OxyPlot.Wpf.dll b/dmeo040225/bin/Debug/net8.0/OxyPlot.Wpf.dll
new file mode 100755
index 0000000..201cc18
Binary files /dev/null and b/dmeo040225/bin/Debug/net8.0/OxyPlot.Wpf.dll differ
diff --git a/dmeo040225/bin/Debug/net8.0/OxyPlot.Xps.dll b/dmeo040225/bin/Debug/net8.0/OxyPlot.Xps.dll
new file mode 100755
index 0000000..7600fde
Binary files /dev/null and b/dmeo040225/bin/Debug/net8.0/OxyPlot.Xps.dll differ
diff --git a/dmeo040225/bin/Debug/net8.0/OxyPlot.dll b/dmeo040225/bin/Debug/net8.0/OxyPlot.dll
new file mode 100755
index 0000000..c652fdb
Binary files /dev/null and b/dmeo040225/bin/Debug/net8.0/OxyPlot.dll differ
diff --git a/dmeo040225/bin/Debug/net8.0/SixLabors.Fonts.dll b/dmeo040225/bin/Debug/net8.0/SixLabors.Fonts.dll
index 0b4caab..8ca92b5 100755
Binary files a/dmeo040225/bin/Debug/net8.0/SixLabors.Fonts.dll and b/dmeo040225/bin/Debug/net8.0/SixLabors.Fonts.dll differ
diff --git a/dmeo040225/bin/Debug/net8.0/SixLabors.ImageSharp.Drawing.dll b/dmeo040225/bin/Debug/net8.0/SixLabors.ImageSharp.Drawing.dll
new file mode 100755
index 0000000..b6ae9d1
Binary files /dev/null and b/dmeo040225/bin/Debug/net8.0/SixLabors.ImageSharp.Drawing.dll differ
diff --git a/dmeo040225/bin/Debug/net8.0/SixLabors.ImageSharp.dll b/dmeo040225/bin/Debug/net8.0/SixLabors.ImageSharp.dll
index 109ac6d..ee3ad5f 100755
Binary files a/dmeo040225/bin/Debug/net8.0/SixLabors.ImageSharp.dll and b/dmeo040225/bin/Debug/net8.0/SixLabors.ImageSharp.dll differ
diff --git a/dmeo040225/bin/Debug/net8.0/dmeo040225.deps.json b/dmeo040225/bin/Debug/net8.0/dmeo040225.deps.json
index 151d530..07ac303 100644
--- a/dmeo040225/bin/Debug/net8.0/dmeo040225.deps.json
+++ b/dmeo040225/bin/Debug/net8.0/dmeo040225.deps.json
@@ -13,10 +13,15 @@
"Avalonia.Diagnostics": "11.2.1",
"Avalonia.Fonts.Inter": "11.2.1",
"Avalonia.Themes.Fluent": "11.2.1",
+ "ClassLibrary": "1.0.0",
"Microsoft.EntityFrameworkCore": "8.0.10",
"Microsoft.EntityFrameworkCore.Design": "8.0.10",
"Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10",
+ "OxyPlot": "2014.1.517",
+ "OxyPlot.Avalonia": "2.1.0",
+ "OxyPlot.ImageSharp": "2.2.0",
"PdfSharpCore": "1.3.65",
+ "SixLabors.Fonts": "2.1.2",
"ZXing.Net": "0.16.10"
},
"runtime": {
@@ -769,11 +774,60 @@
}
}
},
+ "OxyPlot/2014.1.517": {
+ "runtime": {
+ "lib/net45/OxyPlot.WindowsForms.dll": {
+ "assemblyVersion": "2014.1.517.0",
+ "fileVersion": "2014.1.517.0"
+ },
+ "lib/net45/OxyPlot.Wpf.dll": {
+ "assemblyVersion": "2014.1.517.0",
+ "fileVersion": "2014.1.517.0"
+ },
+ "lib/net45/OxyPlot.Xps.dll": {
+ "assemblyVersion": "2014.1.517.0",
+ "fileVersion": "2014.1.517.0"
+ }
+ }
+ },
+ "OxyPlot.Avalonia/2.1.0": {
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "OxyPlot.Core": "2.2.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/OxyPlot.Avalonia.dll": {
+ "assemblyVersion": "2.1.0.0",
+ "fileVersion": "2.1.0.0"
+ }
+ }
+ },
+ "OxyPlot.Core/2.2.0": {
+ "runtime": {
+ "lib/net8.0/OxyPlot.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.0"
+ }
+ }
+ },
+ "OxyPlot.ImageSharp/2.2.0": {
+ "dependencies": {
+ "OxyPlot.Core": "2.2.0",
+ "SixLabors.ImageSharp": "2.1.9",
+ "SixLabors.ImageSharp.Drawing": "1.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/OxyPlot.ImageSharp.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.0.0"
+ }
+ }
+ },
"PdfSharpCore/1.3.65": {
"dependencies": {
"SharpZipLib": "1.4.2",
- "SixLabors.Fonts": "1.0.0-beta17",
- "SixLabors.ImageSharp": "1.0.4"
+ "SixLabors.Fonts": "2.1.2",
+ "SixLabors.ImageSharp": "2.1.9"
},
"runtime": {
"lib/net8.0/PdfSharpCore.dll": {
@@ -795,19 +849,35 @@
}
}
},
- "SixLabors.Fonts/1.0.0-beta17": {
+ "SixLabors.Fonts/2.1.2": {
"runtime": {
- "lib/netcoreapp3.1/SixLabors.Fonts.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
+ "lib/net6.0/SixLabors.Fonts.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.1.2.0"
}
}
},
- "SixLabors.ImageSharp/1.0.4": {
+ "SixLabors.ImageSharp/2.1.9": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0"
+ },
"runtime": {
"lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.1.9.0"
+ }
+ }
+ },
+ "SixLabors.ImageSharp.Drawing/1.0.0": {
+ "dependencies": {
+ "SixLabors.Fonts": "2.1.2",
+ "SixLabors.ImageSharp": "2.1.9"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.dll": {
"assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.4.0"
+ "fileVersion": "1.0.0.0"
}
}
},
@@ -983,6 +1053,58 @@
}
}
},
+ "xunit/2.9.3": {
+ "dependencies": {
+ "xunit.analyzers": "1.18.0",
+ "xunit.assert": "2.9.3",
+ "xunit.core": "2.9.3"
+ }
+ },
+ "xunit.abstractions/2.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/xunit.abstractions.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "xunit.analyzers/1.18.0": {},
+ "xunit.assert/2.9.3": {
+ "runtime": {
+ "lib/net6.0/xunit.assert.dll": {
+ "assemblyVersion": "2.9.3.0",
+ "fileVersion": "2.9.3.0"
+ }
+ }
+ },
+ "xunit.core/2.9.3": {
+ "dependencies": {
+ "xunit.extensibility.core": "2.9.3",
+ "xunit.extensibility.execution": "2.9.3"
+ }
+ },
+ "xunit.extensibility.core/2.9.3": {
+ "dependencies": {
+ "xunit.abstractions": "2.0.3"
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.core.dll": {
+ "assemblyVersion": "2.9.3.0",
+ "fileVersion": "2.9.3.0"
+ }
+ }
+ },
+ "xunit.extensibility.execution/2.9.3": {
+ "dependencies": {
+ "xunit.extensibility.core": "2.9.3"
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.execution.dotnet.dll": {
+ "assemblyVersion": "2.9.3.0",
+ "fileVersion": "2.9.3.0"
+ }
+ }
+ },
"ZXing.Net/0.16.10": {
"runtime": {
"lib/net8.0/zxing.dll": {
@@ -990,6 +1112,19 @@
"fileVersion": "0.16.10.0"
}
}
+ },
+ "ClassLibrary/1.0.0": {
+ "dependencies": {
+ "OxyPlot.ImageSharp": "2.2.0",
+ "SixLabors.Fonts": "2.1.2",
+ "xunit": "2.9.3"
+ },
+ "runtime": {
+ "ClassLibrary.dll": {
+ "assemblyVersion": "1.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
}
}
},
@@ -1328,6 +1463,34 @@
"path": "npgsql.entityframeworkcore.postgresql/8.0.10",
"hashPath": "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512"
},
+ "OxyPlot/2014.1.517": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-x2kI4JyC5diUSD8xSo8TiE4Ab+BrqLD8DusI5+4w6kMTtcKgx5kcH+SlgRGeSMFtZb3X7ABFHKrGpqbWB6ILZw==",
+ "path": "oxyplot/2014.1.517",
+ "hashPath": "oxyplot.2014.1.517.nupkg.sha512"
+ },
+ "OxyPlot.Avalonia/2.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eYIRqGFeIKg2Iv4kdcfxbQvfqmApqBe556WZjlQ0MU3gH+KRVetigYSFFi74yyUEFLI9kbNwAvS41FeTHgZBrQ==",
+ "path": "oxyplot.avalonia/2.1.0",
+ "hashPath": "oxyplot.avalonia.2.1.0.nupkg.sha512"
+ },
+ "OxyPlot.Core/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QhXNdXR5FPpro/VoLx3BOp6AhQo7YrbfmWEZ9cgY+pnYM7RYORZjnu+aDMA8ka9A1r8hLkX//NbCPZNUv+l8qA==",
+ "path": "oxyplot.core/2.2.0",
+ "hashPath": "oxyplot.core.2.2.0.nupkg.sha512"
+ },
+ "OxyPlot.ImageSharp/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-W/L5TMvYPC7LS4TQd/DVq4lzeWovRXHwe0e+Sq+NDOG/waLcUYOyReP6cinDVPckJF3iaXEPyMqHwxtpup61OA==",
+ "path": "oxyplot.imagesharp/2.2.0",
+ "hashPath": "oxyplot.imagesharp.2.2.0.nupkg.sha512"
+ },
"PdfSharpCore/1.3.65": {
"type": "package",
"serviceable": true,
@@ -1342,19 +1505,26 @@
"path": "sharpziplib/1.4.2",
"hashPath": "sharpziplib.1.4.2.nupkg.sha512"
},
- "SixLabors.Fonts/1.0.0-beta17": {
+ "SixLabors.Fonts/2.1.2": {
"type": "package",
"serviceable": true,
- "sha512": "sha512-qubgVovAoSR7vyv9tJ68gSzRIPWz7HBjTM9rwAaLjpcJ6T50arnX+GHAZcC0r2mVagyRMknCNda3DGoe8StUUQ==",
- "path": "sixlabors.fonts/1.0.0-beta17",
- "hashPath": "sixlabors.fonts.1.0.0-beta17.nupkg.sha512"
+ "sha512": "sha512-UGl99i9hCJ4MXLaoGw2aq8nklIL/31QcRU7oqQza4AqCg54XojtIIRczj9aO7zJPDGF+XoA3yJ6X1NOfhZOrWA==",
+ "path": "sixlabors.fonts/2.1.2",
+ "hashPath": "sixlabors.fonts.2.1.2.nupkg.sha512"
},
- "SixLabors.ImageSharp/1.0.4": {
+ "SixLabors.ImageSharp/2.1.9": {
"type": "package",
"serviceable": true,
- "sha512": "sha512-H2rPiEr2ddBOltOuqRYhpLBAsQXDAhbzMMhhuksnBG2oefup1MXMchALe7yYkKJksNbtxbZHKeM6dn/68I75qw==",
- "path": "sixlabors.imagesharp/1.0.4",
- "hashPath": "sixlabors.imagesharp.1.0.4.nupkg.sha512"
+ "sha512": "sha512-VcjfKbOExie3RgZGrQL1jJMI4iZ3J9B6ifDo2QpDVJUYhTZKVcKnBhpNOHqbvNjHgadAks1jzhRjB7OZet1PJA==",
+ "path": "sixlabors.imagesharp/2.1.9",
+ "hashPath": "sixlabors.imagesharp.2.1.9.nupkg.sha512"
+ },
+ "SixLabors.ImageSharp.Drawing/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-02z/+BESLiV/dn8NV+9+DkK9X6R2UmcwR8AVytupvwKa0EPVqYyx8zh+PpksqSjpibDVnVMXlq3OaMCDeDrEug==",
+ "path": "sixlabors.imagesharp.drawing/1.0.0",
+ "hashPath": "sixlabors.imagesharp.drawing.1.0.0.nupkg.sha512"
},
"SkiaSharp/2.88.8": {
"type": "package",
@@ -1489,12 +1659,66 @@
"path": "tmds.dbus.protocol/0.20.0",
"hashPath": "tmds.dbus.protocol.0.20.0.nupkg.sha512"
},
+ "xunit/2.9.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==",
+ "path": "xunit/2.9.3",
+ "hashPath": "xunit.2.9.3.nupkg.sha512"
+ },
+ "xunit.abstractions/2.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==",
+ "path": "xunit.abstractions/2.0.3",
+ "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512"
+ },
+ "xunit.analyzers/1.18.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==",
+ "path": "xunit.analyzers/1.18.0",
+ "hashPath": "xunit.analyzers.1.18.0.nupkg.sha512"
+ },
+ "xunit.assert/2.9.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==",
+ "path": "xunit.assert/2.9.3",
+ "hashPath": "xunit.assert.2.9.3.nupkg.sha512"
+ },
+ "xunit.core/2.9.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==",
+ "path": "xunit.core/2.9.3",
+ "hashPath": "xunit.core.2.9.3.nupkg.sha512"
+ },
+ "xunit.extensibility.core/2.9.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==",
+ "path": "xunit.extensibility.core/2.9.3",
+ "hashPath": "xunit.extensibility.core.2.9.3.nupkg.sha512"
+ },
+ "xunit.extensibility.execution/2.9.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==",
+ "path": "xunit.extensibility.execution/2.9.3",
+ "hashPath": "xunit.extensibility.execution.2.9.3.nupkg.sha512"
+ },
"ZXing.Net/0.16.10": {
"type": "package",
"serviceable": true,
"sha512": "sha512-9avtcn21T7Ndcl8PQ1LHR7/wEoCruX1QKKHvO6zBPTsDW9IdvR5vKOmd618AY+DtDWZz8NaFDTkpbZdgaF4l4w==",
"path": "zxing.net/0.16.10",
"hashPath": "zxing.net.0.16.10.nupkg.sha512"
+ },
+ "ClassLibrary/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
}
}
}
\ No newline at end of file
diff --git a/dmeo040225/bin/Debug/net8.0/dmeo040225.dll b/dmeo040225/bin/Debug/net8.0/dmeo040225.dll
index b5a7e14..e21a3cf 100644
Binary files a/dmeo040225/bin/Debug/net8.0/dmeo040225.dll and b/dmeo040225/bin/Debug/net8.0/dmeo040225.dll differ
diff --git a/dmeo040225/bin/Debug/net8.0/dmeo040225.pdb b/dmeo040225/bin/Debug/net8.0/dmeo040225.pdb
index b1b6ad7..ca56424 100644
Binary files a/dmeo040225/bin/Debug/net8.0/dmeo040225.pdb and b/dmeo040225/bin/Debug/net8.0/dmeo040225.pdb differ
diff --git a/dmeo040225/bin/Debug/net8.0/xunit.abstractions.dll b/dmeo040225/bin/Debug/net8.0/xunit.abstractions.dll
new file mode 100755
index 0000000..d1e90bf
Binary files /dev/null and b/dmeo040225/bin/Debug/net8.0/xunit.abstractions.dll differ
diff --git a/dmeo040225/bin/Debug/net8.0/xunit.assert.dll b/dmeo040225/bin/Debug/net8.0/xunit.assert.dll
new file mode 100755
index 0000000..99bc34c
Binary files /dev/null and b/dmeo040225/bin/Debug/net8.0/xunit.assert.dll differ
diff --git a/dmeo040225/bin/Debug/net8.0/xunit.core.dll b/dmeo040225/bin/Debug/net8.0/xunit.core.dll
new file mode 100755
index 0000000..d56aa16
Binary files /dev/null and b/dmeo040225/bin/Debug/net8.0/xunit.core.dll differ
diff --git a/dmeo040225/bin/Debug/net8.0/xunit.execution.dotnet.dll b/dmeo040225/bin/Debug/net8.0/xunit.execution.dotnet.dll
new file mode 100755
index 0000000..7a1cc87
Binary files /dev/null and b/dmeo040225/bin/Debug/net8.0/xunit.execution.dotnet.dll differ
diff --git a/dmeo040225/dmeo040225.csproj b/dmeo040225/dmeo040225.csproj
index 904c398..232bd3f 100644
--- a/dmeo040225/dmeo040225.csproj
+++ b/dmeo040225/dmeo040225.csproj
@@ -24,7 +24,11 @@
runtime; build; native; contentfiles; analyzers; buildtransitive
+
+
+
+
diff --git a/dmeo040225/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache b/dmeo040225/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
index 6663894..fc9c31c 100644
--- a/dmeo040225/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
+++ b/dmeo040225/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
@@ -1 +1 @@
-9e967998c0c77c5906d6208cafedc54fe337adf49c4b492fadf9887422a3e385
+bdbbe43e74f8bdca9021957b03bb0a75e2dd35f837085b116a10548db0823b86
diff --git a/dmeo040225/obj/Debug/net8.0/Avalonia/dmeo040225.dll b/dmeo040225/obj/Debug/net8.0/Avalonia/dmeo040225.dll
index b5a7e14..e21a3cf 100644
Binary files a/dmeo040225/obj/Debug/net8.0/Avalonia/dmeo040225.dll and b/dmeo040225/obj/Debug/net8.0/Avalonia/dmeo040225.dll differ
diff --git a/dmeo040225/obj/Debug/net8.0/Avalonia/dmeo040225.pdb b/dmeo040225/obj/Debug/net8.0/Avalonia/dmeo040225.pdb
index b1b6ad7..ca56424 100644
Binary files a/dmeo040225/obj/Debug/net8.0/Avalonia/dmeo040225.pdb and b/dmeo040225/obj/Debug/net8.0/Avalonia/dmeo040225.pdb differ
diff --git a/dmeo040225/obj/Debug/net8.0/Avalonia/references b/dmeo040225/obj/Debug/net8.0/Avalonia/references
index 34ec93f..4ea533d 100644
--- a/dmeo040225/obj/Debug/net8.0/Avalonia/references
+++ b/dmeo040225/obj/Debug/net8.0/Avalonia/references
@@ -22,6 +22,7 @@
/Users/rinchi/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Vulkan.dll
/Users/rinchi/.nuget/packages/avalonia.win32/11.2.1/lib/net8.0/Avalonia.Win32.dll
/Users/rinchi/.nuget/packages/avalonia.x11/11.2.1/lib/net8.0/Avalonia.X11.dll
+/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/obj/Debug/net8.0/ref/ClassLibrary.dll
/Users/rinchi/.nuget/packages/harfbuzzsharp/7.3.0.2/lib/net6.0/HarfBuzzSharp.dll
/Users/rinchi/.nuget/packages/sharpziplib/1.4.2/lib/net6.0/ICSharpCode.SharpZipLib.dll
/Users/rinchi/.nuget/packages/microcom.runtime/0.11.0/lib/net5.0/MicroCom.Runtime.dll
@@ -46,9 +47,16 @@
/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.8/ref/net8.0/netstandard.dll
/Users/rinchi/.nuget/packages/npgsql/8.0.5/lib/net8.0/Npgsql.dll
/Users/rinchi/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.10/lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
+/Users/rinchi/.nuget/packages/oxyplot.avalonia/2.1.0/lib/netstandard2.0/OxyPlot.Avalonia.dll
+/Users/rinchi/.nuget/packages/oxyplot.core/2.2.0/lib/net8.0/OxyPlot.dll
+/Users/rinchi/.nuget/packages/oxyplot.imagesharp/2.2.0/lib/netstandard2.0/OxyPlot.ImageSharp.dll
+/Users/rinchi/.nuget/packages/oxyplot/2014.1.517/lib/net45/OxyPlot.WindowsForms.dll
+/Users/rinchi/.nuget/packages/oxyplot/2014.1.517/lib/net45/OxyPlot.Wpf.dll
+/Users/rinchi/.nuget/packages/oxyplot/2014.1.517/lib/net45/OxyPlot.Xps.dll
/Users/rinchi/.nuget/packages/pdfsharpcore/1.3.65/lib/net8.0/PdfSharpCore.dll
-/Users/rinchi/.nuget/packages/sixlabors.fonts/1.0.0-beta17/lib/netcoreapp3.1/SixLabors.Fonts.dll
-/Users/rinchi/.nuget/packages/sixlabors.imagesharp/1.0.4/lib/netcoreapp3.1/SixLabors.ImageSharp.dll
+/Users/rinchi/.nuget/packages/sixlabors.fonts/2.1.2/lib/net6.0/SixLabors.Fonts.dll
+/Users/rinchi/.nuget/packages/sixlabors.imagesharp/2.1.9/lib/netcoreapp3.1/SixLabors.ImageSharp.dll
+/Users/rinchi/.nuget/packages/sixlabors.imagesharp.drawing/1.0.0/lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.dll
/Users/rinchi/.nuget/packages/skiasharp/2.88.8/lib/net6.0/SkiaSharp.dll
/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.8/ref/net8.0/System.AppContext.dll
/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.8/ref/net8.0/System.Buffers.dll
@@ -208,4 +216,8 @@
/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.8/ref/net8.0/System.Xml.XPath.XDocument.dll
/Users/rinchi/.nuget/packages/tmds.dbus.protocol/0.20.0/lib/net8.0/Tmds.DBus.Protocol.dll
/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.8/ref/net8.0/WindowsBase.dll
+/Users/rinchi/.nuget/packages/xunit.abstractions/2.0.3/lib/netstandard2.0/xunit.abstractions.dll
+/Users/rinchi/.nuget/packages/xunit.assert/2.9.3/lib/net6.0/xunit.assert.dll
+/Users/rinchi/.nuget/packages/xunit.extensibility.core/2.9.3/lib/netstandard1.1/xunit.core.dll
+/Users/rinchi/.nuget/packages/xunit.extensibility.execution/2.9.3/lib/netstandard1.1/xunit.execution.dotnet.dll
/Users/rinchi/.nuget/packages/zxing.net/0.16.10/lib/net8.0/zxing.dll
diff --git a/dmeo040225/obj/Debug/net8.0/Avalonia/resources b/dmeo040225/obj/Debug/net8.0/Avalonia/resources
index 147f952..627c18b 100644
Binary files a/dmeo040225/obj/Debug/net8.0/Avalonia/resources and b/dmeo040225/obj/Debug/net8.0/Avalonia/resources differ
diff --git a/dmeo040225/obj/Debug/net8.0/dmeo040225.AssemblyInfo.cs b/dmeo040225/obj/Debug/net8.0/dmeo040225.AssemblyInfo.cs
index 28bca5b..e55225f 100644
--- a/dmeo040225/obj/Debug/net8.0/dmeo040225.AssemblyInfo.cs
+++ b/dmeo040225/obj/Debug/net8.0/dmeo040225.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("dmeo040225")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6d23bbdf240710f354f0266ce244b403c5a39457")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c943086e791084356af391570f707e630874e6e1")]
[assembly: System.Reflection.AssemblyProductAttribute("dmeo040225")]
[assembly: System.Reflection.AssemblyTitleAttribute("dmeo040225")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/dmeo040225/obj/Debug/net8.0/dmeo040225.AssemblyInfoInputs.cache b/dmeo040225/obj/Debug/net8.0/dmeo040225.AssemblyInfoInputs.cache
index c5922a3..3444741 100644
--- a/dmeo040225/obj/Debug/net8.0/dmeo040225.AssemblyInfoInputs.cache
+++ b/dmeo040225/obj/Debug/net8.0/dmeo040225.AssemblyInfoInputs.cache
@@ -1 +1 @@
-859eff62b0bd0665e3240c57ddf4859b01bcad88e29fb0d145a51cbc4045e86a
+3ccf8eb4df05f39e57e039fa3ec13e00bd88af63b9bb6ef3ef8c87305cfc38ce
diff --git a/dmeo040225/obj/Debug/net8.0/dmeo040225.GeneratedMSBuildEditorConfig.editorconfig b/dmeo040225/obj/Debug/net8.0/dmeo040225.GeneratedMSBuildEditorConfig.editorconfig
index 7d5a1ef..fe26b87 100644
--- a/dmeo040225/obj/Debug/net8.0/dmeo040225.GeneratedMSBuildEditorConfig.editorconfig
+++ b/dmeo040225/obj/Debug/net8.0/dmeo040225.GeneratedMSBuildEditorConfig.editorconfig
@@ -46,5 +46,8 @@ build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
[/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/OlderWindow.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
+[/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/ReportWindow.axaml]
+build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
+
[/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/SellerWindow.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
diff --git a/dmeo040225/obj/Debug/net8.0/dmeo040225.assets.cache b/dmeo040225/obj/Debug/net8.0/dmeo040225.assets.cache
index 2153264..003e43f 100644
Binary files a/dmeo040225/obj/Debug/net8.0/dmeo040225.assets.cache and b/dmeo040225/obj/Debug/net8.0/dmeo040225.assets.cache differ
diff --git a/dmeo040225/obj/Debug/net8.0/dmeo040225.csproj.AssemblyReference.cache b/dmeo040225/obj/Debug/net8.0/dmeo040225.csproj.AssemblyReference.cache
index b0515ae..7bdf2ac 100644
Binary files a/dmeo040225/obj/Debug/net8.0/dmeo040225.csproj.AssemblyReference.cache and b/dmeo040225/obj/Debug/net8.0/dmeo040225.csproj.AssemblyReference.cache differ
diff --git a/dmeo040225/obj/Debug/net8.0/dmeo040225.csproj.CoreCompileInputs.cache b/dmeo040225/obj/Debug/net8.0/dmeo040225.csproj.CoreCompileInputs.cache
index 08e6ec5..2630bc0 100644
--- a/dmeo040225/obj/Debug/net8.0/dmeo040225.csproj.CoreCompileInputs.cache
+++ b/dmeo040225/obj/Debug/net8.0/dmeo040225.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-3d1af8b94265d0f974c99c7ade78a323d9abeff7a6afeeeb9b7f8c80a3981b0b
+639bd43d1bbc4deb48bf995559d40e93660497bd357f014ae3223d7ad2e9533c
diff --git a/dmeo040225/obj/Debug/net8.0/dmeo040225.csproj.FileListAbsolute.txt b/dmeo040225/obj/Debug/net8.0/dmeo040225.csproj.FileListAbsolute.txt
index d3c0b07..f09c361 100644
--- a/dmeo040225/obj/Debug/net8.0/dmeo040225.csproj.FileListAbsolute.txt
+++ b/dmeo040225/obj/Debug/net8.0/dmeo040225.csproj.FileListAbsolute.txt
@@ -152,3 +152,16 @@
/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/SixLabors.ImageSharp.dll
/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/zxing.dll
/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/de/PdfSharpCore.resources.dll
+/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/ClassLibrary.dll
+/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/ClassLibrary.pdb
+/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/OxyPlot.WindowsForms.dll
+/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/OxyPlot.Wpf.dll
+/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/OxyPlot.Xps.dll
+/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/OxyPlot.Avalonia.dll
+/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/OxyPlot.dll
+/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/OxyPlot.ImageSharp.dll
+/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/SixLabors.ImageSharp.Drawing.dll
+/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/xunit.abstractions.dll
+/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/xunit.assert.dll
+/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/xunit.core.dll
+/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/bin/Debug/net8.0/xunit.execution.dotnet.dll
diff --git a/dmeo040225/obj/Debug/net8.0/dmeo040225.dll b/dmeo040225/obj/Debug/net8.0/dmeo040225.dll
index fb3f230..191e561 100644
Binary files a/dmeo040225/obj/Debug/net8.0/dmeo040225.dll and b/dmeo040225/obj/Debug/net8.0/dmeo040225.dll differ
diff --git a/dmeo040225/obj/Debug/net8.0/dmeo040225.pdb b/dmeo040225/obj/Debug/net8.0/dmeo040225.pdb
index f8a365d..e46e2e6 100644
Binary files a/dmeo040225/obj/Debug/net8.0/dmeo040225.pdb and b/dmeo040225/obj/Debug/net8.0/dmeo040225.pdb differ
diff --git a/dmeo040225/obj/Debug/net8.0/ref/dmeo040225.dll b/dmeo040225/obj/Debug/net8.0/ref/dmeo040225.dll
index 57a9d80..573cfb1 100644
Binary files a/dmeo040225/obj/Debug/net8.0/ref/dmeo040225.dll and b/dmeo040225/obj/Debug/net8.0/ref/dmeo040225.dll differ
diff --git a/dmeo040225/obj/Debug/net8.0/refint/Avalonia/dmeo040225.dll b/dmeo040225/obj/Debug/net8.0/refint/Avalonia/dmeo040225.dll
index 57a9d80..573cfb1 100644
Binary files a/dmeo040225/obj/Debug/net8.0/refint/Avalonia/dmeo040225.dll and b/dmeo040225/obj/Debug/net8.0/refint/Avalonia/dmeo040225.dll differ
diff --git a/dmeo040225/obj/Debug/net8.0/refint/dmeo040225.dll b/dmeo040225/obj/Debug/net8.0/refint/dmeo040225.dll
index 43aae29..d9c4cf1 100644
Binary files a/dmeo040225/obj/Debug/net8.0/refint/dmeo040225.dll and b/dmeo040225/obj/Debug/net8.0/refint/dmeo040225.dll differ
diff --git a/dmeo040225/obj/dmeo040225.csproj.nuget.dgspec.json b/dmeo040225/obj/dmeo040225.csproj.nuget.dgspec.json
index ea681b4..f8bb7b8 100644
--- a/dmeo040225/obj/dmeo040225.csproj.nuget.dgspec.json
+++ b/dmeo040225/obj/dmeo040225.csproj.nuget.dgspec.json
@@ -42,6 +42,20 @@
"frameworks": {
"net8.0": {
"targetAlias": "net8.0",
+ "dependencies": {
+ "OxyPlot.ImageSharp": {
+ "target": "Package",
+ "version": "[2.2.0, )"
+ },
+ "SixLabors.Fonts": {
+ "target": "Package",
+ "version": "[2.1.2, )"
+ },
+ "xunit": {
+ "target": "Package",
+ "version": "[2.9.3, )"
+ }
+ },
"imports": [
"net461",
"net462",
@@ -139,10 +153,26 @@
"target": "Package",
"version": "[8.0.10, )"
},
+ "OxyPlot": {
+ "target": "Package",
+ "version": "[2.1.0, )"
+ },
+ "OxyPlot.Avalonia": {
+ "target": "Package",
+ "version": "[2.1.0, )"
+ },
+ "OxyPlot.ImageSharp": {
+ "target": "Package",
+ "version": "[2.2.0, )"
+ },
"PdfSharpCore": {
"target": "Package",
"version": "[1.3.65, )"
},
+ "SixLabors.Fonts": {
+ "target": "Package",
+ "version": "[2.1.2, )"
+ },
"ZXing.Net": {
"target": "Package",
"version": "[0.16.10, )"
diff --git a/dmeo040225/obj/dmeo040225.csproj.nuget.g.props b/dmeo040225/obj/dmeo040225.csproj.nuget.g.props
index 92e5d57..103eaf3 100644
--- a/dmeo040225/obj/dmeo040225.csproj.nuget.g.props
+++ b/dmeo040225/obj/dmeo040225.csproj.nuget.g.props
@@ -14,14 +14,15 @@
+
-
- /Users/rinchi/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3
+ /Users/rinchi/.nuget/packages/xunit.analyzers/1.18.0
/Users/rinchi/.nuget/packages/avalonia.buildservices/0.0.29
/Users/rinchi/.nuget/packages/avalonia/11.2.1
+ /Users/rinchi/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3
\ No newline at end of file
diff --git a/dmeo040225/obj/dmeo040225.csproj.nuget.g.targets b/dmeo040225/obj/dmeo040225.csproj.nuget.g.targets
index 27dd88a..5a86a5c 100644
--- a/dmeo040225/obj/dmeo040225.csproj.nuget.g.targets
+++ b/dmeo040225/obj/dmeo040225.csproj.nuget.g.targets
@@ -2,10 +2,10 @@
+
+
-
-
\ No newline at end of file
diff --git a/dmeo040225/obj/project.assets.json b/dmeo040225/obj/project.assets.json
index 9e8dda2..f219441 100644
--- a/dmeo040225/obj/project.assets.json
+++ b/dmeo040225/obj/project.assets.json
@@ -1035,6 +1035,75 @@
}
}
},
+ "OxyPlot/2014.1.517": {
+ "type": "package",
+ "compile": {
+ "lib/net45/OxyPlot.WindowsForms.dll": {
+ "related": ".pdb;.XML"
+ },
+ "lib/net45/OxyPlot.Wpf.dll": {
+ "related": ".pdb;.XML"
+ },
+ "lib/net45/OxyPlot.Xps.dll": {
+ "related": ".pdb;.XML"
+ }
+ },
+ "runtime": {
+ "lib/net45/OxyPlot.WindowsForms.dll": {
+ "related": ".pdb;.XML"
+ },
+ "lib/net45/OxyPlot.Wpf.dll": {
+ "related": ".pdb;.XML"
+ },
+ "lib/net45/OxyPlot.Xps.dll": {
+ "related": ".pdb;.XML"
+ }
+ }
+ },
+ "OxyPlot.Avalonia/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Avalonia": "0.10.11",
+ "OxyPlot.Core": "2.1.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/OxyPlot.Avalonia.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/OxyPlot.Avalonia.dll": {}
+ }
+ },
+ "OxyPlot.Core/2.2.0": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/OxyPlot.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/OxyPlot.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "OxyPlot.ImageSharp/2.2.0": {
+ "type": "package",
+ "dependencies": {
+ "OxyPlot.Core": "2.2.0",
+ "SixLabors.ImageSharp": "2.1.9",
+ "SixLabors.ImageSharp.Drawing": "1.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/OxyPlot.ImageSharp.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/OxyPlot.ImageSharp.dll": {
+ "related": ".xml"
+ }
+ }
+ },
"PdfSharpCore/1.3.65": {
"type": "package",
"dependencies": {
@@ -1067,21 +1136,25 @@
}
}
},
- "SixLabors.Fonts/1.0.0-beta17": {
+ "SixLabors.Fonts/2.1.2": {
"type": "package",
"compile": {
- "lib/netcoreapp3.1/SixLabors.Fonts.dll": {
+ "lib/net6.0/SixLabors.Fonts.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/netcoreapp3.1/SixLabors.Fonts.dll": {
+ "lib/net6.0/SixLabors.Fonts.dll": {
"related": ".xml"
}
}
},
- "SixLabors.ImageSharp/1.0.4": {
+ "SixLabors.ImageSharp/2.1.9": {
"type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0",
+ "System.Text.Encoding.CodePages": "5.0.0"
+ },
"compile": {
"lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
"related": ".xml"
@@ -1093,6 +1166,23 @@
}
}
},
+ "SixLabors.ImageSharp.Drawing/1.0.0": {
+ "type": "package",
+ "dependencies": {
+ "SixLabors.Fonts": "1.0.0",
+ "SixLabors.ImageSharp": "2.1.5"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.dll": {
+ "related": ".xml"
+ }
+ }
+ },
"SkiaSharp/2.88.8": {
"type": "package",
"dependencies": {
@@ -1363,7 +1453,7 @@
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"type": "package",
"compile": {
- "lib/net6.0/_._": {
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
"related": ".xml"
}
},
@@ -1382,7 +1472,7 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/net6.0/_._": {
+ "lib/net6.0/System.Text.Encoding.CodePages.dll": {
"related": ".xml"
}
},
@@ -1429,6 +1519,88 @@
"lib/net8.0/Tmds.DBus.Protocol.dll": {}
}
},
+ "xunit/2.9.3": {
+ "type": "package",
+ "dependencies": {
+ "xunit.analyzers": "1.18.0",
+ "xunit.assert": "2.9.3",
+ "xunit.core": "[2.9.3]"
+ }
+ },
+ "xunit.abstractions/2.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/xunit.abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/xunit.abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "xunit.analyzers/1.18.0": {
+ "type": "package"
+ },
+ "xunit.assert/2.9.3": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/xunit.assert.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/xunit.assert.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "xunit.core/2.9.3": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.9.3]",
+ "xunit.extensibility.execution": "[2.9.3]"
+ },
+ "build": {
+ "build/_._": {}
+ },
+ "buildMultiTargeting": {
+ "buildMultiTargeting/_._": {}
+ }
+ },
+ "xunit.extensibility.core/2.9.3": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "2.0.3"
+ },
+ "compile": {
+ "lib/netstandard1.1/xunit.core.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.core.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "xunit.extensibility.execution/2.9.3": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.9.3]"
+ },
+ "compile": {
+ "lib/netstandard1.1/xunit.execution.dotnet.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.execution.dotnet.dll": {
+ "related": ".xml"
+ }
+ }
+ },
"ZXing.Net/0.16.10": {
"type": "package",
"compile": {
@@ -1445,6 +1617,11 @@
"ClassLibrary/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v8.0",
+ "dependencies": {
+ "OxyPlot.ImageSharp": "2.2.0",
+ "SixLabors.Fonts": "2.1.2",
+ "xunit": "2.9.3"
+ },
"compile": {
"bin/placeholder/ClassLibrary.dll": {}
},
@@ -3043,6 +3220,102 @@
"postgresql.png"
]
},
+ "OxyPlot/2014.1.517": {
+ "sha512": "x2kI4JyC5diUSD8xSo8TiE4Ab+BrqLD8DusI5+4w6kMTtcKgx5kcH+SlgRGeSMFtZb3X7ABFHKrGpqbWB6ILZw==",
+ "type": "package",
+ "path": "oxyplot/2014.1.517",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "AUTHORS",
+ "CONTRIBUTORS",
+ "LICENSE",
+ "README.md",
+ "lib/OxyPlot.dll",
+ "lib/OxyPlot.pdb",
+ "lib/OxyPlot.xml",
+ "lib/net40/OxyPlot.WindowsForms.XML",
+ "lib/net40/OxyPlot.WindowsForms.dll",
+ "lib/net40/OxyPlot.WindowsForms.pdb",
+ "lib/net40/OxyPlot.Wpf.XML",
+ "lib/net40/OxyPlot.Wpf.dll",
+ "lib/net40/OxyPlot.Wpf.pdb",
+ "lib/net40/OxyPlot.Xps.XML",
+ "lib/net40/OxyPlot.Xps.dll",
+ "lib/net40/OxyPlot.Xps.pdb",
+ "lib/net45/OxyPlot.WindowsForms.XML",
+ "lib/net45/OxyPlot.WindowsForms.dll",
+ "lib/net45/OxyPlot.WindowsForms.pdb",
+ "lib/net45/OxyPlot.Wpf.XML",
+ "lib/net45/OxyPlot.Wpf.dll",
+ "lib/net45/OxyPlot.Wpf.pdb",
+ "lib/net45/OxyPlot.Xps.XML",
+ "lib/net45/OxyPlot.Xps.dll",
+ "lib/net45/OxyPlot.Xps.pdb",
+ "lib/portable-windows8+wpa81/OxyPlot.WindowsUniversal/OxyPlot.WindowsUniversal.dll",
+ "lib/portable-windows8+wpa81/OxyPlot.WindowsUniversal/OxyPlot.WindowsUniversal.pdb",
+ "lib/portable-windows8+wpa81/OxyPlot.WindowsUniversal/OxyPlot.WindowsUniversal.pri",
+ "lib/portable-windows8+wpa81/OxyPlot.WindowsUniversal/OxyPlot.WindowsUniversal.xml",
+ "lib/portable-windows8+wpa81/OxyPlot.WindowsUniversal/OxyPlot.WindowsUniversal.xr.xml",
+ "lib/portable-windows8+wpa81/OxyPlot.WindowsUniversal/OxyPlot.WindowsUniversal/Themes/Generic.xbf",
+ "lib/sl5/OxyPlot.Silverlight.XML",
+ "lib/sl5/OxyPlot.Silverlight.dll",
+ "lib/sl5/OxyPlot.Silverlight.pdb",
+ "lib/windowsphone8/OxyPlot.WP8.XML",
+ "lib/windowsphone8/OxyPlot.WP8.dll",
+ "lib/windowsphone8/OxyPlot.WP8.pdb",
+ "oxyplot.2014.1.517.nupkg.sha512",
+ "oxyplot.nuspec"
+ ]
+ },
+ "OxyPlot.Avalonia/2.1.0": {
+ "sha512": "eYIRqGFeIKg2Iv4kdcfxbQvfqmApqBe556WZjlQ0MU3gH+KRVetigYSFFi74yyUEFLI9kbNwAvS41FeTHgZBrQ==",
+ "type": "package",
+ "path": "oxyplot.avalonia/2.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/OxyPlot.Avalonia.dll",
+ "oxyplot.avalonia.2.1.0.nupkg.sha512",
+ "oxyplot.avalonia.nuspec"
+ ]
+ },
+ "OxyPlot.Core/2.2.0": {
+ "sha512": "QhXNdXR5FPpro/VoLx3BOp6AhQo7YrbfmWEZ9cgY+pnYM7RYORZjnu+aDMA8ka9A1r8hLkX//NbCPZNUv+l8qA==",
+ "type": "package",
+ "path": "oxyplot.core/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "OxyPlot_128.png",
+ "README.md",
+ "lib/net462/OxyPlot.dll",
+ "lib/net462/OxyPlot.xml",
+ "lib/net6.0/OxyPlot.dll",
+ "lib/net6.0/OxyPlot.xml",
+ "lib/net8.0/OxyPlot.dll",
+ "lib/net8.0/OxyPlot.xml",
+ "lib/netstandard2.0/OxyPlot.dll",
+ "lib/netstandard2.0/OxyPlot.xml",
+ "oxyplot.core.2.2.0.nupkg.sha512",
+ "oxyplot.core.nuspec"
+ ]
+ },
+ "OxyPlot.ImageSharp/2.2.0": {
+ "sha512": "W/L5TMvYPC7LS4TQd/DVq4lzeWovRXHwe0e+Sq+NDOG/waLcUYOyReP6cinDVPckJF3iaXEPyMqHwxtpup61OA==",
+ "type": "package",
+ "path": "oxyplot.imagesharp/2.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "OxyPlot_128.png",
+ "README.md",
+ "lib/netstandard2.0/OxyPlot.ImageSharp.dll",
+ "lib/netstandard2.0/OxyPlot.ImageSharp.xml",
+ "oxyplot.imagesharp.2.2.0.nupkg.sha512",
+ "oxyplot.imagesharp.nuspec"
+ ]
+ },
"PdfSharpCore/1.3.65": {
"sha512": "mkN1EZ1VtH4+x97DEvmno5goRU3j4myuWD7IxO9MuxRcc1iOcUfhq75RmxZSAH9dQCZhpGpLUJSkwlRRnzElAg==",
"type": "package",
@@ -3089,28 +3362,25 @@
"sharpziplib.nuspec"
]
},
- "SixLabors.Fonts/1.0.0-beta17": {
- "sha512": "qubgVovAoSR7vyv9tJ68gSzRIPWz7HBjTM9rwAaLjpcJ6T50arnX+GHAZcC0r2mVagyRMknCNda3DGoe8StUUQ==",
+ "SixLabors.Fonts/2.1.2": {
+ "sha512": "UGl99i9hCJ4MXLaoGw2aq8nklIL/31QcRU7oqQza4AqCg54XojtIIRczj9aO7zJPDGF+XoA3yJ6X1NOfhZOrWA==",
"type": "package",
- "path": "sixlabors.fonts/1.0.0-beta17",
+ "path": "sixlabors.fonts/2.1.2",
"files": [
".nupkg.metadata",
".signature.p7s",
- "lib/netcoreapp3.1/SixLabors.Fonts.dll",
- "lib/netcoreapp3.1/SixLabors.Fonts.xml",
- "lib/netstandard2.0/SixLabors.Fonts.dll",
- "lib/netstandard2.0/SixLabors.Fonts.xml",
- "lib/netstandard2.1/SixLabors.Fonts.dll",
- "lib/netstandard2.1/SixLabors.Fonts.xml",
- "sixlabors.fonts.1.0.0-beta17.nupkg.sha512",
+ "LICENSE",
+ "lib/net6.0/SixLabors.Fonts.dll",
+ "lib/net6.0/SixLabors.Fonts.xml",
"sixlabors.fonts.128.png",
+ "sixlabors.fonts.2.1.2.nupkg.sha512",
"sixlabors.fonts.nuspec"
]
},
- "SixLabors.ImageSharp/1.0.4": {
- "sha512": "H2rPiEr2ddBOltOuqRYhpLBAsQXDAhbzMMhhuksnBG2oefup1MXMchALe7yYkKJksNbtxbZHKeM6dn/68I75qw==",
+ "SixLabors.ImageSharp/2.1.9": {
+ "sha512": "VcjfKbOExie3RgZGrQL1jJMI4iZ3J9B6ifDo2QpDVJUYhTZKVcKnBhpNOHqbvNjHgadAks1jzhRjB7OZet1PJA==",
"type": "package",
- "path": "sixlabors.imagesharp/1.0.4",
+ "path": "sixlabors.imagesharp/2.1.9",
"files": [
".nupkg.metadata",
".signature.p7s",
@@ -3120,17 +3390,37 @@
"lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
"lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
"lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
- "lib/netstandard1.3/SixLabors.ImageSharp.dll",
- "lib/netstandard1.3/SixLabors.ImageSharp.xml",
"lib/netstandard2.0/SixLabors.ImageSharp.dll",
"lib/netstandard2.0/SixLabors.ImageSharp.xml",
"lib/netstandard2.1/SixLabors.ImageSharp.dll",
"lib/netstandard2.1/SixLabors.ImageSharp.xml",
- "sixlabors.imagesharp.1.0.4.nupkg.sha512",
"sixlabors.imagesharp.128.png",
+ "sixlabors.imagesharp.2.1.9.nupkg.sha512",
"sixlabors.imagesharp.nuspec"
]
},
+ "SixLabors.ImageSharp.Drawing/1.0.0": {
+ "sha512": "02z/+BESLiV/dn8NV+9+DkK9X6R2UmcwR8AVytupvwKa0EPVqYyx8zh+PpksqSjpibDVnVMXlq3OaMCDeDrEug==",
+ "type": "package",
+ "path": "sixlabors.imagesharp.drawing/1.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net472/SixLabors.ImageSharp.Drawing.dll",
+ "lib/net472/SixLabors.ImageSharp.Drawing.xml",
+ "lib/netcoreapp2.1/SixLabors.ImageSharp.Drawing.dll",
+ "lib/netcoreapp2.1/SixLabors.ImageSharp.Drawing.xml",
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.dll",
+ "lib/netcoreapp3.1/SixLabors.ImageSharp.Drawing.xml",
+ "lib/netstandard2.0/SixLabors.ImageSharp.Drawing.dll",
+ "lib/netstandard2.0/SixLabors.ImageSharp.Drawing.xml",
+ "lib/netstandard2.1/SixLabors.ImageSharp.Drawing.dll",
+ "lib/netstandard2.1/SixLabors.ImageSharp.Drawing.xml",
+ "sixlabors.imagesharp.drawing.1.0.0.nupkg.sha512",
+ "sixlabors.imagesharp.drawing.128.png",
+ "sixlabors.imagesharp.drawing.nuspec"
+ ]
+ },
"SkiaSharp/2.88.8": {
"sha512": "bRkp3uKp5ZI8gXYQT57uKwil1uobb2p8c69n7v5evlB/2JNcMAXVcw9DZAP5Ig3WSvgzGm2YSn27UVeOi05NlA==",
"type": "package",
@@ -3639,6 +3929,125 @@
"tmds.dbus.protocol.nuspec"
]
},
+ "xunit/2.9.3": {
+ "sha512": "TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==",
+ "type": "package",
+ "path": "xunit/2.9.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "xunit.2.9.3.nupkg.sha512",
+ "xunit.nuspec"
+ ]
+ },
+ "xunit.abstractions/2.0.3": {
+ "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==",
+ "type": "package",
+ "path": "xunit.abstractions/2.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net35/xunit.abstractions.dll",
+ "lib/net35/xunit.abstractions.xml",
+ "lib/netstandard1.0/xunit.abstractions.dll",
+ "lib/netstandard1.0/xunit.abstractions.xml",
+ "lib/netstandard2.0/xunit.abstractions.dll",
+ "lib/netstandard2.0/xunit.abstractions.xml",
+ "xunit.abstractions.2.0.3.nupkg.sha512",
+ "xunit.abstractions.nuspec"
+ ]
+ },
+ "xunit.analyzers/1.18.0": {
+ "sha512": "OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==",
+ "type": "package",
+ "path": "xunit.analyzers/1.18.0",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "analyzers/dotnet/cs/xunit.analyzers.dll",
+ "analyzers/dotnet/cs/xunit.analyzers.fixes.dll",
+ "tools/install.ps1",
+ "tools/uninstall.ps1",
+ "xunit.analyzers.1.18.0.nupkg.sha512",
+ "xunit.analyzers.nuspec"
+ ]
+ },
+ "xunit.assert/2.9.3": {
+ "sha512": "/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==",
+ "type": "package",
+ "path": "xunit.assert/2.9.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "lib/net6.0/xunit.assert.dll",
+ "lib/net6.0/xunit.assert.xml",
+ "lib/netstandard1.1/xunit.assert.dll",
+ "lib/netstandard1.1/xunit.assert.xml",
+ "xunit.assert.2.9.3.nupkg.sha512",
+ "xunit.assert.nuspec"
+ ]
+ },
+ "xunit.core/2.9.3": {
+ "sha512": "BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==",
+ "type": "package",
+ "path": "xunit.core/2.9.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "build/xunit.core.props",
+ "build/xunit.core.targets",
+ "buildMultiTargeting/xunit.core.props",
+ "buildMultiTargeting/xunit.core.targets",
+ "xunit.core.2.9.3.nupkg.sha512",
+ "xunit.core.nuspec"
+ ]
+ },
+ "xunit.extensibility.core/2.9.3": {
+ "sha512": "kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==",
+ "type": "package",
+ "path": "xunit.extensibility.core/2.9.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "lib/net452/xunit.core.dll",
+ "lib/net452/xunit.core.dll.tdnet",
+ "lib/net452/xunit.core.xml",
+ "lib/net452/xunit.runner.tdnet.dll",
+ "lib/net452/xunit.runner.utility.net452.dll",
+ "lib/netstandard1.1/xunit.core.dll",
+ "lib/netstandard1.1/xunit.core.xml",
+ "xunit.extensibility.core.2.9.3.nupkg.sha512",
+ "xunit.extensibility.core.nuspec"
+ ]
+ },
+ "xunit.extensibility.execution/2.9.3": {
+ "sha512": "yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==",
+ "type": "package",
+ "path": "xunit.extensibility.execution/2.9.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "_content/README.md",
+ "_content/logo-128-transparent.png",
+ "lib/net452/xunit.execution.desktop.dll",
+ "lib/net452/xunit.execution.desktop.xml",
+ "lib/netstandard1.1/xunit.execution.dotnet.dll",
+ "lib/netstandard1.1/xunit.execution.dotnet.xml",
+ "xunit.extensibility.execution.2.9.3.nupkg.sha512",
+ "xunit.extensibility.execution.nuspec"
+ ]
+ },
"ZXing.Net/0.16.10": {
"sha512": "9avtcn21T7Ndcl8PQ1LHR7/wEoCruX1QKKHvO6zBPTsDW9IdvR5vKOmd618AY+DtDWZz8NaFDTkpbZdgaF4l4w==",
"type": "package",
@@ -3743,7 +4152,11 @@
"Microsoft.EntityFrameworkCore >= 8.0.10",
"Microsoft.EntityFrameworkCore.Design >= 8.0.10",
"Npgsql.EntityFrameworkCore.PostgreSQL >= 8.0.10",
+ "OxyPlot >= 2.1.0",
+ "OxyPlot.Avalonia >= 2.1.0",
+ "OxyPlot.ImageSharp >= 2.2.0",
"PdfSharpCore >= 1.3.65",
+ "SixLabors.Fonts >= 2.1.2",
"ZXing.Net >= 0.16.10"
]
},
@@ -3827,10 +4240,26 @@
"target": "Package",
"version": "[8.0.10, )"
},
+ "OxyPlot": {
+ "target": "Package",
+ "version": "[2.1.0, )"
+ },
+ "OxyPlot.Avalonia": {
+ "target": "Package",
+ "version": "[2.1.0, )"
+ },
+ "OxyPlot.ImageSharp": {
+ "target": "Package",
+ "version": "[2.2.0, )"
+ },
"PdfSharpCore": {
"target": "Package",
"version": "[1.3.65, )"
},
+ "SixLabors.Fonts": {
+ "target": "Package",
+ "version": "[2.1.2, )"
+ },
"ZXing.Net": {
"target": "Package",
"version": "[0.16.10, )"
@@ -3858,10 +4287,24 @@
},
"logs": [
{
- "code": "NU1900",
+ "code": "NU1603",
"level": "Warning",
"warningLevel": 1,
- "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
+ "message": "dmeo040225 depends on OxyPlot (>= 2.1.0) but OxyPlot 2.1.0 was not found. OxyPlot 2014.1.517 was resolved instead.",
+ "libraryId": "OxyPlot",
+ "targetGraphs": [
+ "net8.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'OxyPlot 2014.1.517' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net8.0'. This package may not be fully compatible with your project.",
+ "libraryId": "OxyPlot",
+ "targetGraphs": [
+ "net8.0"
+ ]
}
]
}
\ No newline at end of file
diff --git a/dmeo040225/obj/project.nuget.cache b/dmeo040225/obj/project.nuget.cache
index e616f6e..3eefba6 100644
--- a/dmeo040225/obj/project.nuget.cache
+++ b/dmeo040225/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "cG3tMJvfVbs=",
+ "dgSpecHash": "rdfD07w/s40=",
"success": true,
"projectFilePath": "/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/dmeo040225.csproj",
"expectedPackageFiles": [
@@ -51,10 +51,15 @@
"/Users/rinchi/.nuget/packages/mono.texttemplating/2.2.1/mono.texttemplating.2.2.1.nupkg.sha512",
"/Users/rinchi/.nuget/packages/npgsql/8.0.5/npgsql.8.0.5.nupkg.sha512",
"/Users/rinchi/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.10/npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/oxyplot/2014.1.517/oxyplot.2014.1.517.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/oxyplot.avalonia/2.1.0/oxyplot.avalonia.2.1.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/oxyplot.core/2.2.0/oxyplot.core.2.2.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/oxyplot.imagesharp/2.2.0/oxyplot.imagesharp.2.2.0.nupkg.sha512",
"/Users/rinchi/.nuget/packages/pdfsharpcore/1.3.65/pdfsharpcore.1.3.65.nupkg.sha512",
"/Users/rinchi/.nuget/packages/sharpziplib/1.4.2/sharpziplib.1.4.2.nupkg.sha512",
- "/Users/rinchi/.nuget/packages/sixlabors.fonts/1.0.0-beta17/sixlabors.fonts.1.0.0-beta17.nupkg.sha512",
- "/Users/rinchi/.nuget/packages/sixlabors.imagesharp/1.0.4/sixlabors.imagesharp.1.0.4.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/sixlabors.fonts/2.1.2/sixlabors.fonts.2.1.2.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/sixlabors.imagesharp/2.1.9/sixlabors.imagesharp.2.1.9.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/sixlabors.imagesharp.drawing/1.0.0/sixlabors.imagesharp.drawing.1.0.0.nupkg.sha512",
"/Users/rinchi/.nuget/packages/skiasharp/2.88.8/skiasharp.2.88.8.nupkg.sha512",
"/Users/rinchi/.nuget/packages/skiasharp.nativeassets.linux/2.88.8/skiasharp.nativeassets.linux.2.88.8.nupkg.sha512",
"/Users/rinchi/.nuget/packages/skiasharp.nativeassets.macos/2.88.8/skiasharp.nativeassets.macos.2.88.8.nupkg.sha512",
@@ -74,14 +79,35 @@
"/Users/rinchi/.nuget/packages/system.text.encoding.codepages/6.0.0/system.text.encoding.codepages.6.0.0.nupkg.sha512",
"/Users/rinchi/.nuget/packages/system.threading.channels/6.0.0/system.threading.channels.6.0.0.nupkg.sha512",
"/Users/rinchi/.nuget/packages/tmds.dbus.protocol/0.20.0/tmds.dbus.protocol.0.20.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit/2.9.3/xunit.2.9.3.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.abstractions/2.0.3/xunit.abstractions.2.0.3.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.analyzers/1.18.0/xunit.analyzers.1.18.0.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.assert/2.9.3/xunit.assert.2.9.3.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.core/2.9.3/xunit.core.2.9.3.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.extensibility.core/2.9.3/xunit.extensibility.core.2.9.3.nupkg.sha512",
+ "/Users/rinchi/.nuget/packages/xunit.extensibility.execution/2.9.3/xunit.extensibility.execution.2.9.3.nupkg.sha512",
"/Users/rinchi/.nuget/packages/zxing.net/0.16.10/zxing.net.0.16.10.nupkg.sha512"
],
"logs": [
{
- "code": "NU1900",
+ "code": "NU1603",
"level": "Warning",
"warningLevel": 1,
- "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
+ "message": "dmeo040225 depends on OxyPlot (>= 2.1.0) but OxyPlot 2.1.0 was not found. OxyPlot 2014.1.517 was resolved instead.",
+ "libraryId": "OxyPlot",
+ "targetGraphs": [
+ "net8.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'OxyPlot 2014.1.517' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net8.0'. This package may not be fully compatible with your project.",
+ "libraryId": "OxyPlot",
+ "targetGraphs": [
+ "net8.0"
+ ]
}
]
}
\ No newline at end of file
diff --git a/dmeo040225/obj/project.packagespec.json b/dmeo040225/obj/project.packagespec.json
index e976246..4b460f8 100644
--- a/dmeo040225/obj/project.packagespec.json
+++ b/dmeo040225/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/dmeo040225.csproj","projectName":"dmeo040225","projectPath":"/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/dmeo040225.csproj","outputPath":"/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj":{"projectPath":"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.2.1, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.10, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.10, )"},"Npgsql.EntityFrameworkCore.PostgreSQL":{"target":"Package","version":"[8.0.10, )"},"PdfSharpCore":{"target":"Package","version":"[1.3.65, )"},"ZXing.Net":{"target":"Package","version":"[0.16.10, )"}},"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
+"restore":{"projectUniqueName":"/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/dmeo040225.csproj","projectName":"dmeo040225","projectPath":"/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/dmeo040225.csproj","outputPath":"/Users/rinchi/RiderProjects/dmeo040225/dmeo040225/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj":{"projectPath":"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.2.1, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.10, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.10, )"},"Npgsql.EntityFrameworkCore.PostgreSQL":{"target":"Package","version":"[8.0.10, )"},"OxyPlot":{"target":"Package","version":"[2.1.0, )"},"OxyPlot.Avalonia":{"target":"Package","version":"[2.1.0, )"},"OxyPlot.ImageSharp":{"target":"Package","version":"[2.2.0, )"},"PdfSharpCore":{"target":"Package","version":"[1.3.65, )"},"SixLabors.Fonts":{"target":"Package","version":"[2.1.2, )"},"ZXing.Net":{"target":"Package","version":"[0.16.10, )"}},"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/dmeo040225/obj/rider.project.model.nuget.info b/dmeo040225/obj/rider.project.model.nuget.info
index ee241ab..aa46fab 100644
--- a/dmeo040225/obj/rider.project.model.nuget.info
+++ b/dmeo040225/obj/rider.project.model.nuget.info
@@ -1 +1 @@
-17409191358158990
\ No newline at end of file
+17425431790541770
\ No newline at end of file
diff --git a/dmeo040225/obj/rider.project.restore.info b/dmeo040225/obj/rider.project.restore.info
index 0ca93c4..aa46fab 100644
--- a/dmeo040225/obj/rider.project.restore.info
+++ b/dmeo040225/obj/rider.project.restore.info
@@ -1 +1 @@
-17411580077249586
\ No newline at end of file
+17425431790541770
\ No newline at end of file
diff --git a/dmeo040225/report.pdf b/dmeo040225/report.pdf
new file mode 100644
index 0000000..db5e173
Binary files /dev/null and b/dmeo040225/report.pdf differ