Skip to content

Commit

Permalink
Merge pull request #140 from akunzai/symbol-package
Browse files Browse the repository at this point in the history
Build symbol package and publish it to NuGet.org
  • Loading branch information
akunzai committed Apr 2, 2023
2 parents 29eb228 + 8e24f47 commit ba80030
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
- "release/*"
tags:
- "*"
# Allow manually triggering the workflow.
workflow_dispatch:

permissions: read-all

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
pull_request:
branches:
- main
# Allow manually triggering the workflow.
workflow_dispatch:

permissions: read-all

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## 2.6.1 (2023-04-02)

- [Build symbol package and publish it to NuGet.org](https://learn.microsoft.com/nuget/create-packages/symbol-packages-snupkg)
- [Enabling Central Package Management](https://learn.microsoft.com/nuget/consume-packages/central-package-management)

## 2.6.0 (2022-08-29)

- [Supports sending access token in form-encoded body or query parameter](https://www.rfc-editor.org/rfc/rfc6750#section-2.2)
Expand Down
5 changes: 3 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
<PropertyGroup>
<PackageProjectUrl>https://github.com/akunzai/GSS.Authorization.OAuth</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<Nullable>enable</Nullable>
<Version>2.6.0</Version>
<Version>2.6.1</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)' == 'Release' ">
Expand Down

0 comments on commit ba80030

Please sign in to comment.