ant-design-blazor/docs/getting-started.en-US.md
2020-11-03 00:49:13 +08:00

1.7 KiB

order title
1 Getting Started

Ant Design of Blazor is dedicated to providing a good development experience for programmers.

Before delving into Ant Design Blazor, a good knowledge of Blazor and .NET Core is needed.

First Local Development

During development, you may need to compile and debug .NET code, and even proxy some of the requests to mock data or other external services. All of these can be done with quick feedback provided through hot reloading of changes.

Such features, together with packaging the production version, are covered in this work flow.

Installation

We strongly recommended to develop Blazor with .NET Core SDK, you can install it form https://dotnet.microsoft.com/download.

Create a New Blazor WebAssembly Project

A new project can be created using .NET Core SDK.

$ dotnet new blazorwasm -o PROJECT-NAME

dotnet cli will run dotnet restore after a project is created. If it fails, you can run dotnet restore by yourself.

Development & Debugging

Run your project now.

$ dotnet run

Building & Deployment

$ dotnet publish -c release -o dist

Entry files will be built and generated in dist/wwwroot directory, where we can deploy it to different environments.

Install Ant Design Blazor

$ dotnet add package AntDesign

Import Styles

Use styles and JS

Import the styles and script in wwwroot/index.html

  <link href="_content/AntDesign/css/ant-design-blazor.css" rel="stylesheet" />
  <script src="_content/AntDesign/js/ant-design-blazor.js"></script>