📐Getting Started
Setup Able Pro .Net
Last updated
Setup Able Pro .Net
Last updated
Able Pro supports ASP.net Core 7. The following is a guide to quickly start using the template.
Make sure to have Visual Studio downloaded on your machine. Currently, Able Pro supports ASP.net Core 7 or newer.
Go to the root directory of the project and open AbleproDotNet.sln
solution file in Visual studio.
Make sure that you have already installed Nodejs and Gulp on your server/computer
Open the "Command prompt" and redirect to your project root directory.
Enter the command npm install
or yarn
in the command prompt.
After that, you need to run the below gulp
tasks to build a production-ready dist/ directory.
Gulp Command | Description |
---|---|
Gulp Command | Description |
---|---|
gulp
which build assets in wwwroot/
directory
gulp sass
which compile .scss files from /src/assets/scss
directory and place it into a /dist/assets/css
directory
gulp imgmin
which use to optimize images from /src/assets/images
directory and place it into a /dist/assets/images
directory
gulp build
which use to copy files from /src/assets
directory and place it into a /dist/assets
directory
gulp build-html
which uses compiling your HTML file from /src/html
directory and place it into a /dist
directory
gulp build-js
which use to build .js
files from /src/assets/js
directory and place it into a /dist/assets/js
directory