Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ward <matt.ward@microsoft.com>2018-07-11 12:29:17 +0300
committerMatt Ward <ward.matt@gmail.com>2018-07-11 15:50:48 +0300
commita7792f252f8a60581a8cc264c2d9919a6e6ac1bb (patch)
treef5e4c7626a4f8521babbeab03264ad1f80b9ccd3 /main/src/addins/MonoDevelop.UnitTesting.NUnit
parent02783b50c94be4aa5d8b406b2ea5d7e510d0be65 (diff)
[NUnit] Fix NUnit3 test runner name
The NUnit3 test runner was being created with the filename: NUnit3Runner.exe instead of NUnitRunner.exe so the IDE test runner would fail to start this process. Changed the assembly name to NUnitRunner. Fixes VSTS #645844 - NUnit 3 integration broken because of misnamed runner
Diffstat (limited to 'main/src/addins/MonoDevelop.UnitTesting.NUnit')
-rw-r--r--main/src/addins/MonoDevelop.UnitTesting.NUnit/NUnit3Runner/NUnit3Runner.csproj1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/src/addins/MonoDevelop.UnitTesting.NUnit/NUnit3Runner/NUnit3Runner.csproj b/main/src/addins/MonoDevelop.UnitTesting.NUnit/NUnit3Runner/NUnit3Runner.csproj
index 0dd6a94bb2..a5bc38cb7c 100644
--- a/main/src/addins/MonoDevelop.UnitTesting.NUnit/NUnit3Runner/NUnit3Runner.csproj
+++ b/main/src/addins/MonoDevelop.UnitTesting.NUnit/NUnit3Runner/NUnit3Runner.csproj
@@ -5,6 +5,7 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{D2A4E99E-FC2D-45A9-8BE7-1AB7DF95BA2A}</ProjectGuid>
<OutputType>Exe</OutputType>
+ <AssemblyName>NUnitRunner</AssemblyName>
<TargetFrameworkVersion>$(MDFrameworkVersion)</TargetFrameworkVersion>
<OutputPath>..\..\..\..\build\AddIns\MonoDevelop.UnitTesting\NUnit3</OutputPath>
</PropertyGroup>