Skip to content

Commit

Permalink
Merge pull request #683 from nunit/prepare316
Browse files Browse the repository at this point in the history
Prepare for V. 3.16
  • Loading branch information
OsirisTerje committed Jan 3, 2020
2 parents 771790f + 363cd50 commit 08f90fb
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2011-2019 Charlie Poole, 2014-2019 Terje Sandstrom
Copyright (c) 2011-2019 Charlie Poole, 2014-2020 Terje Sandstrom

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,5 @@ If you’re in the middle of a debugging session and realize you’d like to be
set breakpoints and watch variables, [follow these steps](https://github.com/nunit/docs/wiki/Adapter-Source-Stepping).

## Announcement
From version 3.9 the NUnit3TestAdapter will stop supporting Visual Studio 2012 RTM (!), note only RTM, the later updates will still be supported fully. If you're using VS 2012 and want to update NUnit3TestAdapter, please update your Visual Studio RTM to any of the subsequent updates (Update 1-5)
* From version 3.9 the NUnit3TestAdapter will stop supporting Visual Studio 2012 RTM (!), note only RTM, the later updates will still be supported fully. If you're using VS 2012 and want to update NUnit3TestAdapter, please update your Visual Studio RTM to any of the subsequent updates (Update 1-5)
* From version 3.16 the NUnit3TestAdapter will stop supporting .net core 1
4 changes: 2 additions & 2 deletions nuget/NUnit3TestAdapter.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@

The package works with Visual Studio 2012 and newer.</description>
<releaseNotes>This release works with NUnit 3.0 and higher only. Also see https://github.com/nunit/docs/wiki/Adapter-Release-Notes </releaseNotes>
<copyright>Copyright (c) 2011-2019 Charlie Poole, 2014-2019 Terje Sandstrom</copyright>
<copyright>Copyright (c) 2011-2020 Charlie Poole, 2014-2020 Terje Sandstrom</copyright>
<language>en-US</language>
<tags>test visualstudio testadapter nunit nunit3</tags>
<tags>test visualstudio testadapter nunit nunit3 dotnet</tags>

<developmentDependency>true</developmentDependency>
<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<ItemGroup>
<PackageReference Include="nunit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4" />
</ItemGroup>

</Project>
Binary file modified src/NUnit3TestAdapterInstall/license.rtf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/NUnit3TestAdapterInstall/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="NUnit.NUnit3TestAdapter" Version="3.15.1.0" Language="en-US" Publisher="Charlie Poole, Terje Sandstrom" />
<Identity Id="NUnit.NUnit3TestAdapter" Version="3.16.0" Language="en-US" Publisher="Charlie Poole, Terje Sandstrom" />
<DisplayName>NUnit 3 Test Adapter</DisplayName>
<Description xml:space="preserve">NUnit 3 adapter for running tests in Visual Studio. Works with NUnit 3.x.
For running NUnit 2 tests, use the NUnit 2 adapter.</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/NUnitTestAdapter/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[assembly: AssemblyDescription("A package containing the NUnit 3 TestAdapter for Visual Studio 2012 onwards. With this package you don't need to install the VSIX adapter package, and you don't need to upload the adapter to your TFS server.\r\n \r\nNote that this package ONLY contains the adapter, not the NUnit framework. You must also get the framework. You only need one such package for a solution. \r\n\r\nThe package works with Visual Studio 2012 and newer.\r\n")]
[assembly: AssemblyCompany("NUnit Project")]
[assembly: AssemblyProduct("NUnit3TestAdapter")]
[assembly: AssemblyCopyright("Copyright © 2011-2019 Charlie Poole, 2014-2019 Terje Sandstrom")]
[assembly: AssemblyCopyright("Copyright © 2011-2020 Charlie Poole, 2014-2020 Terje Sandstrom")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: CLSCompliant(false)]
Expand Down
4 changes: 2 additions & 2 deletions src/NUnitTestAdapterTests/NUnit.TestAdapter.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp'">
<PackageReference Include="Microsoft.TestPlatform.ObjectModel" Version="16.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="Microsoft.TestPlatform.ObjectModel" Version="16.4.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 08f90fb

Please sign in to comment.