https://github.com/devlead/devlead.console.template
@devlead .NET Console Template
https://github.com/devlead/devlead.console.template
csharp dotnet dotnet-core template template-proejct
Last synced: 3 months ago
JSON representation
@devlead .NET Console Template
- Host: GitHub
- URL: https://github.com/devlead/devlead.console.template
- Owner: devlead
- License: mit
- Created: 2021-01-12T21:42:31.000Z (over 4 years ago)
- Default Branch: develop
- Last Pushed: 2025-04-09T19:39:45.000Z (3 months ago)
- Last Synced: 2025-04-09T20:36:12.813Z (3 months ago)
- Topics: csharp, dotnet, dotnet-core, template, template-proejct
- Language: C#
- Homepage: https://www.devlead.se/posts/2021/2021-01-15-my-preferred-console-stack
- Size: 165 KB
- Stars: 34
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# @devlead Console Template
@devlead .NET Console Template is my opinionated template alternative to `dotnet new console`.
Background and more details in my blog post [My preferred .NET console stack](https://www.devlead.se/posts/2021/2021-01-15-my-preferred-console-stack).
## Installation
```PowerShell
dotnet new install Devlead.Console.Template
```## Usage
Create a new project with same name as folder
```PowerShell
dotnet new devleadconsole
```Create a new project with specified name
```PowerShell
dotnet new devleadconsole -n MyConsole
```Create a new project with specified target framework `net8.0` or `net9.0` supported (*default `net9.0`*).
```PowerShell
dotnet new devleadconsole -n MyConsole --framework net8.0
```