diff --git a/.gitignore b/.gitignore
index 7c3cd78..7a557b2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -43,9 +43,9 @@ test-results/
# Autogenerated VS/MD/Consulo solution and project files
ExportedObj/
.consulo/
-*.csproj
+
*.unityproj
-*.sln
+
*.suo
*.tmp
*.user
diff --git a/DotNetNetIt.sln b/DotNetNetIt.sln
new file mode 100644
index 0000000..94cafc1
--- /dev/null
+++ b/DotNetNetIt.sln
@@ -0,0 +1,34 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.0.31903.59
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{CCFBEC76-3BB4-4AE3-8A3B-67DF09057383}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "netit", "src\netit\netit.csproj", "{07888B9F-679B-47DE-845D-A7A60F42900F}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "tests", "src\tests\tests.csproj", "{332CDCCA-9B21-42AD-A9EF-00EEEFA58B0D}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {07888B9F-679B-47DE-845D-A7A60F42900F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {07888B9F-679B-47DE-845D-A7A60F42900F}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {07888B9F-679B-47DE-845D-A7A60F42900F}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {07888B9F-679B-47DE-845D-A7A60F42900F}.Release|Any CPU.Build.0 = Release|Any CPU
+ {332CDCCA-9B21-42AD-A9EF-00EEEFA58B0D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {332CDCCA-9B21-42AD-A9EF-00EEEFA58B0D}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {332CDCCA-9B21-42AD-A9EF-00EEEFA58B0D}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {332CDCCA-9B21-42AD-A9EF-00EEEFA58B0D}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(NestedProjects) = preSolution
+ {07888B9F-679B-47DE-845D-A7A60F42900F} = {CCFBEC76-3BB4-4AE3-8A3B-67DF09057383}
+ {332CDCCA-9B21-42AD-A9EF-00EEEFA58B0D} = {CCFBEC76-3BB4-4AE3-8A3B-67DF09057383}
+ EndGlobalSection
+EndGlobal
diff --git a/src/netit/BitBasher.cs b/src/netit/BitBasher.cs
new file mode 100644
index 0000000..99cb3e1
--- /dev/null
+++ b/src/netit/BitBasher.cs
@@ -0,0 +1,6 @@
+namespace netit;
+
+public class BitBasher
+{
+
+}
diff --git a/src/netit/INetSerializeable.cs b/src/netit/INetSerializeable.cs
new file mode 100644
index 0000000..74ff4a2
--- /dev/null
+++ b/src/netit/INetSerializeable.cs
@@ -0,0 +1,14 @@
+using System.ComponentModel.DataAnnotations;
+using System.Dynamic;
+
+namespace netit;
+
+public interface INetSerializeable
+{
+ public string PacketName(); // basically like a static public string that can be set by implementations of inetserializeable
+ static public byte packetIndex;
+
+
+ static abstract public INetSerializeable deSerialize(byte[] bytes);
+ static abstract public byte[] Serialize();
+}
diff --git a/src/netit/INetSyncable.cs b/src/netit/INetSyncable.cs
new file mode 100644
index 0000000..20494be
--- /dev/null
+++ b/src/netit/INetSyncable.cs
@@ -0,0 +1,8 @@
+namespace netit;
+
+// An INetSyncable is a class that can be sent and
+public interface INetSyncable : INetSerializeable
+{
+ public void Send();
+ public void Recieve();
+}
diff --git a/src/netit/Packet.cs b/src/netit/Packet.cs
new file mode 100644
index 0000000..5c5cdb0
--- /dev/null
+++ b/src/netit/Packet.cs
@@ -0,0 +1,6 @@
+namespace netit;
+
+public class Packet
+{
+
+}
diff --git a/src/netit/TransportDefinition.cs b/src/netit/TransportDefinition.cs
new file mode 100644
index 0000000..91f1860
--- /dev/null
+++ b/src/netit/TransportDefinition.cs
@@ -0,0 +1,22 @@
+using System.Reflection.Emit;
+
+namespace netit;
+
+
+// TransportDefinition
+// Defines identifiers of each packet by type (basically the first byte of every packet indicated that packets type)
+public class TransportDefinition
+{
+ private string[] _packetTypes;
+ public string[] packetTypes { get => _packetTypes; }
+ public TransportDefinition()
+ {
+ this._packetTypes = new string[256];
+ }
+
+ public void addType(INetSerializeable type)
+ {
+ //a parameter for
+ if (_packetTypes.Length >= 256) throw new Exception("Packet type limit reached.");
+ }
+}
diff --git a/src/netit/bin/Debug/net8.0/netit.deps.json b/src/netit/bin/Debug/net8.0/netit.deps.json
new file mode 100644
index 0000000..2b99322
--- /dev/null
+++ b/src/netit/bin/Debug/net8.0/netit.deps.json
@@ -0,0 +1,23 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {
+ "netit/1.0.0": {
+ "runtime": {
+ "netit.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "netit/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/netit/bin/Debug/net8.0/netit.dll b/src/netit/bin/Debug/net8.0/netit.dll
new file mode 100644
index 0000000..7bc5e1c
Binary files /dev/null and b/src/netit/bin/Debug/net8.0/netit.dll differ
diff --git a/src/netit/netit.cs b/src/netit/netit.cs
new file mode 100644
index 0000000..010f151
--- /dev/null
+++ b/src/netit/netit.cs
@@ -0,0 +1,8 @@
+namespace netit;
+
+using System;
+using System.Net.Sockets;
+public class NetIt
+{
+
+}
diff --git a/src/netit/netit.csproj b/src/netit/netit.csproj
new file mode 100644
index 0000000..fa71b7a
--- /dev/null
+++ b/src/netit/netit.csproj
@@ -0,0 +1,9 @@
+
+
+
+ net8.0
+ enable
+ enable
+
+
+
diff --git a/src/netit/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/src/netit/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..2217181
--- /dev/null
+++ b/src/netit/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/src/netit/obj/Debug/net8.0/netit.AssemblyInfo.cs b/src/netit/obj/Debug/net8.0/netit.AssemblyInfo.cs
new file mode 100644
index 0000000..e9cd510
--- /dev/null
+++ b/src/netit/obj/Debug/net8.0/netit.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("netit")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b5c2250d4d5a9ff08b645aacf71eed288c38183e")]
+[assembly: System.Reflection.AssemblyProductAttribute("netit")]
+[assembly: System.Reflection.AssemblyTitleAttribute("netit")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/src/netit/obj/Debug/net8.0/netit.AssemblyInfoInputs.cache b/src/netit/obj/Debug/net8.0/netit.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6bef6a7
--- /dev/null
+++ b/src/netit/obj/Debug/net8.0/netit.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+72f2a468e482fccaf14cc377466bf8a209114007c0090e6884fbd2b1a7e32833
diff --git a/src/netit/obj/Debug/net8.0/netit.GeneratedMSBuildEditorConfig.editorconfig b/src/netit/obj/Debug/net8.0/netit.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..1220988
--- /dev/null
+++ b/src/netit/obj/Debug/net8.0/netit.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 = netit
+build_property.ProjectDir = /home/apexfight/Desktop/DotNetNetIt/src/netit/
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/src/netit/obj/Debug/net8.0/netit.GlobalUsings.g.cs b/src/netit/obj/Debug/net8.0/netit.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/src/netit/obj/Debug/net8.0/netit.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/src/netit/obj/Debug/net8.0/netit.assets.cache b/src/netit/obj/Debug/net8.0/netit.assets.cache
new file mode 100644
index 0000000..f444949
Binary files /dev/null and b/src/netit/obj/Debug/net8.0/netit.assets.cache differ
diff --git a/src/netit/obj/Debug/net8.0/netit.csproj.CoreCompileInputs.cache b/src/netit/obj/Debug/net8.0/netit.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..c89bf17
--- /dev/null
+++ b/src/netit/obj/Debug/net8.0/netit.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+1a740d65a9bb003b1de07ea716bb0ffd215486af0c228340e9a77bf5f6a4d6b6
diff --git a/src/netit/obj/Debug/net8.0/netit.csproj.FileListAbsolute.txt b/src/netit/obj/Debug/net8.0/netit.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..b4cdb4d
--- /dev/null
+++ b/src/netit/obj/Debug/net8.0/netit.csproj.FileListAbsolute.txt
@@ -0,0 +1,11 @@
+/home/apexfight/Desktop/DotNetNetIt/src/netit/bin/Debug/net8.0/netit.deps.json
+/home/apexfight/Desktop/DotNetNetIt/src/netit/bin/Debug/net8.0/netit.dll
+/home/apexfight/Desktop/DotNetNetIt/src/netit/bin/Debug/net8.0/netit.pdb
+/home/apexfight/Desktop/DotNetNetIt/src/netit/obj/Debug/net8.0/netit.GeneratedMSBuildEditorConfig.editorconfig
+/home/apexfight/Desktop/DotNetNetIt/src/netit/obj/Debug/net8.0/netit.AssemblyInfoInputs.cache
+/home/apexfight/Desktop/DotNetNetIt/src/netit/obj/Debug/net8.0/netit.AssemblyInfo.cs
+/home/apexfight/Desktop/DotNetNetIt/src/netit/obj/Debug/net8.0/netit.csproj.CoreCompileInputs.cache
+/home/apexfight/Desktop/DotNetNetIt/src/netit/obj/Debug/net8.0/netit.dll
+/home/apexfight/Desktop/DotNetNetIt/src/netit/obj/Debug/net8.0/refint/netit.dll
+/home/apexfight/Desktop/DotNetNetIt/src/netit/obj/Debug/net8.0/netit.pdb
+/home/apexfight/Desktop/DotNetNetIt/src/netit/obj/Debug/net8.0/ref/netit.dll
diff --git a/src/netit/obj/Debug/net8.0/netit.dll b/src/netit/obj/Debug/net8.0/netit.dll
new file mode 100644
index 0000000..7bc5e1c
Binary files /dev/null and b/src/netit/obj/Debug/net8.0/netit.dll differ
diff --git a/src/netit/obj/Debug/net8.0/ref/netit.dll b/src/netit/obj/Debug/net8.0/ref/netit.dll
new file mode 100644
index 0000000..496b5b6
Binary files /dev/null and b/src/netit/obj/Debug/net8.0/ref/netit.dll differ
diff --git a/src/netit/obj/Debug/net8.0/refint/netit.dll b/src/netit/obj/Debug/net8.0/refint/netit.dll
new file mode 100644
index 0000000..496b5b6
Binary files /dev/null and b/src/netit/obj/Debug/net8.0/refint/netit.dll differ
diff --git a/src/netit/obj/netit.csproj.nuget.dgspec.json b/src/netit/obj/netit.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..083972a
--- /dev/null
+++ b/src/netit/obj/netit.csproj.nuget.dgspec.json
@@ -0,0 +1,61 @@
+{
+ "format": 1,
+ "restore": {
+ "/home/apexfight/Desktop/DotNetNetIt/src/netit/netit.csproj": {}
+ },
+ "projects": {
+ "/home/apexfight/Desktop/DotNetNetIt/src/netit/netit.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/home/apexfight/Desktop/DotNetNetIt/src/netit/netit.csproj",
+ "projectName": "netit",
+ "projectPath": "/home/apexfight/Desktop/DotNetNetIt/src/netit/netit.csproj",
+ "packagesPath": "/home/apexfight/.nuget/packages/",
+ "outputPath": "/home/apexfight/Desktop/DotNetNetIt/src/netit/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/apexfight/.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"
+ ]
+ }
+ },
+ "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": "/nix/store/cpgj5qzpngdwv248vwdmszp95lb11ak2-dotnet-sdk-8.0.119/share/dotnet/sdk/8.0.119/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/netit/obj/netit.csproj.nuget.g.props b/src/netit/obj/netit.csproj.nuget.g.props
new file mode 100644
index 0000000..9bf3804
--- /dev/null
+++ b/src/netit/obj/netit.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ /home/apexfight/.nuget/packages/
+ /home/apexfight/.nuget/packages/
+ PackageReference
+ 6.8.1
+
+
+
+
+
\ No newline at end of file
diff --git a/src/netit/obj/netit.csproj.nuget.g.targets b/src/netit/obj/netit.csproj.nuget.g.targets
new file mode 100644
index 0000000..3dc06ef
--- /dev/null
+++ b/src/netit/obj/netit.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/src/netit/obj/project.assets.json b/src/netit/obj/project.assets.json
new file mode 100644
index 0000000..4c55c81
--- /dev/null
+++ b/src/netit/obj/project.assets.json
@@ -0,0 +1,66 @@
+{
+ "version": 3,
+ "targets": {
+ "net8.0": {}
+ },
+ "libraries": {},
+ "projectFileDependencyGroups": {
+ "net8.0": []
+ },
+ "packageFolders": {
+ "/home/apexfight/.nuget/packages/": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/home/apexfight/Desktop/DotNetNetIt/src/netit/netit.csproj",
+ "projectName": "netit",
+ "projectPath": "/home/apexfight/Desktop/DotNetNetIt/src/netit/netit.csproj",
+ "packagesPath": "/home/apexfight/.nuget/packages/",
+ "outputPath": "/home/apexfight/Desktop/DotNetNetIt/src/netit/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/apexfight/.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"
+ ]
+ }
+ },
+ "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": "/nix/store/cpgj5qzpngdwv248vwdmszp95lb11ak2-dotnet-sdk-8.0.119/share/dotnet/sdk/8.0.119/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/netit/obj/project.nuget.cache b/src/netit/obj/project.nuget.cache
new file mode 100644
index 0000000..5139ede
--- /dev/null
+++ b/src/netit/obj/project.nuget.cache
@@ -0,0 +1,8 @@
+{
+ "version": 2,
+ "dgSpecHash": "OMqM86g/20YJ8bQ+I/jwsiC5ArfovoqSbIVEc3OCYq9pf0Son+JI4d1fLifsHH2sc4c5eBJVnOLPS3LDJU4w6w==",
+ "success": true,
+ "projectFilePath": "/home/apexfight/Desktop/DotNetNetIt/src/netit/netit.csproj",
+ "expectedPackageFiles": [],
+ "logs": []
+}
\ No newline at end of file
diff --git a/src/tests/GlobalUsings.cs b/src/tests/GlobalUsings.cs
new file mode 100644
index 0000000..cefced4
--- /dev/null
+++ b/src/tests/GlobalUsings.cs
@@ -0,0 +1 @@
+global using NUnit.Framework;
\ No newline at end of file
diff --git a/src/tests/UnitTest1.cs b/src/tests/UnitTest1.cs
new file mode 100644
index 0000000..d7c727e
--- /dev/null
+++ b/src/tests/UnitTest1.cs
@@ -0,0 +1,27 @@
+using System.Runtime.CompilerServices;
+using netit;
+
+namespace tests;
+
+public class Tests
+{
+ [SetUp]
+ public void Setup()
+ {
+
+ }
+
+ [Test]
+ public void Test1()
+ {
+ try
+ {
+ //NetIt.test();
+ }
+ catch
+ {
+ Assert.Fail();
+ }
+ Assert.Pass();
+ }
+}
\ No newline at end of file
diff --git a/src/tests/bin/Debug/net8.0/CoverletSourceRootsMapping_tests b/src/tests/bin/Debug/net8.0/CoverletSourceRootsMapping_tests
new file mode 100644
index 0000000..9b614bb
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/CoverletSourceRootsMapping_tests differ
diff --git a/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll
new file mode 100755
index 0000000..e45af4e
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll differ
diff --git a/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll b/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll
new file mode 100755
index 0000000..c868e1f
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll differ
diff --git a/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll
new file mode 100755
index 0000000..8201a76
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll differ
diff --git a/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll
new file mode 100755
index 0000000..36c3817
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll differ
diff --git a/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll b/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll
new file mode 100755
index 0000000..75e8966
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll differ
diff --git a/src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll
new file mode 100755
index 0000000..224bb02
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ
diff --git a/src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll
new file mode 100755
index 0000000..357b697
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll differ
diff --git a/src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
new file mode 100755
index 0000000..4e17acc
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ
diff --git a/src/tests/bin/Debug/net8.0/NUnit3.TestAdapter.dll b/src/tests/bin/Debug/net8.0/NUnit3.TestAdapter.dll
new file mode 100755
index 0000000..9c5017b
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/NUnit3.TestAdapter.dll differ
diff --git a/src/tests/bin/Debug/net8.0/Newtonsoft.Json.dll b/src/tests/bin/Debug/net8.0/Newtonsoft.Json.dll
new file mode 100755
index 0000000..1ffeabe
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/Newtonsoft.Json.dll differ
diff --git a/src/tests/bin/Debug/net8.0/NuGet.Frameworks.dll b/src/tests/bin/Debug/net8.0/NuGet.Frameworks.dll
new file mode 100755
index 0000000..0fabf0c
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/NuGet.Frameworks.dll differ
diff --git a/src/tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..cb28e97
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..b9f081d
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..74ebedb
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..98cbcb7
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..7333544
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..7bfd5b1
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..6a248d6
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..a1861dd
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..505dddd
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..4645b6b
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..1668698
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..6bd079a
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..6430c84
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..e683698
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..1442ee8
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..c7759cf
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..c207945
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..0bc035b
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..8d900d5
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..6f0b7cd
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..266057d
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..0d3887a
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..80d55d5
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..f7a9f3d
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..6abdb0f
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..3a39a78
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..ea6315e
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..470173a
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..0d53bff
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..b09e823
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..0114575
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..a0d681f
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..6ad80ed
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..44520a2
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..9aceed9
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/netit.dll b/src/tests/bin/Debug/net8.0/netit.dll
new file mode 100644
index 0000000..7bc5e1c
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/netit.dll differ
diff --git a/src/tests/bin/Debug/net8.0/nunit.engine.api.dll b/src/tests/bin/Debug/net8.0/nunit.engine.api.dll
new file mode 100755
index 0000000..c5a7503
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/nunit.engine.api.dll differ
diff --git a/src/tests/bin/Debug/net8.0/nunit.engine.core.dll b/src/tests/bin/Debug/net8.0/nunit.engine.core.dll
new file mode 100755
index 0000000..0e4c7a1
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/nunit.engine.core.dll differ
diff --git a/src/tests/bin/Debug/net8.0/nunit.engine.dll b/src/tests/bin/Debug/net8.0/nunit.engine.dll
new file mode 100755
index 0000000..d943469
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/nunit.engine.dll differ
diff --git a/src/tests/bin/Debug/net8.0/nunit.framework.dll b/src/tests/bin/Debug/net8.0/nunit.framework.dll
new file mode 100755
index 0000000..16e3f3b
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/nunit.framework.dll differ
diff --git a/src/tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..7dc061e
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..ddce776
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..5d9cc06
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..9129485
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..93dfb6d
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..6f009dc
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..a52d361
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..08d86f9
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..9e7e899
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..4841034
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..d4f74e0
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..f6b8ea3
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..c926fc1
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/tests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..9aa81a0
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/tests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..193cfe8
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/testcentric.engine.metadata.dll b/src/tests/bin/Debug/net8.0/testcentric.engine.metadata.dll
new file mode 100755
index 0000000..b982b6b
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/testcentric.engine.metadata.dll differ
diff --git a/src/tests/bin/Debug/net8.0/testhost.dll b/src/tests/bin/Debug/net8.0/testhost.dll
new file mode 100755
index 0000000..b15bd81
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/testhost.dll differ
diff --git a/src/tests/bin/Debug/net8.0/tests.deps.json b/src/tests/bin/Debug/net8.0/tests.deps.json
new file mode 100644
index 0000000..f68daac
--- /dev/null
+++ b/src/tests/bin/Debug/net8.0/tests.deps.json
@@ -0,0 +1,430 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {
+ "tests/1.0.0": {
+ "dependencies": {
+ "Microsoft.NET.Test.Sdk": "17.6.0",
+ "NUnit": "3.13.3",
+ "NUnit.Analyzers": "3.6.1",
+ "NUnit3TestAdapter": "4.2.1",
+ "coverlet.collector": "6.0.0",
+ "netit": "1.0.0"
+ },
+ "runtime": {
+ "tests.dll": {}
+ }
+ },
+ "coverlet.collector/6.0.0": {},
+ "Microsoft.CodeCoverage/17.6.0": {
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "17.600.1123.17103"
+ }
+ }
+ },
+ "Microsoft.NET.Test.Sdk/17.6.0": {
+ "dependencies": {
+ "Microsoft.CodeCoverage": "17.6.0",
+ "Microsoft.TestPlatform.TestHost": "17.6.0"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {},
+ "Microsoft.TestPlatform.ObjectModel/17.6.0": {
+ "dependencies": {
+ "NuGet.Frameworks": "5.11.0",
+ "System.Reflection.Metadata": "1.6.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ }
+ },
+ "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.6.0": {
+ "dependencies": {
+ "Microsoft.TestPlatform.ObjectModel": "17.6.0",
+ "Newtonsoft.Json": "13.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/testhost.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "zh-Hant"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "zh-Hant"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "NETStandard.Library/2.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ }
+ },
+ "Newtonsoft.Json/13.0.1": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "13.0.0.0",
+ "fileVersion": "13.0.1.25517"
+ }
+ }
+ },
+ "NuGet.Frameworks/5.11.0": {
+ "runtime": {
+ "lib/netstandard2.0/NuGet.Frameworks.dll": {
+ "assemblyVersion": "5.11.0.10",
+ "fileVersion": "5.11.0.10"
+ }
+ }
+ },
+ "NUnit/3.13.3": {
+ "dependencies": {
+ "NETStandard.Library": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/nunit.framework.dll": {
+ "assemblyVersion": "3.13.3.0",
+ "fileVersion": "3.13.3.0"
+ }
+ }
+ },
+ "NUnit.Analyzers/3.6.1": {},
+ "NUnit3TestAdapter/4.2.1": {},
+ "System.Reflection.Metadata/1.6.0": {},
+ "netit/1.0.0": {
+ "runtime": {
+ "netit.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "tests/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.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5v2GwzpR7JEuQUzupjx3zLwn2FutADW/weLzLt726DR3WXxsM+ICPoJG6pxuKFsumtZp890UrVuudTUhsE8Qyg==",
+ "path": "microsoft.codecoverage/17.6.0",
+ "hashPath": "microsoft.codecoverage.17.6.0.nupkg.sha512"
+ },
+ "Microsoft.NET.Test.Sdk/17.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tHyg4C6c89QvLv6Utz3xKlba4EeoyJyIz59Q1NrjRENV7gfGnSE6I+sYPIbVOzQttoo2zpHDgOK/p6Hw2OlD7A==",
+ "path": "microsoft.net.test.sdk/17.6.0",
+ "hashPath": "microsoft.net.test.sdk.17.6.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.TestPlatform.ObjectModel/17.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AA/rrf5zwC5/OBLEOajkhjbVTM3SvxRXy8kcQ8e4mJKojbyZvqqhpfNg362N9vXU94DLg9NUTFOAnoYVT0pTJw==",
+ "path": "microsoft.testplatform.objectmodel/17.6.0",
+ "hashPath": "microsoft.testplatform.objectmodel.17.6.0.nupkg.sha512"
+ },
+ "Microsoft.TestPlatform.TestHost/17.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7YdgUcIeCPVKLC7n7LNKDiEHWc7z3brkkYPdUbDnFsvf6WvY9UfzS0VSUJ8P2NgN0CDSD223GCJFSjSBLZRqOQ==",
+ "path": "microsoft.testplatform.testhost/17.6.0",
+ "hashPath": "microsoft.testplatform.testhost.17.6.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/5.11.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==",
+ "path": "nuget.frameworks/5.11.0",
+ "hashPath": "nuget.frameworks.5.11.0.nupkg.sha512"
+ },
+ "NUnit/3.13.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KNPDpls6EfHwC3+nnA67fh5wpxeLb3VLFAfLxrug6JMYDLHH6InaQIWR7Sc3y75d/9IKzMksH/gi08W7XWbmnQ==",
+ "path": "nunit/3.13.3",
+ "hashPath": "nunit.3.13.3.nupkg.sha512"
+ },
+ "NUnit.Analyzers/3.6.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RKP9tpKfl3DmRgUDGgh3XM3XzeLMrCXXMZm6vm1nMsObZ6vtQL1L9NrK7+oZh1jWearvNsbMis2+AIOY3NFmow==",
+ "path": "nunit.analyzers/3.6.1",
+ "hashPath": "nunit.analyzers.3.6.1.nupkg.sha512"
+ },
+ "NUnit3TestAdapter/4.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kgH8VKsrcZZgNGQXRpVCrM7TnNz9li3b/snH+YmnXUNqsaWa1Xw9EQWHpbzq4Li2FbTjTE/E5N5HdLNXzZ8BpQ==",
+ "path": "nunit3testadapter/4.2.1",
+ "hashPath": "nunit3testadapter.4.2.1.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"
+ },
+ "netit/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/tests/bin/Debug/net8.0/tests.dll b/src/tests/bin/Debug/net8.0/tests.dll
new file mode 100644
index 0000000..2316119
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/tests.dll differ
diff --git a/src/tests/bin/Debug/net8.0/tests.runtimeconfig.json b/src/tests/bin/Debug/net8.0/tests.runtimeconfig.json
new file mode 100644
index 0000000..becfaea
--- /dev/null
+++ b/src/tests/bin/Debug/net8.0/tests.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/src/tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..0103c73
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..1af1a2b
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..8208c4a
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/tests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..1e34b72
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/tests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..764f76d
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..cfbbe73
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..d8b7fb2
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..1911bc8
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..7de1876
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..c7908a2
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100755
index 0000000..edb16db
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100755
index 0000000..432e72c
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100755
index 0000000..82406ca
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100755
index 0000000..8545af8
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100755
index 0000000..b2092e0
Binary files /dev/null and b/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/tests/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/src/tests/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..2217181
--- /dev/null
+++ b/src/tests/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/src/tests/obj/Debug/net8.0/ref/tests.dll b/src/tests/obj/Debug/net8.0/ref/tests.dll
new file mode 100644
index 0000000..c9251a7
Binary files /dev/null and b/src/tests/obj/Debug/net8.0/ref/tests.dll differ
diff --git a/src/tests/obj/Debug/net8.0/refint/tests.dll b/src/tests/obj/Debug/net8.0/refint/tests.dll
new file mode 100644
index 0000000..c9251a7
Binary files /dev/null and b/src/tests/obj/Debug/net8.0/refint/tests.dll differ
diff --git a/src/tests/obj/Debug/net8.0/tests.AssemblyInfo.cs b/src/tests/obj/Debug/net8.0/tests.AssemblyInfo.cs
new file mode 100644
index 0000000..80637c2
--- /dev/null
+++ b/src/tests/obj/Debug/net8.0/tests.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("tests")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b5c2250d4d5a9ff08b645aacf71eed288c38183e")]
+[assembly: System.Reflection.AssemblyProductAttribute("tests")]
+[assembly: System.Reflection.AssemblyTitleAttribute("tests")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/src/tests/obj/Debug/net8.0/tests.AssemblyInfoInputs.cache b/src/tests/obj/Debug/net8.0/tests.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..82c69b1
--- /dev/null
+++ b/src/tests/obj/Debug/net8.0/tests.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+87251fb11c5c8de6a8cd9947885936eb49386c3af51ea684427010e1eb3e4e64
diff --git a/src/tests/obj/Debug/net8.0/tests.GeneratedMSBuildEditorConfig.editorconfig b/src/tests/obj/Debug/net8.0/tests.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..8e94884
--- /dev/null
+++ b/src/tests/obj/Debug/net8.0/tests.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 = tests
+build_property.ProjectDir = /home/apexfight/Desktop/DotNetNetIt/src/tests/
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/src/tests/obj/Debug/net8.0/tests.GlobalUsings.g.cs b/src/tests/obj/Debug/net8.0/tests.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/src/tests/obj/Debug/net8.0/tests.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/src/tests/obj/Debug/net8.0/tests.assets.cache b/src/tests/obj/Debug/net8.0/tests.assets.cache
new file mode 100644
index 0000000..dc1f552
Binary files /dev/null and b/src/tests/obj/Debug/net8.0/tests.assets.cache differ
diff --git a/src/tests/obj/Debug/net8.0/tests.csproj.AssemblyReference.cache b/src/tests/obj/Debug/net8.0/tests.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..fa81954
Binary files /dev/null and b/src/tests/obj/Debug/net8.0/tests.csproj.AssemblyReference.cache differ
diff --git a/src/tests/obj/Debug/net8.0/tests.csproj.CopyComplete b/src/tests/obj/Debug/net8.0/tests.csproj.CopyComplete
new file mode 100644
index 0000000..e69de29
diff --git a/src/tests/obj/Debug/net8.0/tests.csproj.CoreCompileInputs.cache b/src/tests/obj/Debug/net8.0/tests.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..c17b333
--- /dev/null
+++ b/src/tests/obj/Debug/net8.0/tests.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+f61b20f35535b81fd8505fb1ba93f7ca6fca35154d55dcfb60c2d3af4c0471e0
diff --git a/src/tests/obj/Debug/net8.0/tests.csproj.FileListAbsolute.txt b/src/tests/obj/Debug/net8.0/tests.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..78ed5c6
--- /dev/null
+++ b/src/tests/obj/Debug/net8.0/tests.csproj.FileListAbsolute.txt
@@ -0,0 +1,101 @@
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/CoverletSourceRootsMapping_tests
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/NUnit3.TestAdapter.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/NUnit3.TestAdapter.pdb
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/nunit.engine.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/nunit.engine.api.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/nunit.engine.core.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/testcentric.engine.metadata.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/tests.deps.json
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/tests.runtimeconfig.json
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/tests.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/tests.pdb
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/testhost.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/Newtonsoft.Json.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/NuGet.Frameworks.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/nunit.framework.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/netit.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/bin/Debug/net8.0/netit.pdb
+/home/apexfight/Desktop/DotNetNetIt/src/tests/obj/Debug/net8.0/tests.csproj.AssemblyReference.cache
+/home/apexfight/Desktop/DotNetNetIt/src/tests/obj/Debug/net8.0/tests.GeneratedMSBuildEditorConfig.editorconfig
+/home/apexfight/Desktop/DotNetNetIt/src/tests/obj/Debug/net8.0/tests.AssemblyInfoInputs.cache
+/home/apexfight/Desktop/DotNetNetIt/src/tests/obj/Debug/net8.0/tests.AssemblyInfo.cs
+/home/apexfight/Desktop/DotNetNetIt/src/tests/obj/Debug/net8.0/tests.csproj.CoreCompileInputs.cache
+/home/apexfight/Desktop/DotNetNetIt/src/tests/obj/Debug/net8.0/tests.csproj.CopyComplete
+/home/apexfight/Desktop/DotNetNetIt/src/tests/obj/Debug/net8.0/tests.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/obj/Debug/net8.0/refint/tests.dll
+/home/apexfight/Desktop/DotNetNetIt/src/tests/obj/Debug/net8.0/tests.pdb
+/home/apexfight/Desktop/DotNetNetIt/src/tests/obj/Debug/net8.0/tests.genruntimeconfig.cache
+/home/apexfight/Desktop/DotNetNetIt/src/tests/obj/Debug/net8.0/ref/tests.dll
diff --git a/src/tests/obj/Debug/net8.0/tests.dll b/src/tests/obj/Debug/net8.0/tests.dll
new file mode 100644
index 0000000..2316119
Binary files /dev/null and b/src/tests/obj/Debug/net8.0/tests.dll differ
diff --git a/src/tests/obj/Debug/net8.0/tests.genruntimeconfig.cache b/src/tests/obj/Debug/net8.0/tests.genruntimeconfig.cache
new file mode 100644
index 0000000..e869763
--- /dev/null
+++ b/src/tests/obj/Debug/net8.0/tests.genruntimeconfig.cache
@@ -0,0 +1 @@
+b93eda0bf6ce8fb5a2eb0ba870911d06f98dcb75b773ad69eeb1beac525b5069
diff --git a/src/tests/obj/project.assets.json b/src/tests/obj/project.assets.json
new file mode 100644
index 0000000..404ecf2
--- /dev/null
+++ b/src/tests/obj/project.assets.json
@@ -0,0 +1,1086 @@
+{
+ "version": 3,
+ "targets": {
+ "net8.0": {
+ "coverlet.collector/6.0.0": {
+ "type": "package",
+ "build": {
+ "build/netstandard1.0/coverlet.collector.targets": {}
+ }
+ },
+ "Microsoft.CodeCoverage/17.6.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.6.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.CodeCoverage": "17.6.0",
+ "Microsoft.TestPlatform.TestHost": "17.6.0"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/_._": {}
+ },
+ "build": {
+ "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props": {},
+ "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets": {}
+ },
+ "buildMultiTargeting": {
+ "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {}
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.TestPlatform.ObjectModel/17.6.0": {
+ "type": "package",
+ "dependencies": {
+ "NuGet.Frameworks": "5.11.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.6.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.TestPlatform.ObjectModel": "17.6.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/5.11.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/NuGet.Frameworks.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/NuGet.Frameworks.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "NUnit/3.13.3": {
+ "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.6.1": {
+ "type": "package"
+ },
+ "NUnit3TestAdapter/4.2.1": {
+ "type": "package",
+ "build": {
+ "build/netcoreapp2.1/NUnit3TestAdapter.props": {}
+ }
+ },
+ "System.Reflection.Metadata/1.6.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/System.Reflection.Metadata.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Reflection.Metadata.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "netit/1.0.0": {
+ "type": "project",
+ "framework": ".NETCoreApp,Version=v8.0",
+ "compile": {
+ "bin/placeholder/netit.dll": {}
+ },
+ "runtime": {
+ "bin/placeholder/netit.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.6.0": {
+ "sha512": "5v2GwzpR7JEuQUzupjx3zLwn2FutADW/weLzLt726DR3WXxsM+ICPoJG6pxuKFsumtZp890UrVuudTUhsE8Qyg==",
+ "type": "package",
+ "path": "microsoft.codecoverage/17.6.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE_NET.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.6.0.nupkg.sha512",
+ "microsoft.codecoverage.nuspec"
+ ]
+ },
+ "Microsoft.NET.Test.Sdk/17.6.0": {
+ "sha512": "tHyg4C6c89QvLv6Utz3xKlba4EeoyJyIz59Q1NrjRENV7gfGnSE6I+sYPIbVOzQttoo2zpHDgOK/p6Hw2OlD7A==",
+ "type": "package",
+ "path": "microsoft.net.test.sdk/17.6.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE_NET.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.6.0.nupkg.sha512",
+ "microsoft.net.test.sdk.nuspec"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.TestPlatform.ObjectModel/17.6.0": {
+ "sha512": "AA/rrf5zwC5/OBLEOajkhjbVTM3SvxRXy8kcQ8e4mJKojbyZvqqhpfNg362N9vXU94DLg9NUTFOAnoYVT0pTJw==",
+ "type": "package",
+ "path": "microsoft.testplatform.objectmodel/17.6.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE_NET.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.6.0.nupkg.sha512",
+ "microsoft.testplatform.objectmodel.nuspec"
+ ]
+ },
+ "Microsoft.TestPlatform.TestHost/17.6.0": {
+ "sha512": "7YdgUcIeCPVKLC7n7LNKDiEHWc7z3brkkYPdUbDnFsvf6WvY9UfzS0VSUJ8P2NgN0CDSD223GCJFSjSBLZRqOQ==",
+ "type": "package",
+ "path": "microsoft.testplatform.testhost/17.6.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE_NET.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.6.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/5.11.0": {
+ "sha512": "eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==",
+ "type": "package",
+ "path": "nuget.frameworks/5.11.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "icon.png",
+ "lib/net40/NuGet.Frameworks.dll",
+ "lib/net40/NuGet.Frameworks.xml",
+ "lib/net472/NuGet.Frameworks.dll",
+ "lib/net472/NuGet.Frameworks.xml",
+ "lib/netstandard2.0/NuGet.Frameworks.dll",
+ "lib/netstandard2.0/NuGet.Frameworks.xml",
+ "nuget.frameworks.5.11.0.nupkg.sha512",
+ "nuget.frameworks.nuspec"
+ ]
+ },
+ "NUnit/3.13.3": {
+ "sha512": "KNPDpls6EfHwC3+nnA67fh5wpxeLb3VLFAfLxrug6JMYDLHH6InaQIWR7Sc3y75d/9IKzMksH/gi08W7XWbmnQ==",
+ "type": "package",
+ "path": "nunit/3.13.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGES.md",
+ "LICENSE.txt",
+ "NOTICES.txt",
+ "build/NUnit.props",
+ "icon.png",
+ "lib/net35/nunit.framework.dll",
+ "lib/net35/nunit.framework.xml",
+ "lib/net40/nunit.framework.dll",
+ "lib/net40/nunit.framework.xml",
+ "lib/net45/nunit.framework.dll",
+ "lib/net45/nunit.framework.xml",
+ "lib/netstandard2.0/nunit.framework.dll",
+ "lib/netstandard2.0/nunit.framework.xml",
+ "nunit.3.13.3.nupkg.sha512",
+ "nunit.nuspec"
+ ]
+ },
+ "NUnit.Analyzers/3.6.1": {
+ "sha512": "RKP9tpKfl3DmRgUDGgh3XM3XzeLMrCXXMZm6vm1nMsObZ6vtQL1L9NrK7+oZh1jWearvNsbMis2+AIOY3NFmow==",
+ "type": "package",
+ "path": "nunit.analyzers/3.6.1",
+ "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.6.1.nupkg.sha512",
+ "nunit.analyzers.nuspec",
+ "tools/install.ps1",
+ "tools/uninstall.ps1"
+ ]
+ },
+ "NUnit3TestAdapter/4.2.1": {
+ "sha512": "kgH8VKsrcZZgNGQXRpVCrM7TnNz9li3b/snH+YmnXUNqsaWa1Xw9EQWHpbzq4Li2FbTjTE/E5N5HdLNXzZ8BpQ==",
+ "type": "package",
+ "path": "nunit3testadapter/4.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/net35/NUnit3.TestAdapter.dll",
+ "build/net35/NUnit3.TestAdapter.pdb",
+ "build/net35/NUnit3TestAdapter.props",
+ "build/net35/nunit.engine.api.dll",
+ "build/net35/nunit.engine.core.dll",
+ "build/net35/nunit.engine.dll",
+ "build/net35/testcentric.engine.metadata.dll",
+ "build/netcoreapp2.1/NUnit3.TestAdapter.dll",
+ "build/netcoreapp2.1/NUnit3.TestAdapter.pdb",
+ "build/netcoreapp2.1/NUnit3TestAdapter.props",
+ "build/netcoreapp2.1/nunit.engine.api.dll",
+ "build/netcoreapp2.1/nunit.engine.core.dll",
+ "build/netcoreapp2.1/nunit.engine.dll",
+ "build/netcoreapp2.1/testcentric.engine.metadata.dll",
+ "nunit3testadapter.4.2.1.nupkg.sha512",
+ "nunit3testadapter.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"
+ ]
+ },
+ "netit/1.0.0": {
+ "type": "project",
+ "path": "../netit/netit.csproj",
+ "msbuildProject": "../netit/netit.csproj"
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net8.0": [
+ "Microsoft.NET.Test.Sdk >= 17.6.0",
+ "NUnit >= 3.13.3",
+ "NUnit.Analyzers >= 3.6.1",
+ "NUnit3TestAdapter >= 4.2.1",
+ "coverlet.collector >= 6.0.0",
+ "netit >= 1.0.0"
+ ]
+ },
+ "packageFolders": {
+ "/home/apexfight/.nuget/packages/": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/home/apexfight/Desktop/DotNetNetIt/src/tests/tests.csproj",
+ "projectName": "tests",
+ "projectPath": "/home/apexfight/Desktop/DotNetNetIt/src/tests/tests.csproj",
+ "packagesPath": "/home/apexfight/.nuget/packages/",
+ "outputPath": "/home/apexfight/Desktop/DotNetNetIt/src/tests/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/apexfight/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {
+ "/home/apexfight/Desktop/DotNetNetIt/src/netit/netit.csproj": {
+ "projectPath": "/home/apexfight/Desktop/DotNetNetIt/src/netit/netit.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "dependencies": {
+ "Microsoft.NET.Test.Sdk": {
+ "target": "Package",
+ "version": "[17.6.0, )"
+ },
+ "NUnit": {
+ "target": "Package",
+ "version": "[3.13.3, )"
+ },
+ "NUnit.Analyzers": {
+ "target": "Package",
+ "version": "[3.6.1, )"
+ },
+ "NUnit3TestAdapter": {
+ "target": "Package",
+ "version": "[4.2.1, )"
+ },
+ "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": "/nix/store/cpgj5qzpngdwv248vwdmszp95lb11ak2-dotnet-sdk-8.0.119/share/dotnet/sdk/8.0.119/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/tests/obj/project.nuget.cache b/src/tests/obj/project.nuget.cache
new file mode 100644
index 0000000..b3e4f67
--- /dev/null
+++ b/src/tests/obj/project.nuget.cache
@@ -0,0 +1,22 @@
+{
+ "version": 2,
+ "dgSpecHash": "Q+7PCXYeX7jEJrtLDZ+WTzvbGATZe8lm0F3d0Z1I4jsISYkxleBcQ4vOa4x6Ri3OgSrYe+V0vipJ2h5V65K2nA==",
+ "success": true,
+ "projectFilePath": "/home/apexfight/Desktop/DotNetNetIt/src/tests/tests.csproj",
+ "expectedPackageFiles": [
+ "/home/apexfight/.nuget/packages/coverlet.collector/6.0.0/coverlet.collector.6.0.0.nupkg.sha512",
+ "/home/apexfight/.nuget/packages/microsoft.codecoverage/17.6.0/microsoft.codecoverage.17.6.0.nupkg.sha512",
+ "/home/apexfight/.nuget/packages/microsoft.net.test.sdk/17.6.0/microsoft.net.test.sdk.17.6.0.nupkg.sha512",
+ "/home/apexfight/.nuget/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "/home/apexfight/.nuget/packages/microsoft.testplatform.objectmodel/17.6.0/microsoft.testplatform.objectmodel.17.6.0.nupkg.sha512",
+ "/home/apexfight/.nuget/packages/microsoft.testplatform.testhost/17.6.0/microsoft.testplatform.testhost.17.6.0.nupkg.sha512",
+ "/home/apexfight/.nuget/packages/netstandard.library/2.0.0/netstandard.library.2.0.0.nupkg.sha512",
+ "/home/apexfight/.nuget/packages/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg.sha512",
+ "/home/apexfight/.nuget/packages/nuget.frameworks/5.11.0/nuget.frameworks.5.11.0.nupkg.sha512",
+ "/home/apexfight/.nuget/packages/nunit/3.13.3/nunit.3.13.3.nupkg.sha512",
+ "/home/apexfight/.nuget/packages/nunit.analyzers/3.6.1/nunit.analyzers.3.6.1.nupkg.sha512",
+ "/home/apexfight/.nuget/packages/nunit3testadapter/4.2.1/nunit3testadapter.4.2.1.nupkg.sha512",
+ "/home/apexfight/.nuget/packages/system.reflection.metadata/1.6.0/system.reflection.metadata.1.6.0.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/src/tests/obj/tests.csproj.nuget.dgspec.json b/src/tests/obj/tests.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..e818122
--- /dev/null
+++ b/src/tests/obj/tests.csproj.nuget.dgspec.json
@@ -0,0 +1,140 @@
+{
+ "format": 1,
+ "restore": {
+ "/home/apexfight/Desktop/DotNetNetIt/src/tests/tests.csproj": {}
+ },
+ "projects": {
+ "/home/apexfight/Desktop/DotNetNetIt/src/netit/netit.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/home/apexfight/Desktop/DotNetNetIt/src/netit/netit.csproj",
+ "projectName": "netit",
+ "projectPath": "/home/apexfight/Desktop/DotNetNetIt/src/netit/netit.csproj",
+ "packagesPath": "/home/apexfight/.nuget/packages/",
+ "outputPath": "/home/apexfight/Desktop/DotNetNetIt/src/netit/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/apexfight/.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"
+ ]
+ }
+ },
+ "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": "/nix/store/cpgj5qzpngdwv248vwdmszp95lb11ak2-dotnet-sdk-8.0.119/share/dotnet/sdk/8.0.119/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ },
+ "/home/apexfight/Desktop/DotNetNetIt/src/tests/tests.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/home/apexfight/Desktop/DotNetNetIt/src/tests/tests.csproj",
+ "projectName": "tests",
+ "projectPath": "/home/apexfight/Desktop/DotNetNetIt/src/tests/tests.csproj",
+ "packagesPath": "/home/apexfight/.nuget/packages/",
+ "outputPath": "/home/apexfight/Desktop/DotNetNetIt/src/tests/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/apexfight/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {
+ "/home/apexfight/Desktop/DotNetNetIt/src/netit/netit.csproj": {
+ "projectPath": "/home/apexfight/Desktop/DotNetNetIt/src/netit/netit.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "dependencies": {
+ "Microsoft.NET.Test.Sdk": {
+ "target": "Package",
+ "version": "[17.6.0, )"
+ },
+ "NUnit": {
+ "target": "Package",
+ "version": "[3.13.3, )"
+ },
+ "NUnit.Analyzers": {
+ "target": "Package",
+ "version": "[3.6.1, )"
+ },
+ "NUnit3TestAdapter": {
+ "target": "Package",
+ "version": "[4.2.1, )"
+ },
+ "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": "/nix/store/cpgj5qzpngdwv248vwdmszp95lb11ak2-dotnet-sdk-8.0.119/share/dotnet/sdk/8.0.119/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/tests/obj/tests.csproj.nuget.g.props b/src/tests/obj/tests.csproj.nuget.g.props
new file mode 100644
index 0000000..c7fb734
--- /dev/null
+++ b/src/tests/obj/tests.csproj.nuget.g.props
@@ -0,0 +1,25 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ /home/apexfight/.nuget/packages/
+ /home/apexfight/.nuget/packages/
+ PackageReference
+ 6.8.1
+
+
+
+
+
+
+
+
+
+
+
+
+ /home/apexfight/.nuget/packages/nunit.analyzers/3.6.1
+
+
\ No newline at end of file
diff --git a/src/tests/obj/tests.csproj.nuget.g.targets b/src/tests/obj/tests.csproj.nuget.g.targets
new file mode 100644
index 0000000..8e0d80d
--- /dev/null
+++ b/src/tests/obj/tests.csproj.nuget.g.targets
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/tests/tests.csproj b/src/tests/tests.csproj
new file mode 100644
index 0000000..2f0024c
--- /dev/null
+++ b/src/tests/tests.csproj
@@ -0,0 +1,24 @@
+
+
+
+ net8.0
+ enable
+ enable
+
+ false
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+