Skip to content

Commit 643d458

Browse files
Add icon and update nuget metadata (dotnet#2433)
* Add icon and update nuget metadata * streamline into build props
1 parent 1ccfa12 commit 643d458

File tree

6 files changed

+9
-1
lines changed

6 files changed

+9
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![YARP_96x](https://user-images.githubusercontent.com/219224/171533159-51879bda-9f70-42a9-8fa5-95656e45be24.png)
1+
![YARP Icon](assets/icon.png)
22
# Welcome to the YARP project
33

44
YARP (which stands for "Yet Another Reverse Proxy") is a project to create a reverse proxy server. We found a bunch of internal teams at Microsoft who were either building a reverse proxy for their service or had been asking about APIs and tech for building one, so we decided to get them all together to work on a common solution, this project.

assets/icon.png

3.49 KB
Loading

src/Directory.Build.props

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,10 @@
77
<IsShipping>true</IsShipping>
88
<IsPackable>true</IsPackable>
99
<GenerateDocumentationFile>true</GenerateDocumentationFile>
10+
<PackageIcon>icon.png</PackageIcon>
1011
</PropertyGroup>
12+
13+
<ItemGroup>
14+
<None Include="..\..\assets\icon.png" PackagePath="icon.png" Pack="true" />
15+
</ItemGroup>
1116
</Project>

src/Kubernetes.Controller/Yarp.Kubernetes.Controller.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<NoWarn>$(NoWarn);CS8002</NoWarn>
88
<IsPackable>true</IsPackable>
99
<IsShipping>false</IsShipping>
10+
<PackageTags>yarp;dotnet;reverse-proxy;aspnetcore;kubernetes</PackageTags>
1011
</PropertyGroup>
1112

1213
<ItemGroup>

src/ReverseProxy/Yarp.ReverseProxy.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<Nullable>enable</Nullable>
1010
<IsAotCompatible>true</IsAotCompatible>
1111
<PackageReadmeFile>README.md</PackageReadmeFile>
12+
<PackageTags>yarp;dotnet;reverse-proxy;aspnetcore</PackageTags>
1213
</PropertyGroup>
1314

1415
<ItemGroup>

src/TelemetryConsumption/Yarp.Telemetry.Consumption.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<Nullable>enable</Nullable>
99
<IsAotCompatible>true</IsAotCompatible>
1010
<PackageReadmeFile>README.md</PackageReadmeFile>
11+
<PackageTags>yarp;dotnet;reverse-proxy;aspnetcore;telemetry</PackageTags>
1112
</PropertyGroup>
1213

1314
<ItemGroup>

0 commit comments

Comments
 (0)