Skip to content

Install Bizzkit Blueprint

How to install Bizzkit Blueprint

Bizzkit Blueprint is distributed as a .NET template you install with NuGet. To install the latest version run the following dotnet-command:

dotnet new --install Bizzkit.Blueprint --nuget-source https://pkgs.dev.azure.com/bizzkit-platform/7dad82b4-f2ae-4a3a-ab87-3fc791e4ea62/_packaging/bizzkit-partner-feed/nuget/v3/index.json

You now have Bizzkit Blueprint available in dotnet new:

1
2
3
4
5
6
> dotnet new --list --tag Bizzkit
These templates matched your input: tag='Bizzkit'

Template Name      Short Name  Language  Tags
-----------------  ----------  --------  -------------------
Bizzkit Blueprint  blueprint   [C#]      Web/Hesehus/Bizzkit

Using Bizzkit Blueprint

You can see the parameters with the -h parameter:

1
2
3
4
5
6
7
8
> dotnet new blueprint -h
Bizzkit Blueprint (C#)
Author: Hesehus A/S
Description: A solution template for a webshop using the Bizzkit platform
Options:
  --file-folder  The base folder for storing files. Has to be an absolute path.
                 string - Optional
                 Default: d:\files

Example

Setup a new solution with name 'foo' and folders for files and logs:

dotnet new blueprint -n foo --file-folder d:\foo\files

How to uninstall Bizzkit Blueprint

You simply use the uninstall command for dotnet new:

dotnet new -u Bizzkit.Blueprint

How to update Bizzkit Blueprint

Bizzkit Blueprint should update automatically when you use it. But if you want to update it manually you can use the update command for dotnet new:

dotnet new --update-check
dotnet new --update-apply