dotnet-do
1.3.1
dotnet tool install --global dotnet-do --version 1.3.1
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local dotnet-do --version 1.3.1
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=dotnet-do&version=1.3.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nuke :add-package dotnet-do --version 1.3.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
This will take you through installing the dotnet-do tool and running your first task in 3 or 4 commands.
- If you don't have one already, you'll need to install the tool-manifest (usually at the root of your repo). This is necessary for .NET to keep inventory on the installed tools for the given directory hierarchy. If you're looking to install dotnet-do globally, you can skip this step.
dotnet new tool-manifest
- Install the Dotnet Do tool, and make it ready to use! If you're looking to install dotnet-do globally, simply add
--global
to the end of this command.
dotnet tool install dotnet-do
- Let's get a starting point for our first task. Create a sample tasks file (dotnet-tasks.yml).
dotnet do --create
- That was easy! The sample task is named
echo
and simply printsHello World
, let's try executing it.
dotnet do echo
- Let's add another task of our own. Open the "dotnet-tasks.yml" and add a new entry with the task name of
clean-build
, that runsdotnet clean
followed bydotnet build
in the "src" folder.
- name: clean-build
run: |
dotnet clean
dotnet build
working-directory: src/
- We can now run our newly created task.
dotnet do clean-build
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
- Add option to list (--list) all available tasks.