In order to build and test the .NET Core Command-line Interface (CLI), you need the following installed on you machine:
- git (available from the Git Website) on the PATH.
- git (available from your package manager or the Git Website) on the PATH.
- git (available from Homebrew or the Git Website) on the PATH.
Run the following command from the root of the repository:
build.cmd
The build script will output a dotnet
installation to artifacts\bin\redist\Debug\dotnet
that will include any local changes to the .NET Core CLI.
To open the solution in Visual Studio, be sure to build with build.cmd
and run the generated artifacts\sdk-build-env.bat
. Finally, open Visual Studio with devenv sdk.sln
.
Run the following command from the root of the repository:
./build.sh
The build script will output a .NET Core installation to artifacts\bin\redist\Debug\dotnet
that will include any local changes to the .NET Core CLI.
Run the following command from the root of the repository to run all the .NET Core CLI tests:
build.cmd -test
Run the following command from the root of the repository to run all the .NET Core CLI tests:
./build.sh --test
The dotnet
executable in the artifacts directory can be run directly.
However, it's easier to configure a test environment to run the built dotnet
.
Run the following commands from the root of the repository to setup the test environment:
eng\dogfood.cmd
Ensure the dotnet
being used is from the artifacts directory:
where dotnet
This should output ..\artifacts\bin\redist\Debug\dotnet\dotnet.exe
.
You can now run dotnet
commands to test changes.
Run the following commands from the root of the repository to setup the test environment:
.\eng\dogfood.sh
Ensure the dotnet
being used is from the artifacts directory:
which dotnet
This should output .../artifacts/bin/redist/Debug/dotnet/dotnet
.
You can now run dotnet
commands to test changes.
Run "dotnet --debug " which will launch dotnet and pause waiting for user input. This will give you time to attach a debugger to the running dotnet process, set the breakpoints you want to stop at in your built copy of the sdk, and then you can hit enter for the dotnet command to continue.
build.cmd # to have a full build first
.\artifacts\sdk-build-env.bat
cd src\Tests\YOURTEST.Tests # cd to the test folder that contains the test csproj file
dotnet test --filter "FullyQualifiedName~TESTNAME" # run individual test
Use developer command prompt for Visual Studio or put devenv on you PATH
build.cmd # to have a full build first
.\artifacts\sdk-build-env.bat
devenv sdk.sln
Using the dotnet
built in the previous steps:
mkdir test
cd test
dotnet new console
dotnet run
This should print Hello World!
.
If you see error like error MSB3021: Unable to copy file "toolset-tasks.dll" to "toolset-tasks.dll". The process cannot access the file 'toolset-tasks.dll' because it is being used by another process.
You could run the following to stop all dotnet related processes
taskkill /F /IM dotnet.exe /T ||
taskkill /F /IM VSTest.Console.exe /T ||
taskkill /F /IM msbuild.exe /T
The dotnet CLI supports several models for adding new commands:
- In the CLI itself via
dotnet.dll
. - Through a .NET Core Global Tool.
- Through MSBuild tasks & targets in a NuGet package.
- Through executables prefixed with
dotnet-
on thePATH
.
Developers are generally encouraged to avoid adding commands to dotnet.dll
or the CLI installer directly. This is appropriate for very general commands such as restore
, build
, publish
, test
, and clean
, but is generally too broad of a distribution mechanism for new commands.
Create an issue and engage the repository maintainers if you feel there is a missing core command that you would like to add.
A .NET Core Global Tool can be used to install a dotnet-
prefixed tool to the PATH
.
The CLI will then treat the remainder of the tool name as a dotnet
command. For example, a tool with the name dotnet-hello
could be executed by dotnet hello
.
NuGet allows adding tasks and targets to a project through a NuGet package. Extending the CLI through this model has several advantages:
- Targets have access to the MSBuild Project Context, allowing them to reason about the files and properties being used to build a particular project.
- Targets are not CLI-specific, making them easy to share across command-line and IDE environments
Commands added as targets can be invoked once the target project adds a reference to the containing NuGet package and restores.
Targets are invoked by calling dotnet msbuild /t:{TargetName}
The dotnet CLI considers any executable on the path named dotnet-{commandName}
to be a command it can call out to.