Simple steps to get started:
turbo run microsoft/dotnet-sdk --isolate=merge-user
Check version:
(dotnet-sdk#74d116b9) C:\>dotnet --info
.NET SDK:
Version: 8.0.201
Create and run a sample project:
(dotnet-sdk#74d116b9) C:\>dotnet new console -n TestConsole -o "%userprofile%\Desktop\dotnet\project\"
The template "Console App" was created successfully.
(dotnet-sdk#74d116b9) C:\>dotnet run --project "%userprofile%\Desktop\dotnet\project\TestConsole.csproj"
Hello, World!
Build the project:
(dotnet-sdk#74d116b9) C:\>dotnet run --project "%userprofile%\Desktop\dotnet\project"
MSBuild version 17.9.4+90725d08d for .NET
Determining projects to restore...
All projects are up-to-date for restore.
TestConsole -> C:\Users\userprofile\Desktop\dotnet\project\bin\Debug\net8.0\TestConsole.dll
Build succeeded.
0 Warning(s)
0 Error(s)
Time Elapsed 00:00:01.12
No release notes
This repository does not have an EULA
Actions