versionone / VersionOne.Client.VisualStudio

View and update VersionOne work items directly from Visual Studio
http://versionone.github.io/VersionOne.Client.VisualStudio
BSD 3-Clause "New" or "Revised" License
2 stars 10 forks source link

Consistent version number for build and vsixmanifest #11

Closed ibuchanan closed 11 years ago

ibuchanan commented 11 years ago

The vsixmanifest requires a version number. The build.sh script also requires a version number (from the build.properties). Most of the .NET build jobs in Jenkins grab the version number from the build.properties and use it for things not in the build.sh like naming the distribution zip or the git tag.

Some possible solutions:

MatiasHeffel commented 11 years ago

we take care of this

JogoShugh commented 11 years ago

Here's an example of how we generate the AssemblyInfo.cs file: https://github.com/versionone/VersionOne.SDK.NET.APIClient/blob/master/build.sh

davidhaimovich commented 11 years ago

Story: As a Developer I should set the build version in one place, and the version should be present in all places where the version is needed.

Description: Modify build.sh in order to generate vsixmanifest with the version taken from the build.properties.

Acceptance Criteria:

JogoShugh commented 11 years ago