dotnet
Available Commands
| Command | Description |
|---|---|
| dispatch | Runs an arbitrary dotnet command (action name is forwarded to dotnet). |
| tool | Executes dotnet tool ... commands. |
| restore | Restores NuGet packages for one project or a batch solution. |
| build | Build project. |
| pack | Packs the project into a NuGet package via dotnet pack. |
| publish | Publishes binaries via dotnet publish for one project or a batch solution. |
| test | Runs tests via dotnet test, optionally batched through a generated solution. |
Project Initializer
Computes default outputs and project-reference dependencies.
project {
@dotnet { }
}
Equivalent to:
project {
ignores = [ "**/*.binlog" ]
outputs = [ "bin/" "obj/" "**/*.binlog" ]
}