Start Visual Studio
Select File -> New -> Project…
In the New Project window select Visual C# -> .NET Core -> ASP.NET Core Web Application
Select a folder you want to create your project in, enter the project name and solution name
In the New ASP.NET Core Web Application window select the Web Application (Model-View-Controller) application type. Additionally, select the ASP.NET Core 2.1 Version. Click OK to confirm your choice.
After the project have been created, click with the right mouse button on the project name in the solution explorer and select Add -> Client-Side Library…
The Add Client-Side Library dialog will appear
In the Library field enter font-awesome and press Enter
The dialog will show you what files will be installed to what directories. You can choose specific files to install. For that, select the option Choose specific files and mark the files you want to install.
Click Install to install the library
Next, we have to reference the library to be able to make use of it in our views. Open the _Layout.cshtml file and add the following lines within the <environment include=”Development”> <environment> tags
<link rel="stylesheet" href="~/lib/font-awesome/css/font-awesome.css" />
And between the <environment exclude=”Development”><environment> tags add the following line
<link rel="stylesheet" href="~/lib/font-awesome/css/font-awesome.min.css" />
Now, you can use the font awesome in your views, for instance, like that
<i class="fa fa-users"></i>
No Min is provided in 5.8.2
Links need are now
Good Job!
Hi Anton:
I tried on VS 2019 16.2.0 with Web App Net Core 2.2 and Font Awesome 5.9.0 and didn’t work.
You can test creating a new Web App then installing Font Awesome; instead of icons it show a tiny empty square.
Can you please help me?
Hi, I have just tried it out with the same configuration. I have the same effect if I link the fontawesome.css file in the _Layout.cshtml. However, if I link the all.css file (), then everything works fine.
This just worked for me, thanks
I tried this on VS 2019 16.4.2 with Web App Net Core 3.0 and Font Awesome 5.11.2 and it worked.
it works with all.css
THX
Work like a charm. Thank you 🙂
Many thanks for taking efforts to write and share this solution, clear and simple way 🙂