Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Don't UpdateRuntimeJson on Build.
  • Loading branch information
tmds committed Sep 26, 2022
commit 4155c27b1adb25fb04d02fe2c368e8efe5022c17
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

<UsingTask TaskName="GenerateRuntimeGraph" AssemblyFile="$(_generateRuntimeGraphTask)"/>

<Target Name="GenerateRuntimeJson" BeforeTargets="UpdateRuntimeJson">
<Target Name="GenerateRuntimeJson" BeforeTargets="Build">
<MakeDir Directories="$(IntermediateOutputPath)" />
<GenerateRuntimeGraph Condition="'$(AdditionalRuntimeIdentifiers)' != ''"
RuntimeGroups="@(RuntimeGroupWithQualifiers)"
Expand All @@ -69,7 +69,7 @@
DestinationFiles="$(GeneratedRuntimeIdentifierGraphFile)" />
</Target>

<Target Name="UpdateRuntimeJson" BeforeTargets="Build">
<Target Name="UpdateRuntimeJson">
<!-- Generates a Runtime graph using RuntimeGroups and diffs it with the graph described by runtime.json and runtime.compatibility.json
Specifying UpdateRuntimeFiles=true skips the diff and updates those files.
The graph can be visualized using the generated dmgl -->
Expand Down