DEV Community

Mahamadjon000
Mahamadjon000

Posted on

1

dotnet терминал команды

Сегодня расскажу про dotnet терминал команд.

В .NET для работы с проектами и приложениями используется инструмент командной строки dotnet.

Основные команды dotnet:

  1. Создание нового проекта:

Создать новый проект консольного приложения

dotnet new console -n MyApp.

  1. Сборка проекта:

Сборка проекта (компиляция):

dotnet build.

  1. Запуск приложения:

Запуск проекта (после сборки):

dotnet run.

  1. Обновление .NET SDK:

Обновление .NET SDK до последней версии:

dotnet --version.

  1. Информация о версии .NET:

Проверка установленной версии SDK:

dotnet --info.

  1. dotnet clean - удаление выходных файлов сборки.

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay