- Make sure that you are in this folder
- Run:
dotnet pack -o .
If no output is set, then the file will be placed in
bin/Release
Find the latest release here
From there,:
- download the package, e.g.,
wget https://github.com/itu-bdsa/Chirp.Templates/releases/download/v1.0.1/BDSA.TEMPLATES.1.0.1.nupkg
- Install the template package
dotnet new install BDSA.TEMPLATES.1.0.1.nupkg
- And use the new templates, e.g.,
dotnet new chirp-razor -o Chirp.Razor
Currently, the package bundles two templates: chirp-razor
and chirp-blazor
.
To automatically create a new release, tag a new version and push it to main, e.g.,
git tag v1.1.1
git push origin v1.1.1
The CSS files style.css
are adapted from Armin Ronacher's original version that was provided with his Flask example application MiniTwit.