-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Add skill for incremental building #53479
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
jjonescz
merged 2 commits into
dotnet:release/10.0.3xx
from
jjonescz:incremental-build-skill
Mar 27, 2026
+105
−0
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,104 @@ | ||
| # Incremental Test Runner for dotnet.Tests | ||
|
|
||
| This skill enables fast incremental test runs of `dotnet.Tests` without a full `build.cmd` rebuild. | ||
| Use it after making source code changes to quickly build only the modified projects and deploy their outputs into the redist SDK layout so tests can run against them. | ||
|
|
||
| ## Prerequisites | ||
|
|
||
| - A full build must have been completed at least once (via `build.cmd` or `build.sh`) so that the redist SDK layout exists at `artifacts\bin\redist\Debug\dotnet\sdk\<version>\`. | ||
| - This workflow uses Windows/PowerShell commands and paths. On macOS/Linux, substitute forward slashes and use `cp` instead of `Copy-Item`. | ||
|
|
||
| ## When to use | ||
|
|
||
| Use this skill when you need to run `dotnet.Tests` after modifying source code in one or more SDK projects. It avoids the slow full `build.cmd` by only rebuilding the changed projects and copying their output DLLs into the redist layout. | ||
|
|
||
| ## Workflow | ||
|
|
||
| ### Step 1: Identify modified projects | ||
|
|
||
| Determine which projects have been modified. Use context from: | ||
| - The files you just edited in this session. | ||
| - Or `git status`/`git diff` to find changed `.cs` files and map them to their `.csproj` projects. | ||
|
|
||
| ### Step 2: Build modified projects | ||
|
|
||
| Build each modified project individually using the repo-local dotnet: | ||
|
|
||
| ``` | ||
| .\.dotnet\dotnet build <path-to-project.csproj> -c Debug | ||
| ``` | ||
|
|
||
| For example: | ||
| ``` | ||
| .\.dotnet\dotnet build src\Cli\Microsoft.DotNet.Cli.Utils\Microsoft.DotNet.Cli.Utils.csproj -c Debug | ||
| ``` | ||
|
|
||
| If the `dotnet` CLI project itself was modified, build it: | ||
| ``` | ||
| .\.dotnet\dotnet build src\Cli\dotnet\dotnet.csproj -c Debug | ||
| ``` | ||
|
|
||
| ### Step 3: Copy output DLLs to the redist SDK layout | ||
|
|
||
| Discover the SDK version directory name: | ||
| ```powershell | ||
| $sdkVersion = (Get-ChildItem artifacts\bin\redist\Debug\dotnet\sdk -Directory | Sort-Object LastWriteTime -Descending | Select-Object -First 1).Name | ||
| ``` | ||
|
|
||
| For each modified project, copy its output DLL (and any satellite assemblies) from the project's build output to the redist SDK directory: | ||
|
|
||
| ``` | ||
| Source: artifacts\bin\<ProjectName>\Debug\net10.0\<AssemblyName>.dll | ||
| Target: artifacts\bin\redist\Debug\dotnet\sdk\<version>\ | ||
| ``` | ||
|
|
||
| For example: | ||
| ```powershell | ||
| Copy-Item artifacts\bin\Microsoft.DotNet.ProjectTools\Debug\net10.0\Microsoft.DotNet.ProjectTools.dll artifacts\bin\redist\Debug\dotnet\sdk\$sdkVersion\ | ||
| Copy-Item artifacts\bin\Microsoft.DotNet.Cli.Utils\Debug\net10.0\Microsoft.DotNet.Cli.Utils.dll artifacts\bin\redist\Debug\dotnet\sdk\$sdkVersion\ | ||
| ``` | ||
|
|
||
| The `dotnet` project is special — it builds into `artifacts\bin\dotnet\Debug\net10.0\` and its `dotnet.dll` must be copied to the SDK directory: | ||
| ```powershell | ||
| Copy-Item artifacts\bin\dotnet\Debug\net10.0\dotnet.dll artifacts\bin\redist\Debug\dotnet\sdk\$sdkVersion\ | ||
| ``` | ||
|
|
||
| **Important notes:** | ||
| - For typical incremental edits, only copy DLLs that are **already present** in the target directory. If your change introduces a new shipped assembly or moves assemblies, you will need a full `build.cmd`/`build.sh` to update the layout correctly. | ||
| - Some projects multi-target (e.g., `net10.0` and `net472`). Always use the `net10.0` output. | ||
| - If localization resource DLLs were changed (in subdirectories like `cs\`, `de\`, etc.), copy those too. | ||
|
|
||
| ### Step 4: Build the test project (if test code was modified) | ||
|
|
||
| The test project `test\dotnet.Tests\dotnet.Tests.csproj` outputs directly to `artifacts\bin\redist\Debug\` (via `TestHostFolder`), so just build it: | ||
|
|
||
| ``` | ||
| .\.dotnet\dotnet build test\dotnet.Tests\dotnet.Tests.csproj | ||
| ``` | ||
|
|
||
| ### Step 5: Run the tests | ||
|
|
||
| Run specific tests: | ||
| ``` | ||
| .\.dotnet\dotnet exec artifacts\bin\redist\Debug\dotnet.Tests.dll -method "*TestMethodName*" | ||
| ``` | ||
|
|
||
| Or run filtered tests via `dotnet test`: | ||
| ``` | ||
| .\.dotnet\dotnet test test\dotnet.Tests\dotnet.Tests.csproj --no-build --filter "Name~TestMethodName" | ||
| ``` | ||
|
|
||
| ## Common project paths | ||
|
|
||
| | Assembly | Project Path | | ||
| |---|---| | ||
| | `dotnet.dll` | `src\Cli\dotnet\dotnet.csproj` | | ||
| | `Microsoft.DotNet.Cli.Utils.dll` | `src\Cli\Microsoft.DotNet.Cli.Utils\Microsoft.DotNet.Cli.Utils.csproj` | | ||
| | `Microsoft.DotNet.Cli.Definitions.dll` | `src\Cli\Microsoft.DotNet.Cli.Definitions\Microsoft.DotNet.Cli.Definitions.csproj` | | ||
| | `Microsoft.DotNet.Cli.CoreUtils.dll` | `src\Cli\Microsoft.DotNet.Cli.CoreUtils\Microsoft.DotNet.Cli.CoreUtils.csproj` | | ||
| | `Microsoft.DotNet.Configurer.dll` | `src\Cli\Microsoft.DotNet.Configurer\Microsoft.DotNet.Configurer.csproj` | | ||
| | `Microsoft.DotNet.ProjectTools.dll` | `src\Microsoft.DotNet.ProjectTools\Microsoft.DotNet.ProjectTools.csproj` | | ||
| | `Microsoft.DotNet.NativeWrapper.dll` | `src\Resolvers\Microsoft.DotNet.NativeWrapper\Microsoft.DotNet.NativeWrapper.csproj` | | ||
| | `Microsoft.DotNet.TemplateLocator.dll` | `src\Microsoft.DotNet.TemplateLocator\Microsoft.DotNet.TemplateLocator.csproj` | | ||
| | `Microsoft.DotNet.InternalAbstractions.dll` | `src\Cli\Microsoft.DotNet.InternalAbstractions\Microsoft.DotNet.InternalAbstractions.csproj` | | ||
| | `dotnet.Tests.dll` | `test\dotnet.Tests\dotnet.Tests.csproj` | | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.