From 1197adccfd79de98bf133603a893503b6cc1c958 Mon Sep 17 00:00:00 2001 From: Rob Prouse Date: Sun, 8 Nov 2015 11:05:42 -0500 Subject: [PATCH] Fixes #1008 NUnitLite namespace not updated in the NuGet Packages --- CHANGES.txt | 19 ++++++++++--------- nuget/Program.cs | 2 +- nuget/Program.vb | 2 +- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 9f3ca7f248..d04bf1c7ab 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,15 +6,16 @@ Engine Issues Resolved - * 970 Define PARALLEL in CF build of nunitlite - * 978 It should be possible to determine version of NUnit using nunit console tool - * 983 Inconsistent return codes depending on ProcessModel - * 986 Update docs for parallel execution - * 988 Don't run portable tests from NUnit Console - * 990 V2 driver is passing invalid filter elements to NUnit - * 991 Mono.Options should not be exposed to public directly - * 993 Give error message when a regex filter is used with NUnit V2 - * 997 Add missing XML Documentation + * 970 Define PARALLEL in CF build of nunitlite + * 978 It should be possible to determine version of NUnit using nunit console tool + * 983 Inconsistent return codes depending on ProcessModel + * 986 Update docs for parallel execution + * 988 Don't run portable tests from NUnit Console + * 990 V2 driver is passing invalid filter elements to NUnit + * 991 Mono.Options should not be exposed to public directly + * 993 Give error message when a regex filter is used with NUnit V2 + * 997 Add missing XML Documentation + * 1008 NUnitLite namespace not updated in the NuGet Packages NUnit 3.0.0 Release Candidate - November 1, 2015 diff --git a/nuget/Program.cs b/nuget/Program.cs index bdd29ea040..daf408e794 100644 --- a/nuget/Program.cs +++ b/nuget/Program.cs @@ -21,7 +21,7 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // *********************************************************************** -using NUnitLite.Runner; +using NUnitLite; namespace NUnitLite.Tests { diff --git a/nuget/Program.vb b/nuget/Program.vb index d05ee46739..f105be3ad0 100644 --- a/nuget/Program.vb +++ b/nuget/Program.vb @@ -21,7 +21,7 @@ ' WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ' *********************************************************************** -Imports NUnitLite.Runner +Imports NUnitLite Public Class Program