From 64cb2632dd4e9813ae2dc2c0c6ab0aa7302bd70c Mon Sep 17 00:00:00 2001 From: Craig Norton Date: Wed, 22 Nov 2017 09:46:10 +0000 Subject: [PATCH] Update test project to enable Live Unit Testing in VS 2017 The Live Unit Testing (LUT) feature was introduced in Visual Studio 2017 Enterprise Edition version 15.3. NuGet packages added to the test project: - NUnit3TestAdapter: Visual Studio needs it for LUT to find the tests - Microsoft.NET.Test.Sdk: LUT asked if it was installed thus assuming it is required It was also necessary to explicitly set the startup object of the test project to MoreLinq.Test.Program because of additional possible start points created by one or other of the NuGet packages above. --- MoreLinq.Test/MoreLinq.Test.csproj | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MoreLinq.Test/MoreLinq.Test.csproj b/MoreLinq.Test/MoreLinq.Test.csproj index 30c94e87a..fcd2fb478 100644 --- a/MoreLinq.Test/MoreLinq.Test.csproj +++ b/MoreLinq.Test/MoreLinq.Test.csproj @@ -22,7 +22,7 @@ false library - + MoreLinq.Test.Program 7 618 @@ -35,6 +35,8 @@ + +