Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.97 KB

dotnet.md

File metadata and controls

44 lines (29 loc) · 1.97 KB

How to set up your PC for a .NET Training

Here are the development tools required to enable you to start coding on a .NET Training.

.NET Development Tools

  1. Visual Studio Community Edition

During the installation select the workloads shown in red, below:

workloads selection

  1. VS Code

Database development

  1. SQL Server Local Installation OR SQL Server (Docker image) (For Docker follow below steps:)

    • First Install Docker and then CMDer

    • Open cmder and run the following command:

     docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=admin!@#123" -p 1433:1433 --name sql1 -d mcr.microsoft.com/mssql/server:2019-CU3-ubuntu-18.04
    • A new SQL Server instance will be created and you can access it using SQL Server Management Studio by using:

      Server name: localhost

      Authentication: SQL Server authentication

      Username: sa

      Password: admin!@#123

  2. SQL Server Management Studio or Azure Data Studio

Other development tools

  1. Github account
  2. Git Version Control
  3. Docker
  4. Postman Client
  5. CMDer (or any good console emulator)