Create Project
Install the necessary packages to start building with the bit project templates.
CLI
1. Install the project templates from the NuGet package manager with one of the following commands:
dotnet new install Bit.AdminPanel::5.6.1 dotnet new install Bit.TodoTemplate::5.6.1 dotnet new install Bit.BlazorDual::5.6.1
2. Create a new project using the installed project template with one of the following commands:
dotnet new bit-admin dotnet new bit-todo dotnet new bit-dual
Note: bit project templates accept the following parameters:
- --name (default is current folder name)
- --database default to 'SqlServer' among following options: 'SqlServer', 'Sqlite', 'Other'
- --pipeline default to 'GitHub' among the following options: 'GitHub', 'Azure' (AzureDevOps pipelines), 'Other'
dotnet new bit-admin --name MyProject --database sqlite --pipeline github dotnet new bit-todo --name MyProject --database sqlite --pipeline github dotnet new bit-dual --name MyProject --database sqlite --pipeline github
Note: We recommend to create the project in a path that is not too long without space character in the folder names.
Visual Studio



Note: In second window of create new project modal, make sure to check Place solution and project in the same directory checkbox.