run-script
0.1.0-beta.2
See the version list below for details.
dotnet tool install --global run-script --version 0.1.0-beta.2
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local run-script --version 0.1.0-beta.2
#tool dotnet:?package=run-script&version=0.1.0-beta.2&prerelease
nuke :add-package run-script --version 0.1.0-beta.2
dotnet-run-script
A dotnet
tool to run arbitrary commands from a project's "scripts" object.
If you've used npm
this is the equivalent of npm run
with almost identical functionality and options.
It is compatible with .NET Core 3.1 and newer.
See the about page for more information on how this tool came to be and why it exists at all.
Installation
This tool is meant to be used as a dotnet local tool. To install it run the following:
dotnet new tool-manifest
dotnet tool install run-script
⚠️ It's not recommended to install this tool globally. PowerShell defines the alias
r
for theInvoke-History
command which prevents this from being called. You'll also run into issues calling this from your scripts since global tools don't use thedotnet
prefix.
Options
Name | Description |
---|---|
--if-present |
Don't exit with an error code if the script isn't found |
--script-shell |
The shell to use when running scripts (cmd, pwsh, sh, etc.) |
--verbose |
Enable verbose output |
--version |
Show version information |
--help |
Show help and usage information |
Configuration
In your project's global.json
add a scripts
object:
{
"sdk": {
"version": "6.0.100",
"rollForward": "latestPatch"
},
"scriptShell": "pwsh", // Optional
"scripts": {
"build": "dotnet build --configuration Release",
"test": "dotnet test --configuration Release",
"ci": "dotnet r build && dotnet r test",
}
}
ℹ️ The shell used depends on the OS.
On Windows CMD
is used, on Linux, macOS, and WSL sh
is used.
This can be overridden by setting the scriptShell
property or by passing the --script-shell
option with the name of the shell to use.
The env
command is a special built-in command that lists all available environment variables.
You can override this with your own command if you wish.
Usage
Use dotnet r <command>
to run the scripts.
Anything you can run from the command line can be used in a script.
You can also call other scripts to chain them together such as a ci
script that calls the build
, test
, and package
scripts.
To help keep your configuration easy to read and maintain pre
and post
scripts are supported.
These are run before and after the main script.
This is an example of a pre
script that clears the build artifacts folder, and a post
script that writes to the console saying the command completed.
{
"scripts": {
"prepackage": "del /Q ./artifacts",
"package": "dotnet pack --configuration Release --no-build --output ./artifacts",
"postpackage": "echo \"Packaging complete\""
}
}
Working directory
The working directory is set to the root of the project where the global.json
is located.
If you need to get the folder the command was executed from you can do so using the INIT_CWD
environment variable.
Common build environments
When using this tool on a build server, such as GitHub Actions, you might want to use a generic workflow that calls a common set of scripts such as build
, test
, and package
.
These might not be defined in all of your projects and if a script that doesn't exist is called an error is returned.
To work around this you can call them with the --if-present
flag which will return a 0
exit code for not found scripts.
Example shared GitHub Actions workflow:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Always runs
- name: Run build
run: dotnet r build
# Only runs if `test` script is present
- name: Run test
run: dotnet r test --if-present
# Only runs if `package` script is present
- name: Run package
run: dotnet r package --if-present
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
This package has no dependencies.
See https://github.com/xt0rted/dotnet-run-script/blob/main/CHANGELOG.md for more info