Skip to content

Commit

Permalink
Merge pull request #1577 from nunit/issue-1576
Browse files Browse the repository at this point in the history
Drop ref to nunit.engine
  • Loading branch information
CharliePoole authored Dec 29, 2024
2 parents 176c5ac + e712548 commit ac88ae3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 144 deletions.
3 changes: 2 additions & 1 deletion src/NUnitConsole/nunit4-console/ColorConsoleWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ public override void WriteLabelLine(string label, object option)
/// <param name="valueStyle">The color to display the value with</param>
public override void WriteLabel(string label, object option, ColorStyle valueStyle)
{
Guard.ArgumentNotNull(option, nameof(option));
if (option == null)
throw new NullReferenceException(nameof(option));

Write(ColorStyle.Label, label);
Write(valueStyle, option.ToString());
Expand Down
142 changes: 0 additions & 142 deletions src/NUnitConsole/nunit4-console/EnginePackageSettings.cs

This file was deleted.

2 changes: 1 addition & 1 deletion src/NUnitConsole/nunit4-console/nunit4-console.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
</PropertyGroup>

<ItemGroup>
<Compile Include="..\..\NUnitEngine\nunit.engine.core\EnginePackageSettings.cs" Link="EnginePackageSettings.cs" />
<Compile Include="..\..\NUnitEngine\nunit.engine.core\Internal\ExceptionHelper.cs" Link="Utilities\ExceptionHelper.cs" />
<Content Include="..\..\..\nunit.ico" Link="nunit.ico" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\NUnitEngine\nunit.engine.api\nunit.engine.api.csproj" />
<ProjectReference Include="..\..\NUnitEngine\nunit.engine\nunit.engine.csproj" />
</ItemGroup>

</Project>

0 comments on commit ac88ae3

Please sign in to comment.