Skip to content

Commit

Permalink
Fixed review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Terje Sandstrom committed Jun 4, 2019
1 parent cd8c65b commit 4bf7dca
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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");
Expand Down
3 changes: 1 addition & 2 deletions nuget/NUnitTestAdapter.props
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>False</Visible>
</Content>

</ItemGroup>
</ItemGroup>
</Project>

4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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).

0 comments on commit 4bf7dca

Please sign in to comment.