Adds publishing Abstractions to NuGet. Closes #1248#1615
Open
waldekmastykarz wants to merge 2 commits intodotnet:mainfrom
Open
Adds publishing Abstractions to NuGet. Closes #1248#1615waldekmastykarz wants to merge 2 commits intodotnet:mainfrom
waldekmastykarz wants to merge 2 commits intodotnet:mainfrom
Conversation
Collaborator
Author
|
Let's wait with merging until we setup the NuGet key |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds NuGet packaging/publishing support for DevProxy.Abstractions so plugin authors can consume the public abstractions as a standalone package, and updates the release workflow to publish it from version tags.
Changes:
- Mark
DevProxyandDevProxy.Pluginsas non-packable and configureDevProxy.Abstractionsas packable with NuGet metadata + packaged README/icon. - Add an
DevProxy.Abstractions/README.mdintended to be used as the NuGet package readme. - Extend the release workflow to
dotnet packand pushDevProxy.Abstractionsto NuGet using the version derived from the git tag.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| DevProxy/DevProxy.csproj | Disables NuGet packing for the main executable project. |
| DevProxy.Plugins/DevProxy.Plugins.csproj | Disables NuGet packing for the plugins project. |
| DevProxy.Abstractions/README.md | Adds package README content and a “getting started” example for plugin authors. |
| DevProxy.Abstractions/DevProxy.Abstractions.csproj | Adds NuGet package metadata and includes README/icon in the nupkg. |
| .github/workflows/create-release.yml | Adds a job to pack and push DevProxy.Abstractions to NuGet on tag releases. |
… Version on pack, add --skip-duplicate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds publishing Abstractions to NuGet. Closes #1248