Completed this crash course to learn about C# (.NET framework), SQL, and API development for building software and linking to SQL database.
Udemy certificate received: https://www.udemy.com/certificate/UC-5a0ab45d-6888-4f2b-8d1c-b61c7b347828/
- To create new .NET console project:
- dotnet new console -o ./
- To add new project to solution file (similar to workspace):
- dotnet sln add .<csproject path>
- needed if want to run C# intellisense
- To build project"
- dotnet build
- To add run the project
- go to the directory that contain the csprojec file
- dotnet run (will compile and run)
- Shift + Alt + F: Format the code indentions