Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 10 days 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 (almost 4 years ago)
- Default Branch: develop
- Last Pushed: 2023-10-30T21:25:51.000Z (about 1 year ago)
- Last Synced: 2024-05-01T12:22:55.270Z (7 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: 110 KB
- Stars: 34
- Watchers: 5
- 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 `net6.0` or `net7.0` supported (*default `net7.0`*).
```PowerShell
dotnet new devleadconsole -n MyConsole --framework net6.0
```