This topic describes how you can create a web application and what packages you need to install for the Design Atoms Framework. You can refer to a sample application demonstrating how you can use the Design Atoms Framework in the following GitHub repository:
Now, let us see how to create an application using the Design Atoms Framework from scratch.
Install-Package Aurigma.DesignAtoms
npm install @aurigma/design-atoms --save
Global.asax.cs
file:Aurigma.DesignAtoms.Configuration.Configuration.Setup(enableCors: true);
Aurigma.DesignAtoms.Licensing.License.Check();
App_Start\WebApiConfig.cs
file, remove this line:
config.MapHttpAttributeRoutes();
You don't need to call HttpConfigurationExtensions.MapHttpAttributeRoutes() here, because Aurigma.DesignAtoms.Configuration.Configuration.Setup calls this method.
Now, you can start using this framework and refer to the following topic for more details.