
dotnet-build
List of commands for dotnet-build:
-
dotnet-build:tldr:508c3 dotnet-build: Compile without restoring dependencies.$ dotnet build --no-restoretry on your machineexplain this command
-
dotnet-build:tldr:9e295 dotnet-build: Compile a .NET project or solution in debug mode.$ dotnet build ${path-to-project_or_solution}try on your machineexplain this command
-
dotnet-build:tldr:d4612 dotnet-build: Compile with a specific verbosity level.$ dotnet build --verbosity ${select}try on your machineexplain this command
-
dotnet-build:tldr:e834e dotnet-build: Compile the project or solution in the current directory.$ dotnet buildtry on your machineexplain this command
-
dotnet-build:tldr:ecf3e dotnet-build: Specify the output directory.$ dotnet build --output ${path-to-directory}try on your machineexplain this command
-
dotnet-build:tldr:f291f dotnet-build: Compile for a specific runtime.$ dotnet build --runtime ${runtime_identifier}try on your machineexplain this command
-
dotnet-build:tldr:f34f3 dotnet-build: Compile in release mode.$ dotnet build --configuration ${Release}try on your machineexplain this command