Skip to content

Commit

Permalink
Correctly order the VS and Util extension traversal projects
Browse files Browse the repository at this point in the history
  • Loading branch information
robmen committed May 3, 2018
1 parent fc1f4b9 commit f3daa1b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ext/UtilExtension/util.proj
Expand Up @@ -4,8 +4,8 @@

<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<ItemGroup>
<ProjectReference Include="wixext\WixUtilExtension.csproj" />
<ProjectReference Include="wixlib\UtilExtension.wixproj" />
<ProjectReference Include="wixext\WixUtilExtension.csproj" />
</ItemGroup>

<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\Traversal.targets" />
Expand Down
2 changes: 1 addition & 1 deletion src/ext/VSExtension/vs.proj
Expand Up @@ -5,8 +5,8 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<ItemGroup>
<ProjectReference Include="ca\vsca.vcxproj" />
<ProjectReference Include="wixext\WixVSExtension.csproj" />
<ProjectReference Include="wixlib\VSExtension.wixproj" />
<ProjectReference Include="wixext\WixVSExtension.csproj" />

<ProjectReference Include="wixext\WixVSExtension.MSBuild12\WixVSExtension.MSBuild12.csproj" Condition=" '$(VS2013Available)'=='true' " />
<ProjectReference Include="wixext\WixVSExtension.MSBuild14\WixVSExtension.MSBuild14.csproj" Condition=" '$(VS2015Available)'=='true' " />
Expand Down
3 changes: 2 additions & 1 deletion src/ext/ext.proj
Expand Up @@ -11,6 +11,8 @@
<BuildInParallel>false</BuildInParallel>
</ProjectReference>

<ProjectReference Include="UtilExtension\util.proj" />

<ProjectReference Include="BalExtension\bal.proj" />
<ProjectReference Include="ComPlusExtension\complus.proj" />
<ProjectReference Include="DependencyExtension\dependency.proj" />
Expand All @@ -27,7 +29,6 @@
<ProjectReference Include="SqlExtension\sql.proj" />
<ProjectReference Include="TagExtension\tag.proj" />
<ProjectReference Include="UIExtension\ui.proj" />
<ProjectReference Include="UtilExtension\util.proj" />
<ProjectReference Include="VSExtension\vs.proj" />
</ItemGroup>

Expand Down

0 comments on commit f3daa1b

Please sign in to comment.