https://github.com/rellyson/dotnet-templates
This repository contains .NET Core templates I use in my daily basis projects.
https://github.com/rellyson/dotnet-templates
boilerplate-template dotnet dotnet-core dotnet-template template
Last synced: 5 months ago
JSON representation
This repository contains .NET Core templates I use in my daily basis projects.
- Host: GitHub
- URL: https://github.com/rellyson/dotnet-templates
- Owner: rellyson
- License: mit
- Created: 2024-05-12T02:54:15.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-12T03:34:18.000Z (about 2 years ago)
- Last Synced: 2024-05-12T04:26:53.080Z (about 2 years ago)
- Topics: boilerplate-template, dotnet, dotnet-core, dotnet-template, template
- Language: Dockerfile
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
.NET Templates

[](https://opensource.org/licenses/MIT)
This repository contains .NET Core templates I use
in my daily basis projects.
## About templates
You can navigate between templates in the `src/` folder. Each template
has its own `README.md` file with more information about it.
## Setup
You can set your development environment as below:
```sh
dotnet tool install -g dotnet-reportgenerator-globaltool
dotnet restore
```
## Running
You can run a specific project as follows:
```sh
# Run a project
dotnet run --project src/ --no-incremental
# Run in development mode (with hot reload)
dotnet watch --project src/
```
## Build
You can build a specific project as follows:
### Build project
```sh
# Using Taskfile
task build
# Or directly with the CLI
dotnet build --no-incremental
```
### Build a container image
```sh
# Using Taskfile
task docker-build PROJECT= IMAGE_NAME=
# Or directly with Docker
docker build --build-arg PROJECT= -t .
# Or even with Podman
podman build --build-arg PROJECT= -t .
```