-
Notifications
You must be signed in to change notification settings - Fork 587
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nuget automatic version increment #1063
Conversation
This helper allow build script to auto increment nuget version
I think this should use our SemVer model |
Of course, you're right, I didn't see this model. |
@@ -0,0 +1,74 @@ | |||
[<AutoOpen>] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please remove the AutoOpen
Ok, I removed the AutoOpen and renamed nuget to NuGet. |
@@ -139,6 +139,7 @@ | |||
<Compile Include="NuGet\NugetHelper.fs" /> | |||
<Compile Include="NuGet\Update.fs" /> | |||
<Compile Include="NuGet\Install.fs" /> | |||
<Compile Include="NuGet\NugetVersion.fs" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here too ;-)
Nuget automatic version increment
Hi,
There is a small module I use to auto increment my nugets packages versions.
For example, we can get current published version of FAKE nuget with:
To auto increment a nuget, we can do this:
We can choose increment method with:
Regards