diff options
author | Bob Arnson <bob@firegiant.com> | 2025-02-14 23:49:12 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2025-03-03 14:25:07 -0500 |
commit | ae96ff06cadd0141f48d88a7e9983ca81dace613 (patch) | |
tree | 692c21c53be97e30e60a515b215342b27a7087d0 /src/tools/tools_t.proj | |
parent | ca6e44d496b0c589fdaabad69a00643f539c47cd (diff) | |
download | wix-ae96ff06cadd0141f48d88a7e9983ca81dace613.tar.gz wix-ae96ff06cadd0141f48d88a7e9983ca81dace613.tar.bz2 wix-ae96ff06cadd0141f48d88a7e9983ca81dace613.zip |
Convert tools\ to MSTest and traversal projects.
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> | ||