|
1 | 1 | <Project ToolsVersion="12.0" DefaultTargets="Build" InitialTargets="VerifyBuildTools" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2 | 2 | <Import Project="dir.props" />
|
3 | 3 |
|
4 |
| - <Target Name="VerifyBuildTools" |
| 4 | + <Target Name="VerifyBuildTools" |
5 | 5 | Inputs="$(BuildToolsTargetInputs)"
|
6 | 6 | Outputs="$(BuildToolsTargetOutputs)"
|
7 | 7 | >
|
8 |
| - <Error Condition="!Exists('$(BuildToolsInstallSemaphore)')" |
| 8 | + <Error Condition="!Exists('$(BuildToolsInstallSemaphore)')" |
9 | 9 | Text="The build tools have not been installed. Please run buildtest.cmd from the root of the repo at least once to get the tools installed." />
|
10 | 10 |
|
11 | 11 | <!-- If we enter this target at all then the inputs are newer then the outputs so give a warning. -->
|
12 |
| - <Warning Text="Looks like there may be an update to the build tools. Please run buildtest.cmd from the root of the repo to refresh the build tools." /> |
| 12 | + <Warning Text="Looks like there may be an update to the build tools. Please run buildtest.cmd from the root of the repo to refresh the build tools." /> |
13 | 13 | </Target>
|
14 | 14 |
|
15 | 15 | <Target Name="ResolveDisabledProjects" BeforeTargets="BuildAllProjects" >
|
16 | 16 | <ItemGroup>
|
17 |
| - <DisabledProjects Include="TestWrappers*\*\*.csproj" /> |
| 17 | + <DisabledProjects Include="TestWrappers*\**\*.csproj" /> |
18 | 18 | <DisabledProjects Include="*\**\cs_template.csproj" />
|
19 | 19 | <DisabledProjects Include="Common\Coreclr.TestWrapper\Coreclr.TestWrapper.csproj" Condition="'$(BuildTestsAgainstPackages)' != 'true'" />
|
20 | 20 | <DisabledProjects Include="Common\Desktop.Coreclr.TestWrapper\Desktop.Coreclr.TestWrapper.csproj" Condition="'$(BuildTestsAgainstPackages)' == 'true'" />
|
|
31 | 31 | <DisabledProjects Include="Loader\classloader\generics\regressions\DD117522\Test.csproj" />
|
32 | 32 | <DisabledProjects Include="Loader\classloader\generics\GenericMethods\VSW491668.csproj" /> <!-- issue 5501 -->
|
33 | 33 | </ItemGroup>
|
34 |
| - |
| 34 | + |
35 | 35 | <ItemGroup>
|
36 | 36 | <Project Include="*\**\*.csproj" Exclude="@(DisabledProjects)">
|
37 | 37 | <AdditionalProperties>OSGroup=$(OSGroup)</AdditionalProperties>
|
|
43 | 43 | </Target>
|
44 | 44 |
|
45 | 45 | <Import Project="..\dir.traversal.targets" />
|
46 |
| - |
| 46 | + |
47 | 47 | <!-- Override clean from dir.traversal.targets and just remove the full BinDir -->
|
48 | 48 | <Target Name="Clean">
|
49 | 49 | <RemoveDir Directories="$(BinDir)" />
|
|
0 commit comments