Skip to content
This repository was archived by the owner on Feb 14, 2025. It is now read-only.

Commit f3daa1b

Browse files
committed
Correctly order the VS and Util extension traversal projects
1 parent fc1f4b9 commit f3daa1b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/ext/UtilExtension/util.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
66
<ItemGroup>
7-
<ProjectReference Include="wixext\WixUtilExtension.csproj" />
87
<ProjectReference Include="wixlib\UtilExtension.wixproj" />
8+
<ProjectReference Include="wixext\WixUtilExtension.csproj" />
99
</ItemGroup>
1010

1111
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\Traversal.targets" />

src/ext/VSExtension/vs.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
66
<ItemGroup>
77
<ProjectReference Include="ca\vsca.vcxproj" />
8-
<ProjectReference Include="wixext\WixVSExtension.csproj" />
98
<ProjectReference Include="wixlib\VSExtension.wixproj" />
9+
<ProjectReference Include="wixext\WixVSExtension.csproj" />
1010

1111
<ProjectReference Include="wixext\WixVSExtension.MSBuild12\WixVSExtension.MSBuild12.csproj" Condition=" '$(VS2013Available)'=='true' " />
1212
<ProjectReference Include="wixext\WixVSExtension.MSBuild14\WixVSExtension.MSBuild14.csproj" Condition=" '$(VS2015Available)'=='true' " />

src/ext/ext.proj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
<BuildInParallel>false</BuildInParallel>
1212
</ProjectReference>
1313

14+
<ProjectReference Include="UtilExtension\util.proj" />
15+
1416
<ProjectReference Include="BalExtension\bal.proj" />
1517
<ProjectReference Include="ComPlusExtension\complus.proj" />
1618
<ProjectReference Include="DependencyExtension\dependency.proj" />
@@ -27,7 +29,6 @@
2729
<ProjectReference Include="SqlExtension\sql.proj" />
2830
<ProjectReference Include="TagExtension\tag.proj" />
2931
<ProjectReference Include="UIExtension\ui.proj" />
30-
<ProjectReference Include="UtilExtension\util.proj" />
3132
<ProjectReference Include="VSExtension\vs.proj" />
3233
</ItemGroup>
3334

0 commit comments

Comments
 (0)