зеркало из
1
0
Форкнуть 0

Initisal preparation for the 3.5 release

This commit is contained in:
Rob Prouse 2016-10-02 22:04:09 -04:00
Родитель e6f38592b0
Коммит 6c97700643
3 изменённых файлов: 48 добавлений и 3 удалений

Просмотреть файл

@ -1,4 +1,46 @@
NUnit 3.4.1 - June 30, 2016
NUnit 3.5.0 - October 2, 2015
This is the first version of NUnit where the framework will be released separately from the
console runner, engine and other extensions. From this point forward, the NUnit Framework will be
released on its own schedule that is not bound to that of any other NUnit project and version numbers
may diverge over time.
This is also the first release where the NUnit Framework will not be included in the installer. Only
the console runner, engine and extensions will be available as an MSI installer. We recommend that you
use the NUnit NuGet packages for the framework, but a ZIP file with the binaries will also be available.
Issues Resolved
* 144 Pass a Func<string> to lazily evaluate an exception message
* 995 Enable Warning as Error
* 1106 Move various Assembly Info files under Properties for CF
* 1334 Add Assert.Zero and Assert.NotZero
* 1479 Don't enforce [Timeout] when debugger is attached
* 1540 Remove old .NET Core Projects
* 1553 Allow ordering tests to be done in multiple properties
* 1575 Escaping control chars in custom message
* 1596 Eliminate code sharing across projects to be split
* 1598 Split framework and console/engine into separate projects
* 1610 Refactor dependencies in build.cake
* 1615 Appveyor error in TestCF
* 1621 Remove console and command-line option files from common
* 1640 When submitting only part of optional parameters, all are overriden by defaults
* 1641 Create OSX CI Build on Travis
* 1663 Find way to hide NUnit.Compatability.Path from intellisense
* 1681 NUnitLite under .net core doesn't support TeamCity output
* 1683 Existence of SerializableAttribute in .NET Core
* 1693 2 unit tests fail due to localization
* 1716 Move installer to new repository
* 1717 Change suffix for master builds
* 1723 Remove Cake target TestAll
* 1739 Create separate copies of MockAssembly for framework, engine and extensions
* 1751 Serializable attribute exists in both System.Runtime.Serialization.Formatters and nunit.framework
* 1775 Support NUnit assertions in partial trust code.
* 1800 Remove Console/Engine projects from nunit.linux.sln
* 1805 Error message "arguments provided for method not taking any" seems incomplete / doesn't make much sense
* 1815 Prevent NullReferenceException in SubPathConstraint
NUnit 3.4.1 - June 30, 2016
Console Runner

Просмотреть файл

@ -9,7 +9,10 @@
<ToolsOptions>
<ToolsOptionsCategory name="TextEditor">
<ToolsOptionsSubCategory name="CSharp-Specific">
<PropertyValue name="AddImport_SuggestForTypesInNuGetPackages">0</PropertyValue>
<PropertyValue name="AddImport_SuggestForTypesInReferenceAssemblies">0</PropertyValue>
<PropertyValue name="AutoComment">1</PropertyValue>
<PropertyValue name="AutoInsertAsteriskForNewLinesOfBlockComments">1</PropertyValue>
<PropertyValue name="BringUpOnIdentifier">1</PropertyValue>
<PropertyValue name="CSharpClosedFileDiagnostics">-1</PropertyValue>
<PropertyValue name="ClosedFileDiagnostics">-1</PropertyValue>
@ -81,7 +84,7 @@
<PropertyValue name="Style_PreferIntrinsicPredefinedTypeKeywordInMemberAccess">1</PropertyValue>
<PropertyValue name="Style_QualifyMemberAccessWithThisOrMe">0</PropertyValue>
<PropertyValue name="Style_UseVarWhenDeclaringLocals">1</PropertyValue>
<PropertyValue name="WarnOnBuildErrors">1</PropertyValue>
<PropertyValue name="WarnOnBuildErrors">0</PropertyValue>
<PropertyValue name="WarnWhenMembersCauseCompilerGeneratedReferences">1</PropertyValue>
<PropertyValue name="Wrapping_IgnoreSpacesAroundBinaryOperators">0</PropertyValue>
<PropertyValue name="Wrapping_IgnoreSpacesAroundVariableDeclaration">0</PropertyValue>

Просмотреть файл

@ -27,7 +27,7 @@ using System.Reflection;
// Common Information for the NUnit assemblies
//
[assembly: AssemblyCompany("NUnit Software")]
[assembly: AssemblyProduct("NUnit 3.0")]
[assembly: AssemblyProduct("NUnit 3")]
[assembly: AssemblyCopyright("Copyright (C) 2016 Charlie Poole")]
[assembly: AssemblyTrademark("NUnit is a trademark of NUnit Software")]