Ant Design Blazor is a set of enterprise-class UI components based on Ant Design and Blazor.
Github: https://github.com/ant-design-blazor/ant-design-blazor
Docs: https://ant-design-blazor.github.io/
Ant Design Blazor is a set of enterprise-class UI components based on Ant Design and Blazor.
Github: https://github.com/ant-design-blazor/ant-design-blazor
Docs: https://ant-design-blazor.github.io/
We have provided the dotnet new template to create a Boilerplate project out of the box:
Install .NET Core SDK 3.1.300 or later, .NET 5 is even better.
Install the template:
dotnet new --install AntDesign.Templates
Create the Boilerplate project with the template
dotnet new antdesign -o MyAntDesignApp
| Options | Description | Type | Default | |||||
-f \ |
--full |
If specified, generates all pages of Ant Design Pro | bool | false | ||||
-ho \ |
--host |
Specify the hosting model | 'wasm' \ | 'server' \ | 'hosted' | 'wasm' | ||
--no-restore |
If specified, skips the automatic restore of the project on create | bool | false |

I can't install the server version.
I have used the commands
dotnet new antdesign -o MyAntDesignApp --full --host 'server'
dotnet new antdesign -o MyAntDesignApp --full -ho \ 'server'
dotnet new antdesign -o MyAntDesignApp --full -ho \'server'
dotnet new antdesign -o MyAntDesignApp --full -ho\'server'
dotnet new antdesign -o MyAntDesignApp --full -ho\ 'server'
Could you make it more difficult?
Hello, this is a known issue.
For workaround, please put the _Host.cshtml file into Pages folder.
4 people are following this question.
How to do encrypt and decrypt data using Cryptography API Next Generation (CNG) in C#?
What is diffrent beween CNG and Microsoft Key storage provider?
How to implement NCryptSignHash and NCryptVerifySignature in C#?
How do I configure my multithreaded .NET 6 application to use all Windows CPU groups?