Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NUnit Console and Engine 3.10 release #64

Merged
merged 2 commits into from
Mar 26, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions _posts/2019-03-24-nunit-console-3.10.md
Original file line number Diff line number Diff line change
@@ -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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rprouse The alias is --tp, not -tp, since the standard it's following would say that -tp would have to mean the same thing as -t -p.

I also haven't seen 'semicolon' abbreviated before, but it's not a problem.


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.
8 changes: 6 additions & 2 deletions download.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ <h3>Download Types</h3>
<td class="text-right">October 6, 2018</td>
</tr>
<tr>
<td><a href="https://github.com/nunit/nunit-console/releases/latest">NUnit Console 3.9</a></td>
<td class="text-right">September 5, 2018</td>
<td><a href="https://github.com/nunit/nunit-console/releases/latest">NUnit Console 3.10</a></td>
<td class="text-right">March 24, 2019</td>
</tr>
<tr>
<td><a href="https://github.com/nunit/nunit3-vs-adapter/releases/latest">NUnit Test Adapter 3.11.2</a></td>
Expand Down Expand Up @@ -188,6 +188,10 @@ <h2><a role="button" data-toggle="collapse" data-target="#olderReleases" href="#
<tr>
<th colspan="2">NUnit 3 Console</th>
</tr>
<tr>
<td><a href="https://github.com/nunit/nunit-console/releases/tag/v3.9">NUnit Console 3.9</a></td>
<td class="text-right">September 5, 2018</td>
</tr>
<tr>
<td><a href="https://github.com/nunit/nunit-console/releases/tag/3.8">NUnit Console 3.8</a></td>
<td class="text-right">January 27, 2017</td>
Expand Down