Skip to content

0.11.0

Compare
Choose a tag to compare
@dustinmoris dustinmoris released this 22 Dec 15:54
· 142 commits to master since this release

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