Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
5 changes: 3 additions & 2 deletions src/Tasks/Microsoft.Common.CurrentVersion.targets
Original file line number Diff line number Diff line change
Expand Up @@ -6707,7 +6707,8 @@ Copyright (C) Microsoft Corporation. All rights reserved.
</PropertyGroup>

<Import Project="$(MsTestToolsTargets)" Condition="Exists('$(MsTestToolsTargets)')" />


<Import Project="$(MSBuildToolsPath)\Microsoft.Common.Test.targets" />
<!-- App packaging support -->

<!--
Expand Down Expand Up @@ -6740,5 +6741,5 @@ Copyright (C) Microsoft Corporation. All rights reserved.

<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.targets\ImportAfter\*" Condition="'$(ImportByWildcardAfterMicrosoftCommonTargets)' == 'true' and exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.targets\ImportAfter')"/>
<Import Project="$(MSBuildUserExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.targets\ImportAfter\*" Condition="'$(ImportUserLocationsByWildcardAfterMicrosoftCommonTargets)' == 'true' and exists('$(MSBuildUserExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.targets\ImportAfter')"/>

</Project>
28 changes: 28 additions & 0 deletions src/Tasks/Microsoft.Common.Test.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!--
***********************************************************************************************
Microsoft.Common.Test.targets
WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
created a backup copy. Incorrect changes to this file will make it
impossible to load or build your projects from the command-line or the IDE.
Copyright (C) Microsoft Corporation. All rights reserved.
***********************************************************************************************
-->
<!--
============================================================
This stub `Test` target allows for targets implementing Test execution functionality
to run after it.
For example:
<Target Name="RunVSTest" AfterTargets="Test">
(implementation)
</Target>
============================================================
-->
<Project>
<PropertyGroup>
<UseMSBuildTestInfrastructure>false</UseMSBuildTestInfrastructure>
</PropertyGroup>
<Target Name="Test" Condition="$(UseMSBuildTestInfrastructure) == 'true'"></Target>
</Project>