Skip to content

Commit c5e7f04

Browse files
committed
Eliminate unused Types
1 parent 8fdb712 commit c5e7f04

File tree

11 files changed

+11
-394
lines changed

11 files changed

+11
-394
lines changed

.github/workflows/NUnitConsoleAndEngine.CI.yml

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
dotnet-version: |
3838
3.1.x
3939
6.0.x
40+
7.0.x
4041
8.0.100
4142
4243
- name: 🔧 Install dotnet tools

src/NUnitEngine/nunit.engine.core.tests/Internal/Backports/PathTests.cs

-60
This file was deleted.

src/NUnitEngine/nunit.engine.core.tests/Internal/Backports/TupleTests.cs

-19
This file was deleted.

src/NUnitEngine/nunit.engine.core/Communication/Transports/ITestAgentTransport.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ namespace NUnit.Engine.Communication.Transports
88
/// The ITestAgentTransport interface is implemented by a
99
/// class providing communication for a TestAgent.
1010
/// </summary>
11-
public interface ITestAgentTransport : ITransport
11+
public interface ITestAgentTransport
1212
{
1313
TestAgent Agent { get; }
1414
ITestEngineRunner CreateRunner(TestPackage package);
15+
bool Start();
16+
void Stop();
1517
}
1618
}

src/NUnitEngine/nunit.engine.core/Communication/Transports/ITransport.cs

-14
This file was deleted.

src/NUnitEngine/nunit.engine.core/Compatibility/FrameworkName.cs

-232
This file was deleted.

src/NUnitEngine/nunit.engine.core/Extensibility/ExtensionManager.cs

+2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
using NUnit.Engine.Internal.FileSystemAccess;
1010
using NUnit.Engine.Internal.FileSystemAccess.Default;
1111
using System.Linq;
12+
#if NET462
1213
using NUnit.Engine.Internal.Backports;
14+
#endif
1315

1416
namespace NUnit.Engine.Extensibility
1517
{

src/NUnitEngine/nunit.engine.core/Internal/Backports/Path.cs

-34
This file was deleted.

0 commit comments

Comments
 (0)