From 86c5f3675b80d990459d8162581ba385a615e4a8 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Fri, 27 Jan 2023 17:46:41 +0100 Subject: [PATCH] Use dotnet test for C# unit tests execution --- .github/workflows/tests.yml | 15 +- Source/Platforms/DotNet/NUnit/LICENSE.txt | 20 -- .../Microsoft.Extensions.DependencyModel.dll | 3 - Source/Platforms/DotNet/NUnit/NOTICES.txt | 5 - .../NUnit/addins/nunit-project-loader.dll | 3 - .../NUnit/addins/nunit-v2-result-writer.dll | 3 - .../DotNet/NUnit/addins/nunit.core.dll | 3 - .../NUnit/addins/nunit.core.interfaces.dll | 3 - .../DotNet/NUnit/addins/nunit.v2.driver.dll | 3 - .../NUnit/addins/teamcity-event-listener.dll | 3 - .../DotNet/NUnit/addins/vs-project-loader.dll | 3 - .../Microsoft.Extensions.DependencyModel.dll | 3 - .../NUnit/agents/net7.0/nunit-agent.deps.json | 305 ----------------- .../NUnit/agents/net7.0/nunit-agent.dll | 3 - .../agents/net7.0/nunit-agent.dll.config | 41 --- .../NUnit/agents/net7.0/nunit-agent.exe | 3 - .../net7.0/nunit-agent.runtimeconfig.json | 12 - .../NUnit/agents/net7.0/nunit.engine.api.dll | 3 - .../NUnit/agents/net7.0/nunit.engine.core.dll | 3 - .../net7.0/testcentric.engine.metadata.dll | 3 - .../DotNet/NUnit/nunit.bundle.addins | 5 - .../DotNet/NUnit/nunit.engine.addins | 5 - .../DotNet/NUnit/nunit.engine.api.dll | 3 - .../DotNet/NUnit/nunit.engine.core.dll | 3 - .../Platforms/DotNet/NUnit/nunit.engine.dll | 3 - .../Platforms/DotNet/NUnit/nunit3-console.exe | 3 - .../DotNet/NUnit/nunit3-console.exe.config | 29 -- .../NUnit/nunit3-netcore-console.deps.json | 319 ------------------ .../DotNet/NUnit/nunit3-netcore-console.dll | 3 - .../NUnit/nunit3-netcore-console.dll.config | 35 -- .../nunit3-netcore-console.runtimeconfig.json | 13 - .../NUnit/testcentric.engine.metadata.dll | 3 - .../Flax.Build.Tests/Flax.Build.Tests.csproj | 2 - 33 files changed, 10 insertions(+), 856 deletions(-) delete mode 100644 Source/Platforms/DotNet/NUnit/LICENSE.txt delete mode 100644 Source/Platforms/DotNet/NUnit/Microsoft.Extensions.DependencyModel.dll delete mode 100644 Source/Platforms/DotNet/NUnit/NOTICES.txt delete mode 100644 Source/Platforms/DotNet/NUnit/addins/nunit-project-loader.dll delete mode 100644 Source/Platforms/DotNet/NUnit/addins/nunit-v2-result-writer.dll delete mode 100644 Source/Platforms/DotNet/NUnit/addins/nunit.core.dll delete mode 100644 Source/Platforms/DotNet/NUnit/addins/nunit.core.interfaces.dll delete mode 100644 Source/Platforms/DotNet/NUnit/addins/nunit.v2.driver.dll delete mode 100644 Source/Platforms/DotNet/NUnit/addins/teamcity-event-listener.dll delete mode 100644 Source/Platforms/DotNet/NUnit/addins/vs-project-loader.dll delete mode 100644 Source/Platforms/DotNet/NUnit/agents/net7.0/Microsoft.Extensions.DependencyModel.dll delete mode 100644 Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.deps.json delete mode 100644 Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.dll delete mode 100644 Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.dll.config delete mode 100644 Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.exe delete mode 100644 Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.runtimeconfig.json delete mode 100644 Source/Platforms/DotNet/NUnit/agents/net7.0/nunit.engine.api.dll delete mode 100644 Source/Platforms/DotNet/NUnit/agents/net7.0/nunit.engine.core.dll delete mode 100644 Source/Platforms/DotNet/NUnit/agents/net7.0/testcentric.engine.metadata.dll delete mode 100644 Source/Platforms/DotNet/NUnit/nunit.bundle.addins delete mode 100644 Source/Platforms/DotNet/NUnit/nunit.engine.addins delete mode 100644 Source/Platforms/DotNet/NUnit/nunit.engine.api.dll delete mode 100644 Source/Platforms/DotNet/NUnit/nunit.engine.core.dll delete mode 100644 Source/Platforms/DotNet/NUnit/nunit.engine.dll delete mode 100644 Source/Platforms/DotNet/NUnit/nunit3-console.exe delete mode 100644 Source/Platforms/DotNet/NUnit/nunit3-console.exe.config delete mode 100644 Source/Platforms/DotNet/NUnit/nunit3-netcore-console.deps.json delete mode 100644 Source/Platforms/DotNet/NUnit/nunit3-netcore-console.dll delete mode 100644 Source/Platforms/DotNet/NUnit/nunit3-netcore-console.dll.config delete mode 100644 Source/Platforms/DotNet/NUnit/nunit3-netcore-console.runtimeconfig.json delete mode 100644 Source/Platforms/DotNet/NUnit/testcentric.engine.metadata.dll diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index add822324..eed42a467 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,7 +5,6 @@ jobs: # Tests on Linux tests-linux: - if: ${{ false }} name: Tests (Linux) runs-on: "ubuntu-20.04" steps: @@ -36,8 +35,11 @@ jobs: - name: Test run: | ${GITHUB_WORKSPACE}/Binaries/Editor/Linux/Development/FlaxTests - dotnet Source/Platforms/DotNet/NUnit/nunit3-netcore-console.dll Binaries/Editor/Linux/Development/FlaxEngine.CSharp.dll - dotnet Source/Platforms/DotNet/NUnit/nunit3-netcore-console.dll Binaries/Tests/Flax.Build.Tests.dll + dotnet test -f net7.0 Binaries/Tests/Flax.Build.Tests.dll + cp Binaries/Editor/Linux/Development/FlaxEngine.CSharp.dll Binaries/Tests + cp Binaries/Editor/Linux/Development/FlaxEngine.CSharp.runtimeconfig.json Binaries/Tests + cp Binaries/Editor/Linux/Development/Newtonsoft.Json.dll Binaries/Tests + dotnet test -f net7.0 Binaries/Editor/Linux/Development/FlaxEngine.CSharp.dll - name: Test UseLargeWorlds run: | ./Development/Scripts/Linux/CallBuildTool.sh -build -log -arch=x64 -platform=Linux -configuration=Development -buildtargets=FlaxTestsTarget -UseLargeWorlds=true @@ -69,5 +71,8 @@ jobs: - name: Test run: | .\Binaries\Editor\Win64\Development\FlaxTests.exe - .\Source\Platforms\DotNet\NUnit\nunit3-console.exe Binaries\Editor\Win64\Development\FlaxEngine.CSharp.dll --framework=netcore-7.0 - .\Source\Platforms\DotNet\NUnit\nunit3-console.exe Binaries\Tests\Flax.Build.Tests.dll --framework=netcore-7.0 + dotnet test -f net7.0 Binaries\Tests\Flax.Build.Tests.dll + copy Binaries\Editor\Win64\Development\FlaxEngine.CSharp.dll Binaries\Tests + copy Binaries\Editor\Win64\Development\FlaxEngine.CSharp.runtimeconfig.json Binaries\Tests + copy Binaries\Editor\Win64\Development\Newtonsoft.Json.dll Binaries\Tests /Y + dotnet test -f net7.0 Binaries\Tests\FlaxEngine.CSharp.dll diff --git a/Source/Platforms/DotNet/NUnit/LICENSE.txt b/Source/Platforms/DotNet/NUnit/LICENSE.txt deleted file mode 100644 index 29f0e2ea4..000000000 --- a/Source/Platforms/DotNet/NUnit/LICENSE.txt +++ /dev/null @@ -1,20 +0,0 @@ -Copyright (c) 2021 Charlie Poole, Rob Prouse - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - diff --git a/Source/Platforms/DotNet/NUnit/Microsoft.Extensions.DependencyModel.dll b/Source/Platforms/DotNet/NUnit/Microsoft.Extensions.DependencyModel.dll deleted file mode 100644 index c0315dc59..000000000 --- a/Source/Platforms/DotNet/NUnit/Microsoft.Extensions.DependencyModel.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:693ad69d561f8533c9c45c41d8bcd9810547e2e862dffb275b10b5eb0dab9a6b -size 67960 diff --git a/Source/Platforms/DotNet/NUnit/NOTICES.txt b/Source/Platforms/DotNet/NUnit/NOTICES.txt deleted file mode 100644 index 02f3f84d6..000000000 --- a/Source/Platforms/DotNet/NUnit/NOTICES.txt +++ /dev/null @@ -1,5 +0,0 @@ -NUnit 3.0 is based on earlier versions of NUnit, with Portions - -Copyright (c) 2002-2014 Charlie Poole or -Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or -Copyright (c) 2000-2002 Philip A. Craig diff --git a/Source/Platforms/DotNet/NUnit/addins/nunit-project-loader.dll b/Source/Platforms/DotNet/NUnit/addins/nunit-project-loader.dll deleted file mode 100644 index 4a600458a..000000000 --- a/Source/Platforms/DotNet/NUnit/addins/nunit-project-loader.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fdf61e650bd6dc50b1f33d7e9bbc5de86a131ebb5bd55721a1ed0b5acbb81cca -size 13824 diff --git a/Source/Platforms/DotNet/NUnit/addins/nunit-v2-result-writer.dll b/Source/Platforms/DotNet/NUnit/addins/nunit-v2-result-writer.dll deleted file mode 100644 index 2315f1da6..000000000 --- a/Source/Platforms/DotNet/NUnit/addins/nunit-v2-result-writer.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:802f8cce427e6463d857eba300ee2554315cda5386037ccfe0b32d2eb0db8dcb -size 14848 diff --git a/Source/Platforms/DotNet/NUnit/addins/nunit.core.dll b/Source/Platforms/DotNet/NUnit/addins/nunit.core.dll deleted file mode 100644 index 9eb4d4e91..000000000 --- a/Source/Platforms/DotNet/NUnit/addins/nunit.core.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:00fd5b3d3b30218f8e6b034c5281e32f972f60d44e8ccd7e7d1b0b0545443e83 -size 147456 diff --git a/Source/Platforms/DotNet/NUnit/addins/nunit.core.interfaces.dll b/Source/Platforms/DotNet/NUnit/addins/nunit.core.interfaces.dll deleted file mode 100644 index fcee418a4..000000000 --- a/Source/Platforms/DotNet/NUnit/addins/nunit.core.interfaces.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:65c8f229c84b57ff2b8097f0064a59693c6e2bc58660801c7679903e57891ab1 -size 53248 diff --git a/Source/Platforms/DotNet/NUnit/addins/nunit.v2.driver.dll b/Source/Platforms/DotNet/NUnit/addins/nunit.v2.driver.dll deleted file mode 100644 index bbabe7c13..000000000 --- a/Source/Platforms/DotNet/NUnit/addins/nunit.v2.driver.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:068ed9d5866e2eeee4dc9dbcc10459855999dc45e6d49a589d9dc20f3e45115a -size 20992 diff --git a/Source/Platforms/DotNet/NUnit/addins/teamcity-event-listener.dll b/Source/Platforms/DotNet/NUnit/addins/teamcity-event-listener.dll deleted file mode 100644 index 37e4b47bf..000000000 --- a/Source/Platforms/DotNet/NUnit/addins/teamcity-event-listener.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3b87b230e2fe5c772762314117ec13e8fc3373e099ec5ed596e1a4caa0e1d0e4 -size 45568 diff --git a/Source/Platforms/DotNet/NUnit/addins/vs-project-loader.dll b/Source/Platforms/DotNet/NUnit/addins/vs-project-loader.dll deleted file mode 100644 index 3f009b8e1..000000000 --- a/Source/Platforms/DotNet/NUnit/addins/vs-project-loader.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:983887f4a17a26aa69065f89bfd3dfe0349827eb3be94a4a387a7255d826a541 -size 17408 diff --git a/Source/Platforms/DotNet/NUnit/agents/net7.0/Microsoft.Extensions.DependencyModel.dll b/Source/Platforms/DotNet/NUnit/agents/net7.0/Microsoft.Extensions.DependencyModel.dll deleted file mode 100644 index c0315dc59..000000000 --- a/Source/Platforms/DotNet/NUnit/agents/net7.0/Microsoft.Extensions.DependencyModel.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:693ad69d561f8533c9c45c41d8bcd9810547e2e862dffb275b10b5eb0dab9a6b -size 67960 diff --git a/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.deps.json b/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.deps.json deleted file mode 100644 index 7b9655795..000000000 --- a/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.deps.json +++ /dev/null @@ -1,305 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v7.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v7.0": { - "nunit-agent/3.16.1": { - "dependencies": { - "nunit.engine.api": "3.16.1", - "nunit.engine.core": "3.16.1" - }, - "runtime": { - "nunit-agent.dll": {} - } - }, - "Microsoft.Extensions.DependencyModel/3.1.0": { - "dependencies": { - "System.Text.Json": "4.7.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "3.1.0.0", - "fileVersion": "3.100.19.56502" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.Win32.Registry/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Json/4.7.0": {}, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "TestCentric.Metadata/1.7.1": { - "runtime": { - "lib/netstandard2.0/testcentric.engine.metadata.dll": { - "assemblyVersion": "1.7.1.0", - "fileVersion": "1.7.1.0" - } - } - }, - "nunit.engine.api/3.16.1": { - "runtime": { - "nunit.engine.api.dll": {} - } - }, - "nunit.engine.core/3.16.1": { - "dependencies": { - "Microsoft.Extensions.DependencyModel": "3.1.0", - "Microsoft.Win32.Registry": "4.3.0", - "TestCentric.Metadata": "1.7.1", - "nunit.engine.api": "3.16.1" - }, - "runtime": { - "nunit.engine.core.dll": {} - } - } - } - }, - "libraries": { - "nunit-agent/3.16.1": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.DependencyModel/3.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8tBjqI1xU3CNjdXMZF7BaY71ChU44x30QtHI2rVmPB3+3PjYi+YGhVTV5+IOlc40F81Bylh4gWwHET3jVKFE4Q==", - "path": "microsoft.extensions.dependencymodel/3.1.0", - "hashPath": "microsoft.extensions.dependencymodel.3.1.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.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", - "path": "microsoft.win32.registry/4.3.0", - "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Json/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IPq/x/d5nAcnD3vIyM3AbPOaTgcqrh0AqPSx7U53UFu3M6k1TH1u/eXc9/h4jm/3mpP1WRUpevlPY4PACd7AWw==", - "path": "system.text.json/4.7.0", - "hashPath": "system.text.json.4.7.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "TestCentric.Metadata/1.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QjdwsUJXJbGmFKNiTZbWeRpwhqRcEAtgb+dwR4YVK8xUBBEfXfrFV074f1DBtnrOfAIT+LnZCeVVeg/fYUlAEA==", - "path": "testcentric.metadata/1.7.1", - "hashPath": "testcentric.metadata.1.7.1.nupkg.sha512" - }, - "nunit.engine.api/3.16.1": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine.core/3.16.1": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.dll b/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.dll deleted file mode 100644 index 85c21867f..000000000 --- a/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2a87f056fbd8030aa488516502bd2643bdf9927a61e8d5752720d18407a9264d -size 74240 diff --git a/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.dll.config b/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.dll.config deleted file mode 100644 index f72511441..000000000 --- a/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.dll.config +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.exe b/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.exe deleted file mode 100644 index 96a23e6a7..000000000 --- a/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.exe +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bbf76732e706bcb793183f65d2b395c7db3d97032e44f17ee5f535ca14e218e4 -size 216064 diff --git a/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.runtimeconfig.json b/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.runtimeconfig.json deleted file mode 100644 index 398903e05..000000000 --- a/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit-agent.runtimeconfig.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net7.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "7.0.0" - }, - "configProperties": { - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false - } - } -} \ No newline at end of file diff --git a/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit.engine.api.dll b/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit.engine.api.dll deleted file mode 100644 index 011a3f7ae..000000000 --- a/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit.engine.api.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:35ecf0f9cca274723fd8558f43d1df0dc6bac5d7b23980352aa7b939d3f25f66 -size 17920 diff --git a/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit.engine.core.dll b/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit.engine.core.dll deleted file mode 100644 index db0e74b46..000000000 --- a/Source/Platforms/DotNet/NUnit/agents/net7.0/nunit.engine.core.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0ab2a00c73a8e96dea442fa176659ba1d64e91301c4af3188d6e06c08570d1af -size 89600 diff --git a/Source/Platforms/DotNet/NUnit/agents/net7.0/testcentric.engine.metadata.dll b/Source/Platforms/DotNet/NUnit/agents/net7.0/testcentric.engine.metadata.dll deleted file mode 100644 index 4ffc2c0e6..000000000 --- a/Source/Platforms/DotNet/NUnit/agents/net7.0/testcentric.engine.metadata.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:69e4533ee53bfcee5305ee16c1fe485c4d4d8525ac3d367d9e04d5b4baa4a6c6 -size 177664 diff --git a/Source/Platforms/DotNet/NUnit/nunit.bundle.addins b/Source/Platforms/DotNet/NUnit/nunit.bundle.addins deleted file mode 100644 index be4c6fa29..000000000 --- a/Source/Platforms/DotNet/NUnit/nunit.bundle.addins +++ /dev/null @@ -1,5 +0,0 @@ -addins/nunit.v2.driver.dll -addins/nunit-v2-result-writer.dll -addins/nunit-project-loader.dll -addins/vs-project-loader.dll -addins/teamcity-event-listener.dll diff --git a/Source/Platforms/DotNet/NUnit/nunit.engine.addins b/Source/Platforms/DotNet/NUnit/nunit.engine.addins deleted file mode 100644 index be4c6fa29..000000000 --- a/Source/Platforms/DotNet/NUnit/nunit.engine.addins +++ /dev/null @@ -1,5 +0,0 @@ -addins/nunit.v2.driver.dll -addins/nunit-v2-result-writer.dll -addins/nunit-project-loader.dll -addins/vs-project-loader.dll -addins/teamcity-event-listener.dll diff --git a/Source/Platforms/DotNet/NUnit/nunit.engine.api.dll b/Source/Platforms/DotNet/NUnit/nunit.engine.api.dll deleted file mode 100644 index 1190c4edb..000000000 --- a/Source/Platforms/DotNet/NUnit/nunit.engine.api.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:12e2330938618cbf2c457be2c0e75d242b91e87d3c033d8cfb86c8957ed0e0a8 -size 17920 diff --git a/Source/Platforms/DotNet/NUnit/nunit.engine.core.dll b/Source/Platforms/DotNet/NUnit/nunit.engine.core.dll deleted file mode 100644 index 711ab93d9..000000000 --- a/Source/Platforms/DotNet/NUnit/nunit.engine.core.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4eff8853d7f3f8e20384a09a010780d6ac81923a5fecd8f21753ceb053db55c2 -size 89600 diff --git a/Source/Platforms/DotNet/NUnit/nunit.engine.dll b/Source/Platforms/DotNet/NUnit/nunit.engine.dll deleted file mode 100644 index 6e3f2e183..000000000 --- a/Source/Platforms/DotNet/NUnit/nunit.engine.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7584c2fecbdbefc8ddd0b49d9e8bc4bdd527ec9ba204ef3d95dca3a0bae16e05 -size 47616 diff --git a/Source/Platforms/DotNet/NUnit/nunit3-console.exe b/Source/Platforms/DotNet/NUnit/nunit3-console.exe deleted file mode 100644 index f17d502cb..000000000 --- a/Source/Platforms/DotNet/NUnit/nunit3-console.exe +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3a83a53495d68679a5edb1b8ca72fc8ca44e571d6754015bd74d82ed69ee88d4 -size 165376 diff --git a/Source/Platforms/DotNet/NUnit/nunit3-console.exe.config b/Source/Platforms/DotNet/NUnit/nunit3-console.exe.config deleted file mode 100644 index bf784cbb9..000000000 --- a/Source/Platforms/DotNet/NUnit/nunit3-console.exe.config +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Source/Platforms/DotNet/NUnit/nunit3-netcore-console.deps.json b/Source/Platforms/DotNet/NUnit/nunit3-netcore-console.deps.json deleted file mode 100644 index 156558138..000000000 --- a/Source/Platforms/DotNet/NUnit/nunit3-netcore-console.deps.json +++ /dev/null @@ -1,319 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "nunit3-netcore-console/3.16.1": { - "dependencies": { - "nunit.engine": "3.16.1", - "nunit.engine.api": "3.16.1" - }, - "runtime": { - "nunit3-netcore-console.dll": {} - } - }, - "Microsoft.Extensions.DependencyModel/3.1.0": { - "dependencies": { - "System.Text.Json": "4.7.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "3.1.0.0", - "fileVersion": "3.100.19.56502" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.Win32.Registry/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Json/4.7.0": {}, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "TestCentric.Metadata/1.7.1": { - "runtime": { - "lib/netstandard2.0/testcentric.engine.metadata.dll": { - "assemblyVersion": "1.7.1.0", - "fileVersion": "1.7.1.0" - } - } - }, - "nunit.engine/3.16.1": { - "dependencies": { - "nunit.engine.api": "3.16.1", - "nunit.engine.core": "3.16.1" - }, - "runtime": { - "nunit.engine.dll": {} - } - }, - "nunit.engine.api/3.16.1": { - "runtime": { - "nunit.engine.api.dll": {} - } - }, - "nunit.engine.core/3.16.1": { - "dependencies": { - "Microsoft.Extensions.DependencyModel": "3.1.0", - "Microsoft.Win32.Registry": "4.3.0", - "TestCentric.Metadata": "1.7.1", - "nunit.engine.api": "3.16.1" - }, - "runtime": { - "nunit.engine.core.dll": {} - } - } - } - }, - "libraries": { - "nunit3-netcore-console/3.16.1": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.DependencyModel/3.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8tBjqI1xU3CNjdXMZF7BaY71ChU44x30QtHI2rVmPB3+3PjYi+YGhVTV5+IOlc40F81Bylh4gWwHET3jVKFE4Q==", - "path": "microsoft.extensions.dependencymodel/3.1.0", - "hashPath": "microsoft.extensions.dependencymodel.3.1.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.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", - "path": "microsoft.win32.registry/4.3.0", - "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Json/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IPq/x/d5nAcnD3vIyM3AbPOaTgcqrh0AqPSx7U53UFu3M6k1TH1u/eXc9/h4jm/3mpP1WRUpevlPY4PACd7AWw==", - "path": "system.text.json/4.7.0", - "hashPath": "system.text.json.4.7.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "TestCentric.Metadata/1.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QjdwsUJXJbGmFKNiTZbWeRpwhqRcEAtgb+dwR4YVK8xUBBEfXfrFV074f1DBtnrOfAIT+LnZCeVVeg/fYUlAEA==", - "path": "testcentric.metadata/1.7.1", - "hashPath": "testcentric.metadata.1.7.1.nupkg.sha512" - }, - "nunit.engine/3.16.1": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine.api/3.16.1": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine.core/3.16.1": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/Source/Platforms/DotNet/NUnit/nunit3-netcore-console.dll b/Source/Platforms/DotNet/NUnit/nunit3-netcore-console.dll deleted file mode 100644 index 96a3a9a1b..000000000 --- a/Source/Platforms/DotNet/NUnit/nunit3-netcore-console.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e6c782a1ac5c8d10ca9137f45a88137b7e23e862e6aaefc494d85a92bba236fa -size 165376 diff --git a/Source/Platforms/DotNet/NUnit/nunit3-netcore-console.dll.config b/Source/Platforms/DotNet/NUnit/nunit3-netcore-console.dll.config deleted file mode 100644 index fb93fb52c..000000000 --- a/Source/Platforms/DotNet/NUnit/nunit3-netcore-console.dll.config +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Source/Platforms/DotNet/NUnit/nunit3-netcore-console.runtimeconfig.json b/Source/Platforms/DotNet/NUnit/nunit3-netcore-console.runtimeconfig.json deleted file mode 100644 index 30e8b4c84..000000000 --- a/Source/Platforms/DotNet/NUnit/nunit3-netcore-console.runtimeconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net6.0", - "rollForward": "Major", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "6.0.0" - }, - "configProperties": { - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false - } - } -} \ No newline at end of file diff --git a/Source/Platforms/DotNet/NUnit/testcentric.engine.metadata.dll b/Source/Platforms/DotNet/NUnit/testcentric.engine.metadata.dll deleted file mode 100644 index 4ffc2c0e6..000000000 --- a/Source/Platforms/DotNet/NUnit/testcentric.engine.metadata.dll +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:69e4533ee53bfcee5305ee16c1fe485c4d4d8525ac3d367d9e04d5b4baa4a6c6 -size 177664 diff --git a/Source/Tools/Flax.Build.Tests/Flax.Build.Tests.csproj b/Source/Tools/Flax.Build.Tests/Flax.Build.Tests.csproj index 263fd9906..3c994018a 100644 --- a/Source/Tools/Flax.Build.Tests/Flax.Build.Tests.csproj +++ b/Source/Tools/Flax.Build.Tests/Flax.Build.Tests.csproj @@ -24,8 +24,6 @@ - -