Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/oneoffcoder/csharp-training


https://github.com/oneoffcoder/csharp-training

Last synced: about 6 hours ago
JSON representation

Awesome Lists containing this project

README

        

# C-sharp Training

- [Download .NET SDK](https://dotnet.microsoft.com/download)
- [Install the C# extension](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csharp)
- Create a new project as follows.
```
dotnet new console -o app
cd app
code .
```
- Build your project
```bash
dotnet build
```
- Run your project
```bash
dotnet run
```