Skip to content

Commit

Permalink
Fix for Build Issue #785302:
Browse files Browse the repository at this point in the history
tools were still not getting built for projectK build....fixed that. Verified on local machine using below command
msbuild /t:rebuild /p:ProductGroupsToBuild=PK dirs.proj

[tfs-changeset: 1565223]
  • Loading branch information
Rahul Kumar committed Jan 15, 2016
1 parent a80c07a commit 17386c9
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
6 changes: 6 additions & 0 deletions src/ToolBox/SOS/dirs.proj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
<BuildSysBinaries>true</BuildSysBinaries>
</PropertyGroup>

<ItemDefinitionGroup>
<ProjectFile>
<ProductGroups>FX</ProductGroups>
</ProjectFile>
</ItemDefinitionGroup>

<ItemGroup Condition="'$(BuildExePhase)' == '1'">
<ProjectFile Include="strike\dirs.proj" />
</ItemGroup>
Expand Down
4 changes: 3 additions & 1 deletion src/ToolBox/dirs.proj
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@
<ProjectFile Include="resview\resview.csproj" />
<ProjectFile Include="runsxs\runsxs.nativeproj" />
<ProjectFile Include="soapsuds\dirs.proj" />
<ProjectFile Include="sos\dirs.proj" />
<ProjectFile Include="sos\dirs.proj" >
<ProductGroups>FX;PK</ProductGroups>
</ProjectFile>
<ProjectFile Include="storeadm\storeadm.csproj" />
<ProjectFile Include="tlbexp\tlbexp_msbuild.csproj" />
<ProjectFile Include="tlbguid\tlbguid.csproj" />
Expand Down
4 changes: 3 additions & 1 deletion src/dirs.proj
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@
<ProjectFile Include="jit32\dirs.proj" Condition="'$(BuildArchitecture)' != 'amd64' and '$(BuildArchitecture)' != 'arm64'" />
<ProjectFile Include="jit64\dirs.proj" Condition="'$(BuildProjectName)' != 'CoreSys'" />

<ProjectFile Include="tools\dirs.proj" />
<ProjectFile Include="tools\dirs.proj" >
<ProductGroups>FX;PK</ProductGroups>
</ProjectFile>
<ProjectFile Include="toolbox\dirs.proj" >
<ProductGroups>FX;PK</ProductGroups>
</ProjectFile>
Expand Down
6 changes: 6 additions & 0 deletions src/tools/dirs.proj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
<BuildSysBinaries>true</BuildSysBinaries>
</PropertyGroup>

<ItemDefinitionGroup>
<ProjectFile>
<ProductGroups>FX</ProductGroups>
</ProjectFile>
</ItemDefinitionGroup>

<!--The following projects will build during PHASE 1-->
<ItemGroup Condition="'$(BuildExePhase)' == '1' and '$(FeatureCoreClr)' != 'true'">
<ProjectFile Include="allocationsprofiler\allocationsprofiler.nativeproj" />
Expand Down

0 comments on commit 17386c9

Please sign in to comment.