diff --git a/CHANGELOG.md b/CHANGELOG.md index 5452f0d1e..7daa095e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [vNext] +- Changed `NUnit` option from deprecated `--params` to new `--testparam` ## [7.0.6] / 2023-09-24 - Fixed logging of Docker target execution to fall back to debug messages diff --git a/source/Nuke.Common/Tools/NUnit/NUnit.json b/source/Nuke.Common/Tools/NUnit/NUnit.json index 52b6031c9..d8a605977 100644 --- a/source/Nuke.Common/Tools/NUnit/NUnit.json +++ b/source/Nuke.Common/Tools/NUnit/NUnit.json @@ -42,9 +42,9 @@ { "name": "Parameters", "type": "Dictionary", - "format": "--params={value}", + "format": "--testparam={value}", "itemFormat": "{key}={value}", - "help": "A test parameter specified in the form NAME=VALUE. Multiple parameters may be specified, separated by semicolons or by repeating the --params option multiple times." + "help": "A test parameter specified in the form NAME=VALUE for consumption by tests. Multiple parameters must be specified separated using a --testparam option for each." }, { "name": "Configuration",