Skip to content

Commit

Permalink
Update NuGet package metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
firenero committed Aug 9, 2023
1 parent 895253f commit 42a5815
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
run: |
dotnet pack --no-build -c Release ./TypeId.Core -o .
dotnet nuget push *.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate --no-symbols
dotnet nuget push *.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate
2 changes: 1 addition & 1 deletion .github/workflows/build-serialization-jsonnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
run: |
dotnet pack --no-build -c Release ./TypeId.Serialization.JsonNet -o .
dotnet nuget push *.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate --no-symbols
dotnet nuget push *.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate
2 changes: 1 addition & 1 deletion .github/workflows/build-serialization-textjson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
run: |
dotnet pack --no-build -c Release ./TypeId.Serialization.SystemTextJson -o .
dotnet nuget push *.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate --no-symbols
dotnet nuget push *.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,14 @@
<PackageId>FastIDs.TypeId.Serialization.JsonNet</PackageId>
<Description>Json.NET serialization helpers for FastIDs.TypeId</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageTags>dotnet,c#,json,jsonnet</PackageTags>
<RepositoryUrl>https://github.com/firenero/TypeId</RepositoryUrl>
<PackageTags>guid,uuid,id,typeid,type-id,uuid7,identifiers,json,jsonnet,serialization</PackageTags>
<PackageProjectUrl>https://github.com/firenero/TypeId</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>Mykhailo Matviiv</Authors>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Copyright>Copyright (c) Mykhailo Matviiv 2023.</Copyright>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,14 @@
<PackageId>FastIDs.TypeId.Serialization.SystemTextJson</PackageId>
<Description>System.Text.Json serialization helpers for FastIDs.TypeId</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageTags>dotnet,c#,json</PackageTags>
<RepositoryUrl>https://github.com/firenero/TypeId</RepositoryUrl>
<PackageTags>guid,uuid,id,typeid,type-id,uuid7,identifiers,json,jsonnet,serialization</PackageTags>
<PackageProjectUrl>https://github.com/firenero/TypeId</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>Mykhailo Matviiv</Authors>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Copyright>Copyright (c) Mykhailo Matviiv 2023.</Copyright>
</PropertyGroup>

<ItemGroup>
Expand Down
20 changes: 17 additions & 3 deletions src/FastIDs.TypeId/TypeId.Core/TypeId.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,32 @@

<PackageId>FastIDs.TypeId</PackageId>
<Title>High-performance TypeId implementation</Title>
<Description>High-performance TypeId .NET library</Description>
<Description>
High-performance dotnet implementation of type-safe, K-sortable, globally unique identifier inspired by Stripe IDs
</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageTags>dotnet,c#</PackageTags>
<RepositoryUrl>https://github.com/firenero/TypeId</RepositoryUrl>
<PackageTags>guid,uuid,id,typeid,type-id,uuid7,identifiers</PackageTags>
<PackageProjectUrl>https://github.com/firenero/TypeId</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>Mykhailo Matviiv</Authors>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Copyright>Copyright (c) Mykhailo Matviiv 2023.</Copyright>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="MinVer" Version="4.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="UUIDNext" Version="2.0.2" />

<None Include="../../../README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<PropertyGroup>
Expand Down

0 comments on commit 42a5815

Please sign in to comment.