Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project>
<PropertyGroup>
<!-- This is the knob to disable completely for this project the machinery -->
<IsTestingPlatformApplication Condition=" '$(IsTestingPlatformApplication)' == '' ">true</IsTestingPlatformApplication>
</PropertyGroup>

<!-- Declare our capability to Visual Studio/Visual Studio Code -->
<!-- Note: DisableTestingPlatformServerCapability or IsTestingPlatformApplication may be set by TestAdapter targets -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
<!-- This will exclude compile and runtime assets from NuGet so that they flow via ProjectReference -->
<UseMSTestFromSource>true</UseMSTestFromSource>
<EnableMSTestRunner>true</EnableMSTestRunner>

<!-- In real-world projects, this is not needed. -->
<!-- It's only needed here because we are using MSTest from source via ProjectReference, and so package props/targets are not imported. -->
<IsTestingPlatformApplication>true</IsTestingPlatformApplication>

<OutputType>Exe</OutputType>
</PropertyGroup>

Expand Down
Loading