Skip to content

Commit

Permalink
regenerate solutions as part of building the managed tracer (#6608)
Browse files Browse the repository at this point in the history
## Summary of changes

the target `RegenerateSolutions` was not called by anything else. Added
it to `BuildManagedTracerHome` so that it'd run on `BuildTracerHome`,
which I assume(d) would regenerate everything that needs to
  • Loading branch information
vandonr authored Jan 30, 2025
1 parent fd3dc65 commit 5bfb641
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tracer/build/_build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ void DeleteReparsePoints(string path)
.DependsOn(DownloadLibDdwaf)
.DependsOn(CopyLibDdwaf)
.DependsOn(CreateMissingNullabilityFile)
.DependsOn(CreateTrimmingFile);
.DependsOn(CreateTrimmingFile)
.DependsOn(RegenerateSolutions);

Target BuildManagedTracerHomeR2R => _ => _
.Unlisted()
Expand Down

0 comments on commit 5bfb641

Please sign in to comment.