-
Notifications
You must be signed in to change notification settings - Fork 697
/
CleanupMSBuildProcesses.csproj
82 lines (82 loc) · 4.11 KB
/
CleanupMSBuildProcesses.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See LICENSE in the project root for license information. -->
<Project DefaultTargets="KillLeftOverMSBuildProcesses" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|ARM64">
<Configuration>Debug</Configuration>
<Platform>ARM64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|ARM64">
<Configuration>Release</Configuration>
<Platform>ARM64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<Import Project="$([MSBuild]::GetPathOfFileAbove(environment.props))" />
<Import Project="..\eng\versions.props" />
<Import Project="$(NuGetPackageRoot)\MUXCustomBuildTasks.$(MuxCustomBuildTasksPackageVersion)\build\MUXCustomBuildTasks.targets" Condition="Exists('$(NuGetPackageRoot)\MUXCustomBuildTasks.$(MuxCustomBuildTasksPackageVersion)\build\MUXCustomBuildTasks.targets')" />
<Target Name="KillLeftOverMSBuildProcesses">
<ItemGroup>
<LeftOverMSBuildProcesses Include="$(TEMP)\*.msbproc" />
</ItemGroup>
<KillMSBuild MSBuildProcessIds="@(LeftOverMSBuildProcesses->'%(Filename)')" Condition="'@(LeftOverMSBuildProcesses)' != ''" />
</Target>
<Target Name="Build">
<CallTarget Targets="KillLeftOverMSBuildProcesses" />
</Target>
<Target Name="Rebuild">
<CallTarget Targets="KillLeftOverMSBuildProcesses" />
</Target>
<!-- These are dummy targets that do nothing, but are required to interface with the rest of the solution. -->
<Target Name="BuildGenerateSources" />
<Target Name="BuildCompile" />
<Target Name="BuildLink" />
<Target Name="BuiltProjectOutputGroup" />
<Target Name="Clean" />
<Target Name="ContentFilesProjectOutputGroup" />
<Target Name="DebugSymbolsProjectOutputGroup" />
<Target Name="DebugSymbolsProjectOutputGroupDependencies" />
<Target Name="DesktopBridgeComFilesOutputGroup" />
<Target Name="DesktopBridgeCopyLocalOutputGroup" />
<Target Name="DesktopBridgePublishItemsOutputGroup" />
<Target Name="GetCopyToOutputDirectoryItems" />
<Target Name="GetCopyToPublishDirectoryItems" />
<Target Name="GetDeployableContentReferenceOutputs" />
<Target Name="GetTargetPath" />
<Target Name="GetTargetPathWithTargetPlatformMoniker" />
<Target Name="SatelliteDllsProjectOutputGroup" />
<Target Name="SatelliteDllsProjectOutputGroupDependencies" />
<Target Name="SGenFilesOutputGroup" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM64'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM64'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_test|ARM64'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_test|x64'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_test|Win32'" />
<PropertyGroup>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<TargetFrameworkProfile />
<ProjectGuid>{D3CC3748-57C0-4AD5-AAF6-24377328DAE7}</ProjectGuid>
</PropertyGroup>
</Project>