Me viene de diez este curso , estamos viendo en la facultad c sharp, muchas gracias team Platzi 😃
Presentación y conceptos
Todo lo que aprenderás sobre .NET
Prerrequisitos
¿Qué es .NET?
.NET Framework vs .NET Core
Ventajas y usos de .NET
Línea de tiempo de .NET y C#
Componentes de .NET
Common Language Runtime
Compilador Roslyn
Common Language Specification
Common Type System
Herramientas e instalación
Instalacion del SDK
IDEs para trabajar con .NET
dotnet CLI
Primera App con dotnet CLI
Proyecto y librerías
Estructura de un proyecto .NET
Compilación y ejecución
Archivos de compilación
Archivo Global JSON
Cómo encontrar paquetes para .NET usando NuGet
Descargando un paquete con NuGet
Cierre
¿Cómo seguir aprendiendo .NET?
You don't have access to this class
Keep learning! Join and start boosting your career
Installing the .NET SDK on your computer is a crucial step to start practicing and understanding in a practical way how this development environment works. Here we will show you how to do it step by step, so you can start your projects and experience all that .NET has to offer. Let's get started!
The easiest way to get started is to download the .NET SDK installer from its official site. Follow these steps:
Currently, the most recent version you can download is 6.0.0.0, a minor release of .NET 6.0.0. You must select the appropriate platform for your operating system. For example:
Once you have selected the correct version and operating system, you can download the installer. On Windows, the file will be an .exe
.
After downloading the file, the installation process is quick and simple:
To confirm that the installation has been successful, it can be verified through a Windows console:
dotnet
command.You should receive a message that gives you several options for interacting with the .NET command, which is part of the SDK's official command line interface.
If when you run the command you receive an error message indicating that the command is not recognized, it is likely that the installation has failed and you need to reinstall the SDK to correct the problem.
Once you have the SDK installed, the next step is to choose a suitable development environment. The most recommended IDEs for working with .NET include:
Each of these environments has its own advantages and unique features that might better align with your development needs - experiment and find the one that suits you best!
Contributions 15
Questions 6
Me viene de diez este curso , estamos viendo en la facultad c sharp, muchas gracias team Platzi 😃
Si recientemente instalaron Visual Studio, pueden verificar en su terminal que el SDK este intalado con el siguiente comando:
dotnet --version
Y les aparecerá la versión que tienen instalada, en caso de no tenerla el comando no funcionará.
Yo había instalado Visual Studio 2022 y no tuve la necesidad de instalar el dotnet CLI.
En mac por defecto lo deja en /usr/local/share/dotnet/x64/
Para acceder:
x:~$ cd /usr/local/share/dotnet/x64/
x:x64$ ./dotnet --version
6.0.408
Con el siguiente comando podemos ver la versión más reciente que tenemos instalado
dotnet --version
Creo que se limito mucho en esta clase, hubiera demostrado mas si lo instalara en otro sistema operativo.
En Ubuntu Linux, pueden seguir las instrucciones de la Documentación de Microsoft
https://learn.microsoft.com/es-es/dotnet/core/install/linux-ubuntu-2204
.NET 6.0 SDK (v6.0.301)
Me salio un error:
It was not possible to find any installed .NET Core SDKs
y esta pagina me ayudo mucho
Si como yo, tienen Unity para desarrollo de videojuegos, probablemente ya tengan el SDK instalado
Retiro lo dicho si necesitas instalar .net , asi instales visual x:x
Si ya tienes instalado la version de 2022 ya viene con el .net 6.0 :9
Want to see more contributions, questions and answers from the community?