FontAwesome Website: FontAwesome Website
Current FontAwesome Version: 6.4.0
Official FontAwesome Changelog: GitHub Changelog
Package Changelog: GitHub Changelog \
xmlns:fa="https://dsaladin.dev/products/fontawesome/wpf/xaml"
<Label fa:Content.Icon="SolidArrowUp" />
<Button fa:Content.Icon="SolidArrowUp" />
This package also contains two custom controls.
<fa:FontAwesomeBox Icon="SolidArrowUp" FlipOrientation="Horizontal" Rotation="10" />
<fa:FontAwesomeImage Icon="SolidArrowUp" />
The package uses nullable values (for example string?
), this was officially added in C# 8.0. This version (or higher) is used from .NET Core 3.x onwards.
In .NET Framework the default is C# 7.3. So in order to use the package you have to set the project language version to 8.0 (or higher).
- Open the .csproj file
- Add
<LangVersion>8.0</LangVersion>
to the PropertyGroup
For more information visit https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/configure-language-version