-
I currently use
How do I modify my Or am I barking up the wrong tree? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I'm not sure
MinVer works in the opposite way. It extracts the version from a tag, and provides it to the .NET SDK as an MSBuild property. I.e. the workflow is: tag the repo->build the project. Also, MinVer doesn't do any building or pushing to NuGet. It's purely a versioning package. If you want to use MinVer, it may be better to drop |
Beta Was this translation helpful? Give feedback.
-
Thanks. Can you point me at a sample that uses I have no deep need to stick with |
Beta Was this translation helpful? Give feedback.
I'm not sure
brandedoutcast/publish-nuget
is well suited to work with MinVer.brandedoutcast/publish-nuget
seems to extract the version from a repository artifact (VERSION_FILE_PATH
), build the package, and then tag the repo with the version. I.e. the workflow is: update the artifact->build the project->tag the repo.MinVer works in the opposite way. It extracts the version from a tag, and provides it to the .NET SDK as an MSBuild property. I.e. the workflow is: tag the repo->build the project. Also, MinVer doesn't do any building or pushing to NuGet. It's purely a versioning package.
If you want to use MinVer, it may be better to drop
brandedoutcast/publish-nuget
. They seem like two inco…