Skip to content

Commit

Permalink
Refine build order in light of MSBuild ProjectReference protocol changes
Browse files Browse the repository at this point in the history
  • Loading branch information
robmen committed Sep 17, 2019
1 parent 14fa226 commit 2c19a69
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions src/ext/DifxAppExtension/difxapp.proj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<ItemGroup>
<ProjectReference Include="wixlib\DIFxAppExtension.wixproj">
<Properties>Platform=x86</Properties>
</ProjectReference>
<ProjectReference Include="wixlib\DIFxAppExtension.wixproj">
<Properties>Platform=x64</Properties>
</ProjectReference>
<ProjectReference Include="wixext\WixDifxAppExtension.csproj" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/ext/UtilExtension/util.proj
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 2c19a69

Please sign in to comment.