version-numbering

Xamarin mobile app version number scheme across 3 platforms

南笙酒味 提交于 2019-12-20 10:29:48
问题 There's probably multiple questions here all related. I'm trying to come up with a simple version number update scheme for our 3 mobile apps built from a single xamarin solution. What I'm looking for is a simple way to keep all these values in sync with one another without having to go around and update them all individually. Windows Phone Version should get set to the AssemblyVersion or FileVersion Automatically IOS Version Number should be set to same. (not sure what the build number should

Looking for a way automate the “bump version” with git flow

浪子不回头ぞ 提交于 2019-12-18 11:04:39
问题 I have been using git flow for a couple of months and it has worked very well. I would like to automate the "bump version" operation. The project is PHP and the footer.php has a token to replace with the current release tag. I am certain that with some awk'ing of git log and the PHP file everything should work out, but I assume someone has done this before... Any ideas? 回答1: You could use the semver gem, which adds a file .semver to the root of your git repo. Semantic version numbers are a

Setting Teamcity version number with counter from file

做~自己de王妃 提交于 2019-12-13 12:12:14
问题 I'm currently trying to update the version no. in TeamCity using a Nant build file, containing the version number. If I just use <property name="versionNo" value="2.16.3."/> . . <echo message="##teamcity[buildNumber '${versionNo}']"></echo> In the script the buildNumber is update to 2.16.3 but I would also like to have the counter on this version number. Meaning I would like to have <echo message="##teamcity[buildNumber '${versionNo}.{0}']"></echo> But this doesn't work. Does anybody know how

Where the data-tier application version number is stored in a Visual Studio project?

↘锁芯ラ 提交于 2019-12-12 11:22:42
问题 I have an utility which fills version numbers in AssemblyInfo.cs files. Now I need to implement a functionality to adjust version numbers for Visual Studio Data-Tier applications (DACPAC). I see that I can adjust the number manually if I open project properties and click the Data-Tier application Properties button. But I cannot find where this number is stored in project files, so I have no idea how to update it automatically from my utility. Do you know, where is the version number stored?

Anyway to create a custom MSBuild property in WIX wxs file?

*爱你&永不变心* 提交于 2019-12-08 02:56:25
问题 My target is to auto-name the output msi file with version number in WIX 3.6 project. I find this link: Automated installer version numbers for WiX, revisited but we have a slightly different scenario: we don't want to control our product version number by referencing to any assembly's version number. Instead, we just simply want to assign it in wix files. Specifically, I have a wxi file which defines a property like this: <?define VersionNumber = "1.1.2000" ?> As a result, I can use this

Setting Teamcity version number with counter from file

China☆狼群 提交于 2019-12-04 15:41:57
I'm currently trying to update the version no. in TeamCity using a Nant build file, containing the version number. If I just use <property name="versionNo" value="2.16.3."/> . . <echo message="##teamcity[buildNumber '${versionNo}']"></echo> In the script the buildNumber is update to 2.16.3 but I would also like to have the counter on this version number. Meaning I would like to have <echo message="##teamcity[buildNumber '${versionNo}.{0}']"></echo> But this doesn't work. Does anybody know how to do this, tried many things among this solution http://binary-notes.blogspot.com/2011/05/controlling

How to set complete build number in VB6 (Major.Minor.Build.Revision)

丶灬走出姿态 提交于 2019-12-04 03:35:20
问题 How to set the complete version number from vb6 ( VPIaccessMaker.vbg ),from Visual Basic i can set Major.Minor.Revision as 3.2.2 in that case my exe version will be 3.2.0.2.How to set build number in this case like 3.2.1.2 . 回答1: You can use the vbAdvance add-in which allows the setting of the version build. It is now freeware, but no longer supported. You can learn more and download it here. 回答2: Answer is you can't with native VB6. Note that you can do this in VB.NET but not in VB6 - See

What every digit means in software version (1.7.1.0, for example)?

最后都变了- 提交于 2019-12-03 18:22:32
问题 What could every digit mean in software version? (for example, 1.7.1.0) How do you numerate your versions? Thank you. 回答1: It differs from vendor to vendor really. Most commonly, they are (in order): Major release number Minor release number Maintenance release number (bugfixes only) If used at all: build number (or source control revision number) 1.7.1.0 would this be the first maintenance release to the 1.7 version of the product. Even defining what the difference between a major and minor

How to automate version number update process for my Eclipse plugin built with Maven

a 夏天 提交于 2019-12-03 10:31:16
I working with a project similar to the project described here . So, it has a few modules in parent pom.xml: <modules> <module>../de.vogella.tycho.plugin</module> <module>../de.vogella.tycho.feature</module> <module>../de.vogella.tycho.p2updatesite</module> </modules> These modules have a general version number e.g. 1.0.0-SNAPSHOT or without -SNAPSHOT . The feature.xml file needs to contain the same version number: <feature id="com.my.feature" label="My plugin feature" version="1.0.0"> and: <plugin id="com.my.plugin" download-size="0" install-size="0" version="1.0.0" unpack="false"/> The files

Check what version of the app is being used [duplicate]

╄→尐↘猪︶ㄣ 提交于 2019-12-03 05:32:08
问题 This question already has answers here : Closed 8 years ago . Possible Duplicate: How to display the current project version of my App to the user? Is there a way to check the version number of my app? Is it supplied somewhere once the app is in the App Store? 回答1: I believe this is included in your info.plist file, and can be retrieved with code like this: [NSString stringWithFormat:@"Version %@",[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"]]; 来源: https:/