Skip to content

Commit 8093b56

Browse files
authored
Feature/add package icon (#53)
* Add package/project icon (Kiranshastry, https://www.flaticon.com/authors/kiranshastry) * Change path where icon is stored within package (under _img)
1 parent 92f2fcf commit 8093b56

File tree

6 files changed

+14
-1
lines changed

6 files changed

+14
-1
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -132,3 +132,7 @@ public void ConfigureServices(IServiceCollection services)
132132
- [Dependency injection](docs/registration.md) registration
133133
- [Components](docs/components.md) description
134134
- [Alternative packages and further reading](docs/alternatives.md)
135+
136+
---
137+
138+
Icon made by [Kiranshastry](https://www.flaticon.com/authors/kiranshastry) from [Flaticon, www.flaticon.com](https://www.flaticon.com/)

images/LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Icon made by Kiranshastry (https://www.flaticon.com/authors/kiranshastry) from https://www.flaticon.com/

images/correlator.svg

+1
Loading

images/correlator_128px.png

10.6 KB
Loading

images/correlator_512px.png

39.4 KB
Loading

src/W4k.AspNetCore.Correlator/W4k.AspNetCore.Correlator.csproj

+8-1
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,11 @@
2828
for forwarding correlation ID to subsequent requests.
2929
</Description>
3030
<PackageId>W4k.AspNetCore.Correlator</PackageId>
31-
<PackageTags>aspnetcore, correlation, correlation-id, correlationid, request-id, requestid</PackageTags>
31+
<PackageTags>aspnetcore, correlation, correlationid, correlate, requestid, tracing</PackageTags>
3232
<PackageProjectUrl>https://github.com/wdolek/w4k-aspnetcore-correlator</PackageProjectUrl>
3333
<PackageLicenseExpression>MIT</PackageLicenseExpression>
34+
<PackageIconUrl>https://github.com/wdolek/w4k-aspnetcore-correlator/blob/master/images/correlator_128px.png</PackageIconUrl>
35+
<PackageIcon>_img/correlator_128px.png</PackageIcon>
3436
<RepositoryUrl>https://github.com/wdolek/w4k-aspnetcore-correlator.git</RepositoryUrl>
3537
<RepositoryType>git</RepositoryType>
3638
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
@@ -66,4 +68,9 @@
6668
<CodeAnalysisRuleSet>$(ProjectDir)../../ca.ruleset</CodeAnalysisRuleSet>
6769
</PropertyGroup>
6870

71+
<ItemGroup>
72+
<None Include="$(ProjectDir)../../images/correlator_128px.png" Pack="true" PackagePath="_img/" Visible="false" />
73+
<None Include="$(ProjectDir)../../images/LICENSE" Pack="true" PackagePath="_img/" Visible="false" />
74+
</ItemGroup>
75+
6976
</Project>

0 commit comments

Comments
 (0)