Skip to content

Commit

Permalink
Changes from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
CharliePoole committed Jun 1, 2024
1 parent ad03651 commit 02d8e0d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
next-version: 3.15.5
next-version: 3.17.1
mode: ContinuousDelivery
legacy-semver-padding: 5
build-metadata-padding: 5
commits-since-version-source-padding: 5
branches:
master:
regex: ^(main|version3X)$
tag: dev
release:
tag: pre
Expand Down
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ Task("BuildTestAndPackage")
Task("Appveyor")
.Description("Target we run in our AppVeyor CI")
.IsDependentOn("BuildTestAndPackage")
//.IsDependentOn("PublishPackages")
.IsDependentOn("PublishPackages")
.IsDependentOn("CreateDraftRelease")
.IsDependentOn("CreateProductionRelease");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public void SkipsGracefullyLoadingOtherFrameworkExtensionAssembly()
// Attempt to load the .NET 3.5 version of the extensions from the .NET Core 2.0 tests
var assemblyName = Path.Combine(GetSiblingDirectory("net35"), "nunit.engine.core.tests.exe");
#else
// Attempt to load the .NET Core 2.1 version of the extensions from the .NET 3.5 tests
// Attempt to load the .NET Core 3.1 version of the extensions from the .NET 3.5 tests
var assemblyName = Path.Combine(GetSiblingDirectory("netcoreapp3.1"), "nunit.engine.core.tests.dll");
#endif
Assert.That(assemblyName, Does.Exist);
Expand Down

0 comments on commit 02d8e0d

Please sign in to comment.