Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oneoffcoder/csharp-training
https://github.com/oneoffcoder/csharp-training
Last synced: about 6 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/oneoffcoder/csharp-training
- Owner: oneoffcoder
- Created: 2023-04-20T19:53:51.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-16T22:47:38.000Z (about 1 year ago)
- Last Synced: 2023-10-17T10:09:41.751Z (about 1 year ago)
- Language: C#
- Size: 215 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```