Provided by: dotnet-host-10.0_10.0.1-0ubuntu1_amd64 

dotnet run
This article applies to: ✔️ .NET 6 SDK and later versions
NAME
dotnet-run - Runs source code without any explicit compile or launch commands.
SYNOPSIS
dotnet run [<applicationArguments>]
[-a|--arch <ARCHITECTURE>] [--artifacts-path <ARTIFACTS_DIR>]
[-c|--configuration <CONFIGURATION>] [-e|--environment <KEY=VALUE>]
[--file <FILE_PATH>] [-f|--framework <FRAMEWORK>] [--force] [--interactive]
[--launch-profile <NAME>] [--no-build] [--no-dependencies]
[--no-launch-profile] [--no-restore] [--os <OS>] [--project <PATH>]
[-r|--runtime <RUNTIME_IDENTIFIER>] [--tl:[auto|on|off]]
[-v|--verbosity <LEVEL>] [[--] [application arguments]]
dotnet run -h|--help
DESCRIPTION
The dotnet run command provides a convenient option to run your application from the source code with one
command. It’s useful for fast iterative development from the command line. The command depends on the
dotnet build command to build the code. Any requirements for the build apply to dotnet run as well.
dotnet run doesn’t respect arguments like /property:property=value, which are respected by dotnet
build.
Output files are written into the default location, which is bin/<configuration>/<target>. For example
if you have a netcoreapp2.1 application and you run dotnet run, the output is placed in bin/Debug/net‐
coreapp2.1. Files are overwritten as needed. Temporary files are placed in the obj directory.
If the project specifies multiple frameworks, executing dotnet run results in an error unless the
-f|--framework <FRAMEWORK> option is used to specify the framework.
The dotnet run command is used in the context of projects, not built assemblies. If you’re trying to run
a framework-dependent application DLL instead, you must use dotnet without a command. For example, to
run myapp.dll, use:
dotnet myapp.dll
For more information on the dotnet driver, see .NET CLI overview.
To run the application, the dotnet run command resolves the dependencies of the application that are out‐
side of the shared runtime from the NuGet cache. Because it uses cached dependencies, it’s not recom‐
mended to use dotnet run to run applications in production. Instead, create a deployment using the dot‐
net publish command and deploy the published output.
Implicit restore
You don’t have to run dotnet restore because it’s run implicitly by all commands that require a restore
to occur, such as dotnet new, dotnet build, dotnet run, dotnet test, dotnet publish, and dotnet pack. To
disable implicit restore, use the --no-restore option.
The dotnet restore command is still useful in certain scenarios where explicitly restoring makes sense,
such as continuous integration builds in Azure DevOps Services or in build systems that need to explicit‐
ly control when the restore occurs.
For information about how to manage NuGet feeds, see the dotnet restore documentation.
This command supports the dotnet restore options when passed in the long form (for example, --source).
Short form options, such as -s, are not supported.
Workload manifest downloads
When you run this command, it initiates an asynchronous background download of advertising manifests for
workloads. If the download is still running when this command finishes, the download is stopped. For
more information, see Advertising manifests.
ARGUMENTS
<applicationArguments>
Arguments passed to the application that is being run.
Any arguments that aren’t recognized by dotnet run are passed to the application. To separate arguments
for dotnet run from arguments for the application, use the -- option.
OPTIONS
• --
Delimits arguments to dotnet run from arguments for the application being run. All arguments after
this delimiter are passed to the application run.
• -a|--arch <ARCHITECTURE>
Specifies the target architecture. This is a shorthand syntax for setting the Runtime Identifier
(RID), where the provided value is combined with the default RID. For example, on a win-x64 machine,
specifying --arch x86 sets the RID to win-x86. If you use this option, don’t use the -r|--runtime op‐
tion. Available since .NET 6 Preview 7.
• --artifacts-path <ARTIFACTS_DIR>
All build output files from the executed command will go in subfolders under the specified path, sepa‐
rated by project. For more information see Artifacts Output Layout. Available since .NET 8 SDK.
• -c|--configuration <CONFIGURATION>
Defines the build configuration. The default for most projects is Debug, but you can override the
build configuration settings in your project.
• --disable-build-servers
Forces the command to ignore any persistent build servers. This option provides a consistent way to
disable all use of build caching, which forces a build from scratch. A build that doesn’t rely on
caches is useful when the caches might be corrupted or incorrect for some reason. Available since .NET
7 SDK.
• -e|--environment <KEY=VALUE>
Sets the specified environment variable in the process that will be run by the command. The specified
environment variable is not applied to the dotnet run process.
Environment variables passed through this option take precedence over ambient environment variables,
System.CommandLine env directives, and environmentVariables from the chosen launch profile. For more
information, see Environment variables.
(This option was added in .NET SDK 9.0.200.)
• -f|--framework <FRAMEWORK>
Builds and runs the app using the specified framework. The framework must be specified in the project
file.
• --file <FILE_PATH>
The path to the file-based app to run. If a path isn’t specified, the current directory is used to
find and run the file. For more information on file-based apps, see Build file-based C# apps.
On Unix, you can run file-based apps directly, using the source file name on the command line instead
of dotnet run. First, ensure the file has execute permissions. Then, add a shebang line #! as the
first line of the file, for example:
#!/usr/bin/env dotnet run
Then you can run the file directly from the command line:
./ConsoleApp.cs
Introduced in .NET SDK 10.0.100.
• --force
Forces all dependencies to be resolved even if the last restore was successful. Specifying this flag
is the same as deleting the project.assets.json file.
• --interactive
Allows the command to stop and wait for user input or action. For example, to complete authentication.
Available since .NET Core 3.0 SDK.
• --launch-profile <NAME>
The name of the launch profile (if any) to use when launching the application. Launch profiles are de‐
fined in the launchSettings.json file and are typically called Development, Staging, and Production.
For more information, see Working with multiple environments.
• --no-build
Doesn’t build the project before running. It also implicitly sets the --no-restore flag.
• --no-cache
Skip up to date checks and always build the program before running.
• --no-dependencies
When restoring a project with project-to-project (P2P) references, restores the root project and not
the references.
• --no-launch-profile
Doesn’t try to use launchSettings.json to configure the application.
• --no-restore
Doesn’t execute an implicit restore when running the command.
• --no-self-contained
Publish your application as a framework dependent application. A compatible .NET runtime must be in‐
stalled on the target machine to run your application.
• --os <OS>
Specifies the target operating system (OS). This is a shorthand syntax for setting the Runtime Identi‐
fier (RID), where the provided value is combined with the default RID. For example, on a win-x64 ma‐
chine, specifying --os linux sets the RID to linux-x64. If you use this option, don’t use the
-r|--runtime option. Available since .NET 6.
• --project <PATH>
Specifies the path of the project file to run (folder name or full path). If not specified, it de‐
faults to the current directory.
The -p abbreviation for --project is deprecated starting in .NET 6 SDK. For a limited time, -p can
still be used for --project despite the deprecation warning. If the argument provided for the option
doesn’t contain =, the command accepts -p as short for --project. Otherwise, the command assumes that
-p is short for --property. This flexible use of -p for --project will be phased out in .NET 7.
• --property:<NAME>=<VALUE>
Sets one or more MSBuild properties. Specify multiple properties delimited by semicolons or by repeat‐
ing the option:
--property:<NAME1>=<VALUE1>;<NAME2>=<VALUE2>
--property:<NAME1>=<VALUE1> --property:<NAME2>=<VALUE2>
The short form -p can be used for --property. If the argument provided for the option contains =, -p
is accepted as short for --property. Otherwise, the command assumes that -p is short for --project.
To pass --property to the application rather than set an MSBuild property, provide the option after the
-- syntax separator, for example:
dotnet run -- --property name=value
• -r|--runtime <RUNTIME_IDENTIFIER>
Specifies the target runtime to restore packages for. For a list of Runtime Identifiers (RIDs), see
the RID catalog.
• -sc|--self-contained
Publishes the .NET runtime with your application so the runtime doesn’t need to be installed on the
target system. The default is false. However, when targeting .NET 7 or lower, the default is true if
a runtime identifier is specified.
• --tl:[auto|on|off]
Specifies whether Terminal Logger should be used for the build output. The default is auto, which
first verifies the environment before enabling terminal logging. The environment check verifies that
the terminal is capable of using modern output features and isn’t using a redirected standard output
before enabling the new logger. on skips the environment check and enables terminal logging. off
skips the environment check and uses the default console logger.
Terminal Logger shows you the restore phase followed by the build phase. During each phase, the cur‐
rently building projects appear at the bottom of the terminal. Each project that’s building outputs
both the MSBuild target currently being built and the amount of time spent on that target. You can
search this information to learn more about the build. When a project is finished building, a single
“build completed” section is written that captures:
• The name of the built project.
• The target framework (if multi-targeted).
• The status of that build.
• The primary output of that build (which is hyperlinked).
• Any diagnostics generated for that project.
This option is available starting in .NET 8.
• -v|--verbosity <LEVEL>
Sets the verbosity level of the command. Allowed values are q[uiet], m[inimal], n[ormal], d[etailed],
and diag[nostic]. The default is minimal. For more information, see <xref:Microsoft.Build.Frame‐
work.LoggerVerbosity>.
• -?|-h|--help
Prints out a description of how to use the command.
ENVIRONMENT VARIABLES
There are four mechanisms by which environment variables can be applied to the launched application:
1. Ambient environment variables from the operating system when the command is run.
2. System.CommandLine env directives, like [env:key=value]. These apply to the entire dotnet run
process, not just the project being run by dotnet run.
3. environmentVariables from the chosen launch profile (-lp) in the project’s launchSettings.json file,
if any. These apply to the project being run by dotnet run.
4. -e|--environment CLI option values (added in .NET SDK version 9.0.200). These apply to the project
being run by dotnet run.
The environment is constructed in the same order as this list, so the -e|--environment option has the
highest precedence.
EXAMPLES
• Run the project in the current directory:
dotnet run
• Run the specified file-based app in the current directory:
dotnet run --file ConsoleApp.cs
File-based app support was added in .NET SDK 10.0.100.
• Run the specified project:
dotnet run --project ./projects/proj1/proj1.csproj
• Run the project in the current directory, specifying Release configuration:
dotnet run --property:Configuration=Release
• Run the project in the current directory (the --help argument in this example is passed to the applica‐
tion, since the blank -- option is used):
dotnet run --configuration Release -- --help
• Restore dependencies and tools for the project in the current directory only showing minimal output and
then run the project:
dotnet run --verbosity m
• Run the project in the current directory using the specified framework and pass arguments to the appli‐
cation:
dotnet run -f net6.0 -- arg1 arg2
In the following example, three arguments are passed to the application. One argument is passed using
-, and two arguments are passed after --:
dotnet run -f net6.0 -arg1 -- arg2 arg3
2025-10-30 dotnet-run(1)