Dotnet CLI Komutları
  • Giriş
  • Genel Komutlar
    • dotnet
    • dotnet help
    • dotnet sdk check
  • Yüklü Proje Şablonları ile Proje Oluşturma Komutları
    • dotnet new sln
    • dotnet new classlib
    • dotnet new console
    • dotnet new web
    • dotnet new mvc
    • dotnet new webapi
    • dotnet new react
    • dotnet new angular
    • dotnet new grpc
    • dotnet new nunit
    • dotnet new xunit
    • dotnet new mstest
    • dotnet new gitignore
    • dotnet new globaljson
  • Proje Şablon İşlemleri için Komutlar
    • dotnet new list
    • dotnet new search
    • dotnet new install
    • dotnet new uninstall
    • dotnet new update
  • Proje Genel İşlemler için Komutlar
    • dotnet build
    • dotnet clean
    • dotnet publish
    • dotnet run
  • Çözüm (Solution) İşlemleri için Komutlar
    • dotnet sln add
    • dotnet sln remove
    • dotnet sln list
  • Proje Paket İşlemleri Komutları
    • dotnet add package
    • dotnet remove package
    • dotnet list package
  • Projeler Arası Referans Tanımlama Komutları
    • dotnet add reference
    • dotnet remove reference
    • dotnet list reference
  • Proje Sertifika Komutları
    • dotnet dev-certs https
  • Proje Test Komutları
    • dotnet test
  • Dotnet Araçları Genel Komutları
    • dotnet tool list
    • dotnet tool run
    • dotnet tool search
    • dotnet tool install
    • dotnet tool uninstall
    • dotnet tool update
  • Dotnet Code Generator Komutları
    • dotnet aspnet-codegenerator area
    • dotnet aspnet-codegenerator controller
    • dotnet aspnet-codegenerator view
  • Entity Framework Core Migrasyon Komutları
    • dotnet ef migrations add
    • dotnet ef migrations bundle
    • dotnet ef migrations list
    • dotnet ef migrations remove
    • dotnet ef migrations script
  • Entity Framework Core Veritabanı Komutları
    • dotnet ef database update
    • dotnet ef database drop
  • Entity Framework Core DbContext Komutları
    • dotnet ef dbcontext info
    • dotnet ef dbcontext list
    • dotnet ef dbcontext optimize
    • dotnet ef dbcontext scaffold
    • dotnet ef dbcontext script
Powered by GitBook
On this page
  • dotnet sdk check --help
  • dotnet sdk check
  1. Genel Komutlar

dotnet sdk check

dotnet sdk check komutu ile yüklü sdk'lar hakkında bilgi alabiliriz.

dotnet sdk check --help

Öncelikle komutumuz hakkında bilgi almak için --help opsiyonunu kullanalım.

Komutu girdiğimizde, bu komutun sdk kontrol komutu olduğu belirtiliyor. Komutun opsiyonlarının listesini yine bu çıktıda görebiliyoruz.

eg@debian:~$ dotnet sdk check --help
Description:
  .NET SDK Check Command

Usage:
  dotnet sdk check [options]

Options:
  -?, -h, --help  Show command line help.

dotnet sdk check

Şimdi komutu --help opsiyonu olmadan kullanalım ve çıktısına bakalım. Komutu kullandıktan sonra elde edilen çıktı aşağıda yer almaktadır.

Burada bilgisayarımızda yüklü bulunan sdk sürümlerinin listelenmesi dışında ayrıca yüklenebilecek preview sürümler de listelenmiştir.

eg@debian:~$ dotnet sdk check
.NET SDKs:
Version      Status                     
----------------------------------------
6.0.411      Patch 6.0.413 is available.
6.0.412      Patch 6.0.413 is available.
7.0.305      Patch 7.0.307 is available.
7.0.306      Patch 7.0.307 is available.

Try out the newest .NET SDK features with .NET 8.0.100-preview.7.23376.3.

.NET Runtimes:
Name                          Version      Status                    
---------------------------------------------------------------------
Microsoft.AspNetCore.App      6.0.19       Patch 6.0.21 is available.
Microsoft.NETCore.App         6.0.19       Patch 6.0.21 is available.
Microsoft.AspNetCore.App      6.0.20       Patch 6.0.21 is available.
Microsoft.NETCore.App         6.0.20       Patch 6.0.21 is available.
Microsoft.AspNetCore.App      7.0.8        Patch 7.0.10 is available.
Microsoft.NETCore.App         7.0.8        Patch 7.0.10 is available.
Microsoft.AspNetCore.App      7.0.9        Patch 7.0.10 is available.
Microsoft.NETCore.App         7.0.9        Patch 7.0.10 is available.


The latest versions of .NET can be installed from https://aka.ms/dotnet-core-download. For more information about .NET lifecycles, see https://aka.ms/dotnet-core-support.
Previousdotnet helpNextYüklü Proje Şablonları ile Proje Oluşturma Komutları

Last updated 1 year ago