garbage day
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -43,9 +43,9 @@ test-results/
|
|||||||
# Autogenerated VS/MD/Consulo solution and project files
|
# Autogenerated VS/MD/Consulo solution and project files
|
||||||
ExportedObj/
|
ExportedObj/
|
||||||
.consulo/
|
.consulo/
|
||||||
*.csproj
|
|
||||||
*.unityproj
|
*.unityproj
|
||||||
*.sln
|
|
||||||
*.suo
|
*.suo
|
||||||
*.tmp
|
*.tmp
|
||||||
*.user
|
*.user
|
||||||
|
34
DotNetNetIt.sln
Normal file
34
DotNetNetIt.sln
Normal file
@@ -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
|
6
src/netit/BitBasher.cs
Normal file
6
src/netit/BitBasher.cs
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
namespace netit;
|
||||||
|
|
||||||
|
public class BitBasher
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
14
src/netit/INetSerializeable.cs
Normal file
14
src/netit/INetSerializeable.cs
Normal file
@@ -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();
|
||||||
|
}
|
8
src/netit/INetSyncable.cs
Normal file
8
src/netit/INetSyncable.cs
Normal file
@@ -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();
|
||||||
|
}
|
6
src/netit/Packet.cs
Normal file
6
src/netit/Packet.cs
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
namespace netit;
|
||||||
|
|
||||||
|
public class Packet
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
22
src/netit/TransportDefinition.cs
Normal file
22
src/netit/TransportDefinition.cs
Normal file
@@ -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.");
|
||||||
|
}
|
||||||
|
}
|
23
src/netit/bin/Debug/net8.0/netit.deps.json
Normal file
23
src/netit/bin/Debug/net8.0/netit.deps.json
Normal file
@@ -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": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
src/netit/bin/Debug/net8.0/netit.dll
Normal file
BIN
src/netit/bin/Debug/net8.0/netit.dll
Normal file
Binary file not shown.
8
src/netit/netit.cs
Normal file
8
src/netit/netit.cs
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
namespace netit;
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Net.Sockets;
|
||||||
|
public class NetIt
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
9
src/netit/netit.csproj
Normal file
9
src/netit/netit.csproj
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
22
src/netit/obj/Debug/net8.0/netit.AssemblyInfo.cs
Normal file
22
src/netit/obj/Debug/net8.0/netit.AssemblyInfo.cs
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
@@ -0,0 +1 @@
|
|||||||
|
72f2a468e482fccaf14cc377466bf8a209114007c0090e6884fbd2b1a7e32833
|
@@ -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 =
|
8
src/netit/obj/Debug/net8.0/netit.GlobalUsings.g.cs
Normal file
8
src/netit/obj/Debug/net8.0/netit.GlobalUsings.g.cs
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
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;
|
BIN
src/netit/obj/Debug/net8.0/netit.assets.cache
Normal file
BIN
src/netit/obj/Debug/net8.0/netit.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
1a740d65a9bb003b1de07ea716bb0ffd215486af0c228340e9a77bf5f6a4d6b6
|
11
src/netit/obj/Debug/net8.0/netit.csproj.FileListAbsolute.txt
Normal file
11
src/netit/obj/Debug/net8.0/netit.csproj.FileListAbsolute.txt
Normal file
@@ -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
|
BIN
src/netit/obj/Debug/net8.0/netit.dll
Normal file
BIN
src/netit/obj/Debug/net8.0/netit.dll
Normal file
Binary file not shown.
BIN
src/netit/obj/Debug/net8.0/ref/netit.dll
Normal file
BIN
src/netit/obj/Debug/net8.0/ref/netit.dll
Normal file
Binary file not shown.
BIN
src/netit/obj/Debug/net8.0/refint/netit.dll
Normal file
BIN
src/netit/obj/Debug/net8.0/refint/netit.dll
Normal file
Binary file not shown.
61
src/netit/obj/netit.csproj.nuget.dgspec.json
Normal file
61
src/netit/obj/netit.csproj.nuget.dgspec.json
Normal file
@@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
15
src/netit/obj/netit.csproj.nuget.g.props
Normal file
15
src/netit/obj/netit.csproj.nuget.g.props
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/apexfight/.nuget/packages/</NuGetPackageRoot>
|
||||||
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/apexfight/.nuget/packages/</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.8.1</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="/home/apexfight/.nuget/packages/" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
2
src/netit/obj/netit.csproj.nuget.g.targets
Normal file
2
src/netit/obj/netit.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
66
src/netit/obj/project.assets.json
Normal file
66
src/netit/obj/project.assets.json
Normal file
@@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
8
src/netit/obj/project.nuget.cache
Normal file
8
src/netit/obj/project.nuget.cache
Normal file
@@ -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": []
|
||||||
|
}
|
1
src/tests/GlobalUsings.cs
Normal file
1
src/tests/GlobalUsings.cs
Normal file
@@ -0,0 +1 @@
|
|||||||
|
global using NUnit.Framework;
|
27
src/tests/UnitTest1.cs
Normal file
27
src/tests/UnitTest1.cs
Normal file
@@ -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();
|
||||||
|
}
|
||||||
|
}
|
BIN
src/tests/bin/Debug/net8.0/CoverletSourceRootsMapping_tests
Normal file
BIN
src/tests/bin/Debug/net8.0/CoverletSourceRootsMapping_tests
Normal file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll
Executable file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll
Executable file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll
Executable file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll
Executable file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll
Executable file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll
Executable file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll
Executable file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
Executable file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/NUnit3.TestAdapter.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/NUnit3.TestAdapter.dll
Executable file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/Newtonsoft.Json.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/Newtonsoft.Json.dll
Executable file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/NuGet.Frameworks.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/NuGet.Frameworks.dll
Executable file
Binary file not shown.
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/netit.dll
Normal file
BIN
src/tests/bin/Debug/net8.0/netit.dll
Normal file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/nunit.engine.api.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/nunit.engine.api.dll
Executable file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/nunit.engine.core.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/nunit.engine.core.dll
Executable file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/nunit.engine.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/nunit.engine.dll
Executable file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/nunit.framework.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/nunit.framework.dll
Executable file
Binary file not shown.
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/testcentric.engine.metadata.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/testcentric.engine.metadata.dll
Executable file
Binary file not shown.
BIN
src/tests/bin/Debug/net8.0/testhost.dll
Executable file
BIN
src/tests/bin/Debug/net8.0/testhost.dll
Executable file
Binary file not shown.
430
src/tests/bin/Debug/net8.0/tests.deps.json
Normal file
430
src/tests/bin/Debug/net8.0/tests.deps.json
Normal file
@@ -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": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
src/tests/bin/Debug/net8.0/tests.dll
Normal file
BIN
src/tests/bin/Debug/net8.0/tests.dll
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user