From f3a7b60946979f50b89548773fad4aee2b5f0b28 Mon Sep 17 00:00:00 2001 From: Rob Prouse Date: Sun, 24 Mar 2019 17:14:57 -0400 Subject: [PATCH 1/2] NUnit Console and Engine 3.10 release --- _posts/2019-03-24-nunit-console-3.10.md | 11 +++++++++++ download.html | 8 ++++++-- 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 _posts/2019-03-24-nunit-console-3.10.md diff --git a/_posts/2019-03-24-nunit-console-3.10.md b/_posts/2019-03-24-nunit-console-3.10.md new file mode 100644 index 00000000..676aa1c3 --- /dev/null +++ b/_posts/2019-03-24-nunit-console-3.10.md @@ -0,0 +1,11 @@ +--- +layout: post +title: "NUnit Console and Engine 3.10 Released" +date: 2019-03-24 12:00:00 -0000 +categories: news update nunit +--- +This release merges the .NET Standard version of the engine back into the nunit.engine NuGet package and adds a .NET Standard 2.0 version of the engine that re-enables most services and extensions. This deprecates the `nunit.engine.netstandard` NuGet package. Any test runners using the old .NET Standard version of the engine should switch to this release. + +The --params command line option which took multiple test parameters separated by a semi-colon is now deprecated in favor of the new --testparam command line option. One of the most common uses for test parameters was to pass connection strings into tests but this required workarounds to handle the semi-colons. Now you must pass in each test paramater separately using a --testparam or -tp option for each. + +You may download NUnit Console 3.10 from [Github](https://github.com/nunit/nunit-console/releases). See the [release notes](https://github.com/nunit/docs/wiki/Console-Release-Notes) for more information. \ No newline at end of file diff --git a/download.html b/download.html index b207463f..bde456bc 100644 --- a/download.html +++ b/download.html @@ -28,8 +28,8 @@

Download Types

October 6, 2018 - NUnit Console 3.9 - September 5, 2018 + NUnit Console 3.10 + March 24, 2019 NUnit Test Adapter 3.11.2 @@ -188,6 +188,10 @@

NUnit 3 Console + + NUnit Console 3.9 + September 5, 2018 + NUnit Console 3.8 January 27, 2017 From 606d556eae7b82bfcd60ffc344f87e531e4ab0c0 Mon Sep 17 00:00:00 2001 From: Rob Prouse Date: Mon, 25 Mar 2019 20:09:45 -0400 Subject: [PATCH 2/2] Fix based on code review --- _posts/2019-03-24-nunit-console-3.10.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2019-03-24-nunit-console-3.10.md b/_posts/2019-03-24-nunit-console-3.10.md index 676aa1c3..95bc9bbe 100644 --- a/_posts/2019-03-24-nunit-console-3.10.md +++ b/_posts/2019-03-24-nunit-console-3.10.md @@ -6,6 +6,6 @@ categories: news update nunit --- This release merges the .NET Standard version of the engine back into the nunit.engine NuGet package and adds a .NET Standard 2.0 version of the engine that re-enables most services and extensions. This deprecates the `nunit.engine.netstandard` NuGet package. Any test runners using the old .NET Standard version of the engine should switch to this release. -The --params command line option which took multiple test parameters separated by a semi-colon is now deprecated in favor of the new --testparam command line option. One of the most common uses for test parameters was to pass connection strings into tests but this required workarounds to handle the semi-colons. Now you must pass in each test paramater separately using a --testparam or -tp option for each. +The --params command line option which took multiple test parameters separated by a semicolon is now deprecated in favor of the new --testparam command line option. One of the most common uses for test parameters was to pass connection strings into tests but this required workarounds to handle the semicolons. Now you must pass in each test paramater separately using a --testparam or --tp option for each. You may download NUnit Console 3.10 from [Github](https://github.com/nunit/nunit-console/releases). See the [release notes](https://github.com/nunit/docs/wiki/Console-Release-Notes) for more information. \ No newline at end of file