Skip to content

Commit

Permalink
add package tags and descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
dombrovsky committed Jun 22, 2024
1 parent 2c830af commit 5490510
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
<RootNamespace>StrongTypeIdGenerator</RootNamespace>
<PackageId>StrongTypeIdGenerator.Abstractions</PackageId>
<IsPackable>true</IsPackable>

<PackageTags>string-id,guid-id,strong-typed-id,strongly-typed,identifier,source-generator,generator</PackageTags>
<Description>
StrongTypeIdGenerator is a source generator that helps you create strongly-typed identifiers in your C# projects. It supports Guid and string-based identifiers.

This package contains attributes and base types used by generated id types.
</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
<IncludeBuildOutput>false</IncludeBuildOutput>
<IncludeSymbols>false</IncludeSymbols>
<NoWarn>NU5128</NoWarn>

<PackageTags>string-id,guid-id,strong-typed-id,strongly-typed,identifier,source-generator,generator</PackageTags>
<Description>
StrongTypeIdGenerator is a source generator that helps you create strongly-typed identifiers in your C# projects. It supports Guid and string-based identifiers.

This is a meta-package that includes all necessary components to use StrongTypeIdGenerator in your project.
</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 6 additions & 0 deletions StrongTypeIdGenerator/StrongTypeIdGenerator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
<IsRoslynComponent>true</IsRoslynComponent>
<IsPackable>true</IsPackable>
<PackageId>StrongTypeIdGenerator.SourceGenerator</PackageId>
<PackageTags>string-id,guid-id,strong-typed-id,strongly-typed,identifier,source-generator,generator</PackageTags>
<Description>
StrongTypeIdGenerator is a source generator that helps you create strongly-typed identifiers in your C# projects. It supports Guid and string-based identifiers.

This package contains the source generator itself.
</Description>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 5490510

Please sign in to comment.