Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dotnet/msbuild
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a1d9d69
Choose a base ref
...
head repository: dotnet/msbuild
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c849248
Choose a head ref
  • 1 commit
  • 7 files changed
  • 1 contributor

Commits on Jul 18, 2022

  1. [Opt-in] Parallelize Targets when building a solution (#7512)

    Fixes
    #5072 (comment)
    
    Context
    When building a SLN, a metaproj is used to represent the build behavior. When there are multiple targets (ex clean;build), the current behavior is to run all of first Target in the projects, then run second Target. To improve the parallelism, the solution can pass both target to the project. Each project can start the second target without waiting for all of the first Target to finish.
    When the feature is enabled via environment variable, MSBuildSolutionBatchTargets, Solution Generator will create a "SlnProjectResolveProjectReference" target to build all the project/targets. All targets will depend on this new target.
    
    Add support for "SkipNonexistentProjects" as a metadata in MSBuild task. This allow the removal of it as a parameter during solution generation.
    
    Testing
    Added unit tests.
    yuehuang010 authored Jul 18, 2022
    Configuration menu
    Copy the full SHA
    c849248 View commit details
    Browse the repository at this point in the history
Loading