Skip to content

Commit

Permalink
Fix entry point ref PR #1272 for issue #1271
Browse files Browse the repository at this point in the history
  • Loading branch information
OsirisTerje committed Apr 2, 2024
1 parent 7ba3d66 commit dbab5d4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 1 addition & 5 deletions NUnitConsole.sln
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,6 @@ EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "nunit3-console", "src\NUnitConsole\nunit3-console\nunit3-console.csproj", "{0DE218CA-AFB8-423A-9CD2-E22DEAC55C46}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "nunit3-console.tests", "src\NUnitConsole\nunit3-console.tests\nunit3-console.tests.csproj", "{B310A760-8AE1-41CA-81F8-03B12E2FCE30}"
ProjectSection(ProjectDependencies) = postProject
{B1D90742-39BD-429C-8E87-C5CD2991DF27} = {B1D90742-39BD-429C-8E87-C5CD2991DF27}
{D694CB69-6CFB-4762-86C2-EB27B808B282} = {D694CB69-6CFB-4762-86C2-EB27B808B282}
{C2A8FC7A-FA64-46EA-AF6D-73D6B371DBF8} = {C2A8FC7A-FA64-46EA-AF6D-73D6B371DBF8}
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "engine", "engine", "{43A219A8-2995-4884-806F-FDB9CD25D403}"
ProjectSection(SolutionItems) = preProject
Expand All @@ -72,6 +67,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "engine", "engine", "{43A219
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "runners", "runners", "{F3E87D0F-6F06-4C0B-AE06-42C0834C3C6E}"
ProjectSection(SolutionItems) = preProject
nuget\runners\DotnetToolSettings.xml = nuget\runners\DotnetToolSettings.xml
nuget\runners\nunit.agent.addins = nuget\runners\nunit.agent.addins
nuget\runners\nunit.console-runner-with-extensions.nuspec = nuget\runners\nunit.console-runner-with-extensions.nuspec
nuget\runners\nunit.console-runner.netcore.nuspec = nuget\runners\nunit.console-runner.netcore.nuspec
Expand Down
7 changes: 6 additions & 1 deletion cake/package-checks.cake
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,12 @@ private bool ApplyChecks(string dir, PackageCheck[] checks)
bool allOK = true;

foreach (var check in checks)
allOK &= check.Apply(dir);
{
var ok = check.Apply(dir);
if (!ok)
WriteInfo($"Check failed.for {dir}");
allOK &= ok;
}

return allOK;
}
Expand Down
2 changes: 1 addition & 1 deletion nuget/runners/DotnetToolSettings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<DotNetCliTool>
<Commands>
<Command Name="nunit" EntryPoint="nunit3-console.dll" Runner="dotnet" />
<Command Name="nunit" EntryPoint="nunit3-netcore-console.dll" Runner="dotnet" />
</Commands>
</DotNetCliTool>

0 comments on commit dbab5d4

Please sign in to comment.