https://github.com/veltzer/demos-cs
Demos for the C sharp language
https://github.com/veltzer/demos-cs
Last synced: 10 months ago
JSON representation
Demos for the C sharp language
- Host: GitHub
- URL: https://github.com/veltzer/demos-cs
- Owner: veltzer
- License: mit
- Created: 2024-06-14T08:33:32.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-21T21:02:30.000Z (10 months ago)
- Last Synced: 2025-03-21T22:19:16.840Z (10 months ago)
- Language: C#
- Size: 114 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## demos-cs
version: 0.0.1
description: Demos for the C# language
website: https://veltzer.github.io/demos-cs
## Build

## Contact
chat with me at [](https://gitter.im/veltzer/mark.veltzer)
## To run a specific project:
```bash
dotnet run --project src/Hello/Hello.csproj
```
## To run a specific project with different entry point, this has to be done after clean:
```bash
dotnet run --project src/MultiEntryPoint/MultiEntryPoint.csproj /p:StartupObject=Program3
dotnet run --project src/MultiEntryPoint/MultiEntryPoint.csproj --property StartupObject=Program3
```
## To build everything
```bash
dotnet build
dotnet build -v=q
dotnet build --nologo -v=q
dotnet build --nologo --verbosity quiet
```
## To clean everything
```bash
dotnet clean
dotnet clean -v=q
dotnet clean --nologo -v=q
dotnet clean --nologo --verbosity quiet
```
## To create a new project
```bash
cd src
dotnet new console -n [NameCamelCase]
```
Mark Veltzer, Copyright © 2024, 2025