Skip to content

Releases: giraffe-fsharp/giraffe-template

0.17.0

24 Mar 16:40
Compare
Choose a tag to compare

Updated paket.exe to latest Paket release (fixes #12).

0.16.0

17 Feb 16:42
Compare
Choose a tag to compare

Updated all templates to use the latest Giraffe 1.1.* release.

0.15.0

09 Feb 02:23
Compare
Choose a tag to compare

Updated all templates to use the latest Giraffe 1.0.0 release.

0.14.0

29 Jan 15:34
Compare
Choose a tag to compare

New features

  • Added the ASP.NET Core default developer exception page when the environment is development.

0.13.0

29 Jan 09:14
Compare
Choose a tag to compare

New features

  • Added a default web.config file to all templates to support Azure deployments.

0.12.0

22 Jan 16:22
Compare
Choose a tag to compare

New features

  • Added none as a new option to the --ViewEngine parameter, which will create a Giraffe web application without any view engine (Web API only).
  • Added a new parameter called --UsePaket which will use Paket instead of NuGet as the package manager for the Giraffe web application.

Enhancements

  • Updated the default Giraffe template to the latest version of Giraffe and made use of the new HTML attributes from the GiraffeViewEngine.

0.11.0

22 Dec 15:54
Compare
Choose a tag to compare

New features

Added an additional parameter called IncludeTests which can be added to auto generate an accompanying test project to your Giraffe web application.

Examples:

Default Giraffe web application with the GiraffeViewEngine and no tests:

dotnet new giraffe

Default Giraffe web application with the GiraffeViewEngine and a default test project:

dotnet new giraffe --IncludeTests

Giraffe web application with the Razor view engine and a default test project:

dotnet new giraffe --ViewEngine razor --IncludeTests

0.10.0

21 Dec 10:47
Compare
Choose a tag to compare

New features

The Giraffe template supports three different view engines now:

  • giraffe (default)
  • razor
  • dotliquid

You can optionally specify the --ViewEngine (or short -V) parameter and select one of the supported options when creating a new Giraffe project:

dotnet new giraffe --ViewEngine razor

When you run dotnet new giraffe it will automatically create a new Giraffe project with the default GiraffeViewEngine engine.