IconPacks.MaterialCommunity 1.0.9521.9-build

This is a prerelease version of IconPacks.MaterialCommunity.
dotnet add package IconPacks.MaterialCommunity --version 1.0.9521.9-build
                    
NuGet\Install-Package IconPacks.MaterialCommunity -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.MaterialCommunity" 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.MaterialCommunity" Version="1.0.9521.9-build" />
                    
Directory.Packages.props
<PackageReference Include="IconPacks.MaterialCommunity" />
                    
Project file
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.MaterialCommunity --version 1.0.9521.9-build
                    
#r "nuget: IconPacks.MaterialCommunity, 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.MaterialCommunity@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.MaterialCommunity&version=1.0.9521.9-build&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=IconPacks.MaterialCommunity&version=1.0.9521.9-build&prerelease
                    
Install as a Cake Tool

IconPacks.NET

Awesome icon packs for .NET

Category Package
Feather Nuget (with prereleases)
fluentui-system-icons Nuget (with prereleases)
FontAwesome free Nuget (with prereleases)
Heroicons Nuget (with prereleases)
Ionicons Nuget (with prereleases)
lucide-icons Nuget (with prereleases)
Material-design-icons(google) Nuget (with prereleases)
MaterialDesign(community) Nuget (with prereleases)
RemixIcon Nuget (with prereleases)
Tabler-icons Nuget (with prereleases)

IconPacks showcase

The showcase app for all available icon packs is available here.

showcase

Usage

Using IconPacks.Feather as an example.

WPF

  1. Install Package
dotnet add package IconPacks.Feather
dotnet add package IconPacks.Generator
  1. Add a new class to your project.
namespace WpfApp.FeatherIcons;

[IconPacks.Generator.WpfGeometryConverter(typeof(IconPacks.Feather.Regular))]
public static partial class Regular { }
  1. 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

  1. Install Package
dotnet add package IconPacks.Feather
dotnet add package IconPacks.Generator
  1. Add a new class to your project.
namespace AvaloniaApp.FeatherIcons;

[IconPacks.Generator.AvaloniaGeometryConverter(typeof(IconPacks.Feather.Regular))]
public static partial class Regular { }
  1. 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

  1. Install Package
dotnet add package IconPacks.Feather
  1. 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.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in 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 39 1/25/2026
1.0.9518.9-build 39 1/22/2026
1.0.9518.5-build 41 1/22/2026
1.0.9516.15-build 36 1/20/2026
1.0.8940.2-build 147 6/23/2024
1.0.8933.2-build 117 6/16/2024
1.0.8926.2-build 115 6/9/2024
1.0.8919.2-build 114 6/2/2024
1.0.8912.2-build 102 5/26/2024
1.0.8905.1-build 109 5/19/2024
1.0.8898.1-build 119 5/12/2024
1.0.8891.1-build 123 5/5/2024
1.0.8884.1-build 104 4/28/2024
1.0.8878.19-build 129 4/22/2024
1.0.8878.13-build 106 4/22/2024
1.0.8807.17-build 157 2/11/2024
1.0.8800.1-build 112 2/4/2024
1.0.8793.1-build 110 1/28/2024
1.0.8786.1-build 120 1/21/2024
1.0.8779.2-build 126 1/14/2024
1.0.8772.1-build 135 1/7/2024
1.0.8765.1-build 127 12/31/2023
1.0.8758.1-build 133 12/24/2023
1.0.8751.1-build 142 12/17/2023
1.0.8744.1-build 130 12/10/2023
1.0.8737.1-build 141 12/3/2023
1.0.8732.5-build 147 11/28/2023
1.0.8730.1-build 124 11/26/2023
1.0.8723.1-build 117 11/19/2023
1.0.8716.1-build 117 11/12/2023
1.0.8709.1-build 122 11/5/2023
1.0.8702.1-build 132 10/29/2023
1.0.8695.1-build 130 10/22/2023
1.0.8688.1-build 130 10/15/2023
1.0.8681.1-build 136 10/8/2023
1.0.8674.1-build 140 10/1/2023
1.0.8667.1-build 143 9/24/2023
1.0.8660.1-build 131 9/17/2023
1.0.8653.6-build 145 9/10/2023
1.0.8625.1-build 162 8/13/2023
1.0.8618.1-build 178 8/6/2023
1.0.8611.2-build 163 7/30/2023
1.0.8604.2-build 186 7/23/2023
1.0.8597.2-build 167 7/16/2023
1.0.8590.2-build 172 7/9/2023
1.0.8583.2-build 172 7/2/2023
1.0.8576.2-build 186 6/25/2023
1.0.8569.2-build 176 6/18/2023
1.0.8562.2-build 178 6/11/2023
1.0.8555.2-build 201 6/4/2023
1.0.8552.12-build 183 6/1/2023
1.0.8548.2-build 189 5/28/2023
1.0.8541.2-build 186 5/21/2023
1.0.8534.2-build 177 5/14/2023
1.0.8527.2-build 186 5/7/2023
1.0.8520.2-build 194 4/30/2023
1.0.8513.2-build 195 4/23/2023
1.0.8506.2-build 181 4/16/2023
1.0.8499.2-build 202 4/9/2023
1.0.8492.2-build 199 4/2/2023
1.0.8485.2-build 209 3/26/2023
1.0.8478.2-build 219 3/19/2023
1.0.8471.2-build 196 3/12/2023
1.0.8464.2-build 197 3/5/2023
1.0.8457.2-build 222 2/26/2023
1.0.8450.2-build 206 2/19/2023
1.0.8443.2-build 215 2/12/2023
1.0.8442.4-build 201 2/11/2023