this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update readme, include with package

+9 -1
+2 -1
Iconify/Iconify.csproj
··· 5 5 <Nullable>enable</Nullable> 6 6 <ImplicitUsings>enable</ImplicitUsings> 7 7 <PackageId>Iconify</PackageId> 8 - <Version>1.0.0</Version> 8 + <Version>1.0.1</Version> 9 9 <Authors>dylhack</Authors> 10 10 <PackageLicenseExpression>MIT</PackageLicenseExpression> 11 11 <GeneratePackageOnBuild>true</GeneratePackageOnBuild> ··· 15 15 <RepositoryUrl>https://github.com/dylhack/iconify</RepositoryUrl> 16 16 <RepositoryType>git</RepositoryType> 17 17 <PackageOutputPath>./nupkgs</PackageOutputPath> 18 + <PackageReadmeFile>../README.md</PackageReadmeFile> 18 19 </PropertyGroup> 19 20 20 21
+7
README.md
··· 1 1 Iconify for Blazor 2 2 3 + - Download an icon pack from [here](https://github.com/iconify/icon-sets/tree/master/json) 4 + - Add it to your project (ie. `Resources/Icons`) 5 + 6 + ```sh 7 + dotnet add package Iconify 8 + ``` 9 + 3 10 **Program.cs** 4 11 ```csharp 5 12 builder.Services.AddIconify(o => o.AddJsonFolder("Resources/Icons"));