IconPacks.Generator
1.0.9521.9-build
This is a prerelease version of IconPacks.Generator.
dotnet add package IconPacks.Generator --version 1.0.9521.9-build
NuGet\Install-Package IconPacks.Generator -Version 1.0.9521.9-build
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="IconPacks.Generator" Version="1.0.9521.9-build" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="IconPacks.Generator" Version="1.0.9521.9-build" />
<PackageReference Include="IconPacks.Generator" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add IconPacks.Generator --version 1.0.9521.9-build
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: IconPacks.Generator, 1.0.9521.9-build"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package IconPacks.Generator@1.0.9521.9-build
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=IconPacks.Generator&version=1.0.9521.9-build&prerelease
#tool nuget:?package=IconPacks.Generator&version=1.0.9521.9-build&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
IconPacks.NET
Awesome icon packs for .NET
| Category | Package |
|---|---|
| Feather | |
| fluentui-system-icons | |
| FontAwesome free | |
| Heroicons | |
| Ionicons | |
| lucide-icons | |
| Material-design-icons(google) | |
| MaterialDesign(community) | |
| RemixIcon | |
| Tabler-icons |
IconPacks showcase
The showcase app for all available icon packs is available here.
![]()
Usage
Using IconPacks.Feather as an example.
WPF
- Install Package
dotnet add package IconPacks.Feather
dotnet add package IconPacks.Generator
- Add a new class to your project.
namespace WpfApp.FeatherIcons;
[IconPacks.Generator.WpfGeometryConverter(typeof(IconPacks.Feather.Regular))]
public static partial class Regular { }
- Now you can use it in XAML.
<Window
...
xmlns:feather="clr-namespace:WpfApp.FeatherIcons"
...
>
<Grid>
<Path
Width="96"
Height="96"
Data="{x:Static feather:Regular.Activity}"
Fill="Red"
Stretch="Uniform" />
</Grid>
</Window>
Avalonia
- Install Package
dotnet add package IconPacks.Feather
dotnet add package IconPacks.Generator
- Add a new class to your project.
namespace AvaloniaApp.FeatherIcons;
[IconPacks.Generator.AvaloniaGeometryConverter(typeof(IconPacks.Feather.Regular))]
public static partial class Regular { }
- Now you can use it in XAML.
<Window
...
xmlns:feather="using:AvaloniaApp.FeatherIcons"
...
>
<Grid>
<Path
Width="96"
Height="96"
Data="{x:Static feather:Regular.Activity}"
Fill="Red"
Stretch="Uniform" />
</Grid>
</Window>
MAUI
- Install Package
dotnet add package IconPacks.Feather
- Now you can use it in XAML.
<ContentPage
...
xmlns:feather="clr-namespace:IconPacks.Feather;assembly=IconPacks.Feather"
...
>
<Grid>
<Path
Width="96"
Height="96"
Data="{x:Static feather:Regular.Activity}"
Fill="Red"
Stretch="Uniform" />
</Grid>
</ContentPage>
License
Each icon library has its own license. Please refer to its project directory for details.
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.9521.9-build | 64 | 1/25/2026 |
| 1.0.9519.7-build | 56 | 1/23/2026 |