diff options
Diffstat (limited to '')
-rw-r--r-- | src/tools/tools_t.proj | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/tools/tools_t.proj b/src/tools/tools_t.proj new file mode 100644 index 00000000..60685ef1 --- /dev/null +++ b/src/tools/tools_t.proj | |||
@@ -0,0 +1,28 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
3 | |||
4 | <Project Sdk="Microsoft.Build.Traversal"> | ||
5 | <ItemGroup> | ||
6 | <ProjectReference Include="publish_t.proj" BuildInParallel="false" /> | ||
7 | |||
8 | <ProjectReference Include="thmviewer\thmviewer.vcxproj" /> | ||
9 | <ProjectReference Include="WixToolset.Templates\WixToolset.Templates.csproj" /> | ||
10 | <ProjectReference Include="WixToolset.Heat\WixToolset.Heat.csproj" /> | ||
11 | |||
12 | <!-- <ProjectReference Include="heat\heat.csproj" /> | ||
13 | <ProjectReference Include="WixToolset.HeatTasks\WixToolset.HeatTasks.csproj" /> --> | ||
14 | |||
15 | <ProjectReference Include="test\WixToolsetTest.HeatTasks\WixToolsetTest.HeatTasks.csproj" /> | ||
16 | <ProjectReference Include="test\WixToolsetTest.Heat\WixToolsetTest.Heat.csproj" /> | ||
17 | |||
18 | <ProjectReference Include="WixToolset.Heat\WixToolset.Heat.csproj" Targets="Pack" /> | ||
19 | </ItemGroup> | ||
20 | |||
21 | <Target Name="WixClean" BeforeTargets="Restore" Condition="'$(SuppressWixClean)' != 'true'"> | ||
22 | <RemoveDir Directories="$(RootBuildFolder)tools" /> | ||
23 | <RemoveDir Directories="$(USERPROFILE)\.nuget\packages\wixtoolset.heat" Condition="'$(NUGET_PACKAGES)' == ''" /> | ||
24 | <RemoveDir Directories="$(NUGET_PACKAGES)\wixtoolset.heat" Condition="'$(NUGET_PACKAGES)' != ''" /> | ||
25 | |||
26 | <Delete Files="$(ArtifactsFolder)WixToolset.Heat.*.nupkg" /> | ||
27 | </Target> | ||
28 | </Project> | ||