diff --git a/build.cake b/build.cake index 730b566..0ef5736 100644 --- a/build.cake +++ b/build.cake @@ -224,7 +224,7 @@ Task("PackageNuGet") .IsDependentOn("CreateWorkingImage") .Does(() => { - System.Console.WriteLine("Packaging the nuget"); + Information("Creating the NuGet package"); NuGetPack("nuget/NUnitVisualStudioTestAdapter.nuspec", new NuGetPackSettings() { Version = packageVersion, @@ -238,7 +238,7 @@ Task("PackageVsix") .IsDependentOn("CreatePackageDir") .Does(() => { - System.Console.WriteLine("Packaging the vsix"); + Information("Creating the vsix package"); CopyFile( VSIXDIR + "NUnitTestAdapter.vsix", PACKAGE_DIR + packageName + ".vsix"); diff --git a/nuget/NUnitTestAdapter.props b/nuget/NUnitTestAdapter.props index 0b61473..358a19e 100644 --- a/nuget/NUnitTestAdapter.props +++ b/nuget/NUnitTestAdapter.props @@ -41,7 +41,6 @@ PreserveNewest False - - + diff --git a/readme.md b/readme.md index dd80875..fbb8896 100644 --- a/readme.md +++ b/readme.md @@ -2,7 +2,7 @@ The NUnit Test Adapter only runs NUnit 2.X tests in Visual Studio 2012 and newer. -Note that it does not run NUnit 3.X tests, for that you need the [NUnit3TestAdapter](https://github.com/nunit/nunit3-vs-adapter) +Note that it does not run NUnit 3.X tests. For that, you need the [NUnit3TestAdapter](https://github.com/nunit/nunit3-vs-adapter) Please consider moving your code to use NUnit3. This adapter is only maintained to support newer versions of Visual Studio, and is very rarely updated. We might fix an occasional bug if it is critical. @@ -14,7 +14,7 @@ Please consider moving your code to use NUnit3. This adapter is only maintained Ask support questions [![Chat](https://img.shields.io/gitter/room/nunit/nunit.svg?style=flat)](https://gitter.im/nunit/nunit) or raise an issue [![](https://img.shields.io/github/issues/nunit/NUnit-vs-Adapter.svg?style=flat)](https://github.com/nunit/nunit-vs-adapter/issues) -## License ## +## License The NUnit 3 Test Adapter is Open Source software released under the [![](https://img.shields.io/github/license/nunit/nunit3-vs-adapter.svg?style=flat)](https://nunit.org/nuget/nunit3-license.txt).