Questions tagged [auto-versioning]
52 questions
2
votes
2 answers
Does NHibernate update version on select?
I have a very simple mapping like:
public abstract class EntityMap : ClassMap
where TEnt: Entity
where TDto : DataTransferObject
{
protected EntityMap()
{
Id(x =>…

halcwb
- 1,480
- 1
- 13
- 26
2
votes
1 answer
PHP Get version from url
How can I download the versions from the link? I tried to do it with regEx but it didn't work as I wanted.
I wish it would work like this (Where I gave NULL, there is nothing to choose…

Kondzio
- 43
- 6
2
votes
0 answers
.NET Core assemby auto-versioning works in assemblyInfo.cs but not in project file
I have read several posts about versioning assemblies in .NET Core. I have .NET Framework assemblies that use the auto-versioning where, in assemblyInfo.cs, I set the [assembly: AssemblyVersion("2.1.*")] attribute. When I build the assembly I can…

Zoe
- 856
- 1
- 9
- 22
2
votes
1 answer
Modifying AndroidManifest.xml with build tag causes infinite rebuilding in Eclipse
I've added a tagging / date-stamping system to my Android build system similar to the thread found here on Stack Overflow: embed version details in android APK
This worked out great for me, The post was awesome and I simply modified the Perl to put…

Dan Devine
- 859
- 1
- 8
- 19
1
vote
1 answer
NHIbernate bidirectional many to many mapping insert update problem
I have a class called Shape that has a many to many relation with Package. The meaning of this bidirectional relation is that if a Product has a certain Shape, it can be Packaged by the Packages the Shape is associated with. The also applies to the…

halcwb
- 1,480
- 1
- 13
- 26
1
vote
1 answer
Automatic versioning dependencies in child modules using parent pom, Java+maven
I have 3 repositories. In one there is parent-pom.xml, which is a parent for A1 and B1 repository. The B1 repository also has A1-repository in dependencies. If I change the version in parent-pom.xml, I have to manually change it also in A1-pom.xml…

Alice Victoria
- 47
- 4
1
vote
2 answers
How to auto increase versioning so that browser can automatically reload the JS/CSS files without having to clear the cache manually
I am totally new in React Js. Currently I need to auto update the version number whenever I build so that the browser can automatically reload the JS/CSS files without having to clear the cache manually. Is there any way to do this? I searched but…

user3431310
- 719
- 1
- 10
- 30
1
vote
0 answers
Is there a way to Automate Assembly Versioning upon Merging into a Source Control Development Branch?
Given I have some C# and C++ libraries in a GIT repository and I have a "Development" branch from which all feature and bug fix branches are derived.
How can I make it so that when a developer merges their feature/bug-fix branch into "Development"…

Matt Arnold
- 668
- 2
- 8
- 21
1
vote
0 answers
How to Auto Increment React Native Apps Version in Gitlab or App Center
We are using Gitlab for our VCS and pushing code to App Center; Gitlab-ci.yml will only perform security checks and run unit tests on shared runners then App Center would pickup the builds where it will build and deploy both iOS and Android apps to…

Jamal
- 11
- 2
1
vote
1 answer
Auto-increment build number using Ant
We have ccnet+tfs+ant
I need to configure automation build process for android application with auto increment build version, based on tfs changeset number.In build process Version number taking from androidmanifest.xml.
Is this possible to…

mirakl
- 167
- 3
- 14
1
vote
2 answers
Create an automatic history (version control) of my emacs org-mode files
I love Emacs org-mode but I sometimes wish I could tell when I wrote a specific line or made a specific change.
It would be great to have an automatic versioning mechanism that would keep track of all the changes (or deltas), say every hours and…

Jerome Provensal
- 931
- 11
- 22
1
vote
2 answers
Automated versioning of files in file share?
We have a file share on a debian server which people will be putting mostly small plain text, word, excel, pdf, misc, files into. We want to keep file level versioning of everything placed in that file share. We'd like all of the versioning to…

caleban
- 749
- 1
- 10
- 16
1
vote
0 answers
How to do cache management with automatic versioning on static files in ASP.NET?
Cache is not refreshed after deployment of an asp.net project. According to my research there are few ways to do this. But i am interested in a way that is automatic versioning on static files like js, css etc. I googled for this goal and i found…

Ceylan B.
- 564
- 9
- 23
1
vote
3 answers
How can I update a revision number in a not modified file for every commit having also this file committed?
I have a revision.txt file in my SVN project.
Basically I want that this file is updated automatically when I call svn ci with the revision number the working copy will have after the commit.
For example:
revision.txt contains "10"
I make some…

yuri
- 575
- 1
- 14
- 33
1
vote
1 answer
Issue with htaccess redirect for static file versioning not working with .min file names
I am trying to implement file versioning with php and htaccess for cache busting purposes. I had a good rewrite in htaccess that seemed to work well, but does not work when I have .min in the file name. I need the rewrite to account for situations…

Brian Lynch
- 13
- 3