Questions tagged [versions]
266 questions
104
votes
7 answers
SVN (Subversion) Problem "File is scheduled for addition, but is missing" - Using Versions
I'm using Versions for SVN.
I attempt to commit and get this message:
Commit failed (details follow):
'/Users/mike/Sites/mysite.com/astss-cvsdude/Trunk/cart/flashfile.swf'
is scheduled for addition, but is
missing
I suppose this is because I…

Mike
- 1,041
- 2
- 7
- 3
59
votes
4 answers
How do the .NET Framework, CLR and Visual Studio version numbers relate to each other?
With the recent announcement of .NET 4.0 and Visual Studio 2010, it is becoming ever more difficult to keep track of what .NET Framework versions build on what version of the CLR and belong with which version(s) of Visual Studio.
Is there a…

Scott Dorman
- 42,236
- 12
- 79
- 110
55
votes
7 answers
How best to use File Version and Assembly Version?
In .NET there are two version numbers available when building a project, File Version and Assembly Version. How are you using these numbers? Keeping them the same? Auto-incrementing one, but manually changing the other?
Also what about the…

Rick
- 5,029
- 2
- 33
- 34
44
votes
7 answers
Can you mix .NET framework Versions in a solution?
Our codebase where I work is .NET 2.0. For our new assembly/DLLs/web applications I would love to take advantage of what 3.5 has to offer.
Can one mix .NET frameworks(per assembly) in a solution? Are there any IIS related caveats to this?
I would…

Micah
- 10,295
- 13
- 66
- 95
41
votes
7 answers
Getting the subversion repository number into code
I'd like to implement a way of recording the version of a project within code, so that it can be used when testing and to help track bugs.
It seems the best version number to use would just be the current revision number from Subversion. Is there…

Ali Parr
- 4,737
- 3
- 31
- 35
40
votes
3 answers
How to test the current version of GCC at compile time?
I would like to include a different file depending on the version of GCC. More precisely I want to write:
#if GCC_VERSION >= 4.2
# include
# define EXT std
#elif GCC_VERSION >= 4
# include
# define EXT…

PierreBdR
- 42,120
- 10
- 46
- 62
34
votes
9 answers
What version of Android should I develop for?
How should I make the choice ? What are the parameters I should take into account ?

Robert
- 379
- 1
- 3
- 3
30
votes
4 answers
Python: select one of multiple installed module versions
On my system, I have several modules installed multiple times. To give an example, numpy 1.6.1 is installed in the standard path at /usr/lib/python2.7/dist-packages, and I have an updated version of numpy 1.8.0 installed at…

Jenny
- 527
- 1
- 6
- 11
29
votes
14 answers
Cornerstone vs Versions for Mac OS X
I've been using svn on the command line for 5+ years, but I'm thinking of switching to GUI. The two kings of Mac subversion apps seem to be Versions and Cornerstone. Most of the reviews/comments I've seen comparing the two are from way back in 2008,…

splicer
- 5,344
- 4
- 42
- 47
27
votes
5 answers
How do I get the version of an assembly without loading it?
One small function of a large program examines assemblies in a folder and replaces out-of-date assemblies with the latest versions. To accomplish this, it needs to read the version numbers of the existing assembly files without actually loading…

Jay Cincotta
- 4,298
- 3
- 21
- 17
26
votes
4 answers
Compare Version Identifiers
Here is my code, which takes two version identifiers in the form "1, 5, 0, 4" or "1.5.0.4" and determines which is the newer version.
Suggestions or improvements, please!
///
/// Compares two specified version strings and returns…

Nick
- 13,238
- 17
- 64
- 100
22
votes
3 answers
resolving simple svn conflicts
I'm a bit of newcomer to using svn on a mac. I'm using Versions.
I've been getting reports that I've been overwriting other devs work, so I'm hoping someone here can make sure I'm doing things properly.
I committed my work last night, the other…

Finnnn
- 3,530
- 6
- 46
- 69
19
votes
5 answers
Java Classloader - how to reference different versions of a jar
This is a common problem. I'm using 2 libraries A.jar and B.jar and these depend on different versions of the same jar.
Let's say that at runtime I need THIS.x.x.x.jar
MY.jar
-> A.jar -> THIS.1.0.0.jar
-> B.jar -> C.jar ->…

mickthompson
- 5,442
- 11
- 47
- 59
14
votes
3 answers
Create branch in Versions (Mac Subversion client)
I have search everywhere but I can't find information on how to create a branch in Versions for Mac. How is this done?

Crashdesk
- 665
- 8
- 27
14
votes
1 answer
Switching trial and pro builds with android apps in Eclipse: how to make it less painful?
I have an application for Android which comes in two forms: a trial version and a paid "pro" version. The two versions coexists in Android Market and have different package names (let's call them com.app.trial and com.app.pro). They share the same…

antonio
- 375
- 4
- 13