You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, BuildVersionNumber is used for the last digit of both:
The individual module nuget packages (if you are producing those)
The solution level nuget package version number (if you are producing that)
However for 1) - its assumed to be a integer and is appended as a 4th segment, to the existing 3 segment version in the module manifest - to produce a valid 4 segment nuget package version number.
But for 2) it's just used as is, in which case a single digit number isn;t a valid NuGet package version - so attempting to produce a solution nuget package won;t work unless you pass in a BuildVersionNumber like 1.0.1 or something valid.
Rather than using the 'BuildVersionNumber' for both those scenarios, I'm going to change it so that the BuildVersionNumber is only used for 1)
I will introduce a seperate msbuild property that must be set in order to control the solution level nuget deployment pacakge version number.
Run the following to replicate the problem - i.e 12345 isn't valid for the NuGet solution package version number
This "Solution NuGet Package" feature is currently on hold whilst #15 is done.
I might look to remove this feature in v2 and then re-implement it in a nicer way if anyone actually requires it.
At the moment,
BuildVersionNumber
is used for the last digit of both:However for 1) - its assumed to be a integer and is appended as a 4th segment, to the existing 3 segment version in the module manifest - to produce a valid 4 segment nuget package version number.
But for 2) it's just used as is, in which case a single digit number isn;t a valid NuGet package version - so attempting to produce a solution nuget package won;t work unless you pass in a
BuildVersionNumber
like 1.0.1 or something valid.Rather than using the 'BuildVersionNumber' for both those scenarios, I'm going to change it so that the
BuildVersionNumber
is only used for 1)I will introduce a seperate msbuild property that must be set in order to control the solution level nuget deployment pacakge version number.
Run the following to replicate the problem - i.e 12345 isn't valid for the NuGet solution package version number
The text was updated successfully, but these errors were encountered: