dotnet-msbuild-tasks
Guidance for authoring custom MSBuild tasks: implementing the ITask interface, extending ToolTask for CLI wrappers,
using IIncrementalTask (MSBuild 17.8+) for incremental execution, defining inline tasks with CodeTaskFactory,
registering tasks via UsingTask, declaring task parameters, debugging tasks, and packaging tasks as NuGet packages.
Version assumptions: .NET 8.0+ SDK (MSBuild 17.8+). IIncrementalTask requires MSBuild 17.8+ (VS 2022 17.8+, .NET 8
SDK). All examples use SDK-style projects. All C# examples assume using Microsoft.Build.Framework; and
using Microsoft.Build.Utilities; are in scope unless shown explicitly.
Scope
- ITask interface and Task base class implementation
- ToolTask for wrapping external CLI tools
- IIncrementalTask for engine-filtered incremental execution
- Inline tasks with CodeTaskFactory
- UsingTask registration and task parameters
- Task debugging and NuGet packaging
Out of scope
- MSBuild project system authoring (targets, props, items, conditions) -- see [skill:dotnet-msbuild-authoring]
Cross-references: [skill:dotnet-msbuild-authoring] for custom targets, import ordering, items, conditions, and property
functions.
ITask Interface
All MSBuild tasks implement Microsoft.Build.Framework.ITask. The simplest approach is to inherit from
Microsoft.Build.Utilities.Task, which provides default implementations for BuildEngine and HostObject.
Minimal Custom Task
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
public class GenerateFileHash : Task
{
[Required]
public string InputFile { get; set; } = string.Empty;
[Output]
public string Hash { get; set; } = string.Empty;
public override bool Execute()
{
if (!File.Exists(InputFile))
{
Log.LogError("Input file not found: {0}", InputFile);
return false;
}
using var stream = File.OpenRead(InputFile);
var bytes = System.Security.Cryptography.SHA256.HashData(stream);
Hash = Convert.ToHexString(bytes).ToLowerInvariant();
Log.LogMessage(MessageImportance.Normal,
"SHA-256 hash for {0}: {1}", InputFile, Hash);
return true;
}
}
ITask Contract
| Member |
Purpose |
BuildEngine |
Provides logging, error reporting, and build context |
HostObject |
Host-specific data (rarely used) |
Execute() |
Runs the task. Return true for success, false for failure |
The Task base class exposes a Log property (TaskLoggingHelper) with convenience methods:
| Method |
When to use |
Log.LogMessage(importance, msg) |
Informational output (Normal, High, Low) |
Log.LogWarning(msg) |
Non-fatal issues |
Log.LogError(msg) |
Fatal errors (causes build failure) |
Log.LogWarningFromException(ex) |
Warning from caught exception |
Log.LogErrorFromException(ex) |
Error from caught exception |
For detailed code examples (ToolTask, IIncrementalTask, task parameters, inline tasks, UsingTask, debugging, NuGet
packaging), see examples.md in this skill directory.
Agent Gotchas
Returning false without logging an error. If Execute() returns false but Log.LogError was never called,
MSBuild reports a generic "task failed" with no actionable message. Always log an error before returning false.
Using Console.WriteLine instead of Log.LogMessage. Console output bypasses MSBuild's logging infrastructure
and may not appear in build logs, binary logs, or IDE error lists. Always use Log.LogMessage, Log.LogWarning, or
Log.LogError.
Referencing IIncrementalTask without version-gating. This interface requires MSBuild 17.8+ (.NET 8 SDK). Tasks
referencing it will fail to load on older MSBuild versions with a TypeLoadException. If supporting older SDKs, use
target-level Inputs/Outputs instead. If the task must support both old and new MSBuild, ship separate task
assemblies per MSBuild version range or use #if conditional compilation with a version constant.
Placing task DLLs in the NuGet lib/ folder. This adds the assembly as a compile reference to consuming
projects, polluting their type namespace. Set IncludeBuildOutput=false and pack into tools/ instead.
Forgetting PrivateAssets="all" on MSBuild framework package references. Without it, Microsoft.Build.Framework
and Microsoft.Build.Utilities.Core become transitive dependencies of consuming projects, causing version conflicts.
Using AssemblyFile with a path relative to the project. In NuGet packages, the .targets file is in a
different location than the consuming project. Use $(MSBuildThisFileDirectory) to build paths relative to the
.targets file itself.
Leaving Debugger.Launch() in release builds. Shipping a task with unconditional Debugger.Launch() halts
builds on CI/CD servers. Guard with #if DEBUG or remove before packaging.
Inline tasks with complex dependencies. CodeTaskFactory compiles code at build time with limited assembly
references. For tasks that need NuGet packages or complex type hierarchies, compile a standalone task assembly
instead.
References
Code Navigation (Serena MCP)
Primary approach: Use Serena symbol operations for efficient code navigation:
- Find definitions:
serena_find_symbol instead of text search
- Understand structure:
serena_get_symbols_overview for file organization
- Track references:
serena_find_referencing_symbols for impact analysis
- Precise edits:
serena_replace_symbol_body for clean modifications
When to use Serena vs traditional tools:
- Use Serena: Navigation, refactoring, dependency analysis, precise edits
- Use Read/Grep: Reading full files, pattern matching, simple text operations
- Fallback: If Serena unavailable, traditional tools work fine
Example workflow:
# Instead of:
Read: src/Services/OrderService.cs
Grep: "public void ProcessOrder"
# Use:
serena_find_symbol: "OrderService/ProcessOrder"
serena_get_symbols_overview: "src/Services/OrderService.cs"
1---2name: dotnet-msbuild-tasks3description: Writes custom MSBuild tasks. ITask, ToolTask, IIncrementalTask, inline tasks, UsingTask.4license: MIT5---67# dotnet-msbuild-tasks89Guidance for authoring custom MSBuild tasks: implementing the `ITask` interface, extending `ToolTask` for CLI wrappers,10using `IIncrementalTask` (MSBuild 17.8+) for incremental execution, defining inline tasks with `CodeTaskFactory`,11registering tasks via `UsingTask`, declaring task parameters, debugging tasks, and packaging tasks as NuGet packages.1213**Version assumptions:** .NET 8.0+ SDK (MSBuild 17.8+). `IIncrementalTask` requires MSBuild 17.8+ (VS 2022 17.8+, .NET 814SDK). All examples use SDK-style projects. All C# examples assume `using Microsoft.Build.Framework;` and15`using Microsoft.Build.Utilities;` are in scope unless shown explicitly.1617## Scope1819- ITask interface and Task base class implementation20- ToolTask for wrapping external CLI tools21- IIncrementalTask for engine-filtered incremental execution22- Inline tasks with CodeTaskFactory23- UsingTask registration and task parameters24- Task debugging and NuGet packaging2526## Out of scope2728- MSBuild project system authoring (targets, props, items, conditions) -- see [skill:dotnet-msbuild-authoring]2930Cross-references: [skill:dotnet-msbuild-authoring] for custom targets, import ordering, items, conditions, and property31functions.3233---3435## ITask Interface3637All MSBuild tasks implement `Microsoft.Build.Framework.ITask`. The simplest approach is to inherit from38`Microsoft.Build.Utilities.Task`, which provides default implementations for `BuildEngine` and `HostObject`.3940### Minimal Custom Task4142```csharp43using Microsoft.Build.Framework;44using Microsoft.Build.Utilities;4546public class GenerateFileHash : Task47{48 [Required]49 public string InputFile { get; set; } = string.Empty;5051 [Output]52 public string Hash { get; set; } = string.Empty;5354 public override bool Execute()55 {56 if (!File.Exists(InputFile))57 {58 Log.LogError("Input file not found: {0}", InputFile);59 return false;60 }6162 using var stream = File.OpenRead(InputFile);63 var bytes = System.Security.Cryptography.SHA256.HashData(stream);64 Hash = Convert.ToHexString(bytes).ToLowerInvariant();6566 Log.LogMessage(MessageImportance.Normal,67 "SHA-256 hash for {0}: {1}", InputFile, Hash);68 return true;69 }70}71```7273### ITask Contract7475| Member | Purpose |76| ------------- | ------------------------------------------------------------- |77| `BuildEngine` | Provides logging, error reporting, and build context |78| `HostObject` | Host-specific data (rarely used) |79| `Execute()` | Runs the task. Return `true` for success, `false` for failure |8081The `Task` base class exposes a `Log` property (`TaskLoggingHelper`) with convenience methods:8283| Method | When to use |84| --------------------------------- | ---------------------------------------- |85| `Log.LogMessage(importance, msg)` | Informational output (Normal, High, Low) |86| `Log.LogWarning(msg)` | Non-fatal issues |87| `Log.LogError(msg)` | Fatal errors (causes build failure) |88| `Log.LogWarningFromException(ex)` | Warning from caught exception |89| `Log.LogErrorFromException(ex)` | Error from caught exception |9091---9293For detailed code examples (ToolTask, IIncrementalTask, task parameters, inline tasks, UsingTask, debugging, NuGet94packaging), see `examples.md` in this skill directory.9596## Agent Gotchas97981. **Returning `false` without logging an error.** If `Execute()` returns `false` but `Log.LogError` was never called,99 MSBuild reports a generic "task failed" with no actionable message. Always log an error before returning `false`.1001011. **Using `Console.WriteLine` instead of `Log.LogMessage`.** Console output bypasses MSBuild's logging infrastructure102 and may not appear in build logs, binary logs, or IDE error lists. Always use `Log.LogMessage`, `Log.LogWarning`, or103 `Log.LogError`.1041051. **Referencing `IIncrementalTask` without version-gating.** This interface requires MSBuild 17.8+ (.NET 8 SDK). Tasks106 referencing it will fail to load on older MSBuild versions with a `TypeLoadException`. If supporting older SDKs, use107 target-level `Inputs`/`Outputs` instead. If the task must support both old and new MSBuild, ship separate task108 assemblies per MSBuild version range or use `#if` conditional compilation with a version constant.1091101. **Placing task DLLs in the NuGet `lib/` folder.** This adds the assembly as a compile reference to consuming111 projects, polluting their type namespace. Set `IncludeBuildOutput=false` and pack into `tools/` instead.1121131. **Forgetting `PrivateAssets="all"` on MSBuild framework package references.** Without it, `Microsoft.Build.Framework`114 and `Microsoft.Build.Utilities.Core` become transitive dependencies of consuming projects, causing version conflicts.1151161. **Using `AssemblyFile` with a path relative to the project.** In NuGet packages, the `.targets` file is in a117 different location than the consuming project. Use `$(MSBuildThisFileDirectory)` to build paths relative to the118 `.targets` file itself.1191201. **Leaving `Debugger.Launch()` in release builds.** Shipping a task with unconditional `Debugger.Launch()` halts121 builds on CI/CD servers. Guard with `#if DEBUG` or remove before packaging.1221231. **Inline tasks with complex dependencies.** `CodeTaskFactory` compiles code at build time with limited assembly124 references. For tasks that need NuGet packages or complex type hierarchies, compile a standalone task assembly125 instead.126127---128129## References130131- [MSBuild Task Writing](https://learn.microsoft.com/en-us/visualstudio/msbuild/task-writing)132- [MSBuild Task Reference](https://learn.microsoft.com/en-us/visualstudio/msbuild/msbuild-task-reference)133- [ToolTask Class](https://learn.microsoft.com/en-us/dotnet/api/microsoft.build.utilities.tooltask)134- [MSBuild Inline Tasks](https://learn.microsoft.com/en-us/visualstudio/msbuild/msbuild-inline-tasks)135- [UsingTask Element](https://learn.microsoft.com/en-us/visualstudio/msbuild/usingtask-element-msbuild)136- [MSBuild Task Parameters](https://learn.microsoft.com/en-us/visualstudio/msbuild/task-writing#task-parameters)137- [Creating a NuGet Package with MSBuild Tasks](https://learn.microsoft.com/en-us/nuget/create-packages/creating-a-package-msbuild)138- [Debugging MSBuild Tasks](https://learn.microsoft.com/en-us/visualstudio/msbuild/how-to-debug-msbuild-custom-task)139140## Code Navigation (Serena MCP)141142**Primary approach:** Use Serena symbol operations for efficient code navigation:1431441. **Find definitions**: `serena_find_symbol` instead of text search1452. **Understand structure**: `serena_get_symbols_overview` for file organization1463. **Track references**: `serena_find_referencing_symbols` for impact analysis1474. **Precise edits**: `serena_replace_symbol_body` for clean modifications148149**When to use Serena vs traditional tools:**150151- **Use Serena**: Navigation, refactoring, dependency analysis, precise edits152- **Use Read/Grep**: Reading full files, pattern matching, simple text operations153- **Fallback**: If Serena unavailable, traditional tools work fine154155**Example workflow:**156157```text158# Instead of:159Read: src/Services/OrderService.cs160Grep: "public void ProcessOrder"161162# Use:163serena_find_symbol: "OrderService/ProcessOrder"164serena_get_symbols_overview: "src/Services/OrderService.cs"165```