Skip to content

Commit 55b6df1

Browse files
committed
Add a NuGet icon and package tags
Fixes #54 Signed-off-by: Jon Skeet <[email protected]>
1 parent 5910e8b commit 55b6df1

File tree

10 files changed

+15
-3
lines changed

10 files changed

+15
-3
lines changed

nuget-icon.png

4.07 KB
Loading

src/CloudNative.CloudEvents.Amqp/CloudNative.CloudEvents.Amqp.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Description>AMQP extensions for CloudNative.CloudEvents</Description>
66
<LangVersion>8.0</LangVersion>
7+
<PackageTags>cncf;cloudnative;cloudevents;events;amqp</PackageTags>
78
</PropertyGroup>
89

910
<ItemGroup>

src/CloudNative.CloudEvents.AspNetCore/CloudNative.CloudEvents.AspNetCore.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Description>ASP.Net Core extensions for CloudNative.CloudEvents</Description>
6+
<PackageTags>cncf;cloudnative;cloudevents;events;aspnetcore;aspnet</PackageTags>
67
</PropertyGroup>
78

89
<ItemGroup>

src/CloudNative.CloudEvents.Avro/CloudNative.CloudEvents.Avro.csproj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Description>Avro extensions for CloudNative.CloudEvents</Description>
6-
<Copyright>Copyright Cloud Native Foundation</Copyright>
7-
<RepositoryUrl>https://github.com/cloudevents/sdk-csharp</RepositoryUrl>
8-
<PackageProjectUrl>https://cloudevents.io</PackageProjectUrl>
6+
<PackageTags>cncf;cloudnative;cloudevents;events;avro</PackageTags>
97
</PropertyGroup>
108

119
<ItemGroup>

src/CloudNative.CloudEvents.Kafka/CloudNative.CloudEvents.Kafka.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Description>Kafka extensions for CloudNative.CloudEvents</Description>
6+
<PackageTags>cncf;cloudnative;cloudevents;events;kafka</PackageTags>
67
</PropertyGroup>
78

89
<ItemGroup>

src/CloudNative.CloudEvents.Mqtt/CloudNative.CloudEvents.Mqtt.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Description>MQTT extensions for CloudNative.CloudEvents</Description>
6+
<PackageTags>cncf;cloudnative;cloudevents;events;mqtt</PackageTags>
67
</PropertyGroup>
78

89
<ItemGroup>

src/CloudNative.CloudEvents.NewtonsoftJson/CloudNative.CloudEvents.NewtonsoftJson.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Description>JSON support for the CNCF CloudEvents SDK, based on Newtonsoft.Json.</Description>
66
<LangVersion>8.0</LangVersion>
7+
<PackageTags>cncf;cloudnative;cloudevents;events;json;newtonsoft</PackageTags>
78
</PropertyGroup>
89

910
<ItemGroup>

src/CloudNative.CloudEvents.SystemTextJson/CloudNative.CloudEvents.SystemTextJson.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Description>JSON support for the CNCF CloudEvents SDK, based on System.Text.Json.</Description>
66
<LangVersion>8.0</LangVersion>
7+
<PackageTags>cncf;cloudnative;cloudevents;events;json;systemtextjson</PackageTags>
78
</PropertyGroup>
89

910
<ItemGroup>

src/CloudNative.CloudEvents/CloudNative.CloudEvents.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Description>CNCF CloudEvents SDK</Description>
66
<LangVersion>8.0</LangVersion>
7+
<PackageTags>cloudnative;cloudevents;events</PackageTags>
78
</PropertyGroup>
89

910
<ItemGroup>

src/Directory.Build.props

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,18 @@
2020
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
2121
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2222
<EmbedUntrackedSources>true</EmbedUntrackedSources>
23+
<PackageIcon>nuget-icon.png</PackageIcon>
2324

2425
<RepositoryType>git</RepositoryType>
2526
<RepositoryUrl>https://github.com/cloudevents/sdk-csharp</RepositoryUrl>
2627
<PackageLicenseFile>LICENSE</PackageLicenseFile>
2728
<PackageProjectUrl>https://cloudevents.io</PackageProjectUrl>
2829
<Copyright>Copyright Cloud Native Foundation</Copyright>
2930
</PropertyGroup>
31+
32+
<!-- Package the icon specified in the PackageIcon property -->
33+
<ItemGroup>
34+
<None Include="$(RepoRoot)\nuget-icon.png" Pack="true" PackagePath=""/>
35+
</ItemGroup>
36+
3037
</Project>

0 commit comments

Comments
 (0)