version

Migrating from .NET 1.1 to .NET 3.5

What would be some compelling reasons to upgrade a web app from .NET 1.1 to .NET 3.5? ...

What pre-engineering do you do to ensure data compatibility for future versions of your app?

I am doing some significant refactoring and feature-adding on a project, and have just broken backwards compatibility with my data. I did it by creating a bunch of subclasses from the class that I used to house my data in, and loading in old serialized objects no longer works.. What kind of pre-engineering or strategies do you employ to...

How do you know what version number to use?

Here's one I have always wondered about... Please excuse my naivety, but - How do you decide what version number to name your software? I assume, when somebody creates a "final" version of an application/program it is version 1.0? - Then, what happens when you update it, how do you decide to call it 1.1 or 1.03 etc etc. Is this mostl...

Dotnetnuke Version Determination

I've been tasked with fixing a dotnetnuke installation that was simply copied from one server to another and the first thing I need to do is figure out which version it is. What's the easiest way? ...

Matching version number parts with regular expressions

I'm trying to match the parts of a version number (Major.Minor.Build.Revision) with C# regular expressions. However, I'm pretty new to writing Regex and even using Expresso is proving to be a little difficult. Right now, I have this: (?<Major>\d*)\.(?<Minor>\d*)\.(?<Build>\d*)\.(?<Revision>\d*) This works, but requires that every part...

How to show all ASP.NET web application's loaded/referenced assemblies with version numbers?

I'd like to show a list of all used assemblies on a dedicated web page inside a ASP.NET web application for debugging and maintainance purposes (there are many instances of this web application on many different servers). The assemblies could be called from the bin folder or from the GAC. There are some written by myself, but also third-...

Best Update Method for MySQL DB

I have read through the solutions to similar problems, but they all seem to involve scripts and extra tools. I'm hoping my problem simple enough to avoid that. So the user uploads a csv of next week's data. It gets inserted into the DB, no problem. BUT an hour later he gets feedback from everyone, and must make updates accordingly. H...

If I'm going to learn Python, should I learn 2.x or just jump into 3.0?

Maybe I'm old school, but when I sit down to really tackle a new language I like to buy whatever the definitive book is for that language rather than mess around with tutorials and online intro "toys" to the language. Python in a Nutshell has gotten glowing reviews on Amazon, but it's written around Python 2.5. So far it looks like Prog...

How to get the version info of a dll in C++

I need to get the version info of a dll I created in VS2008 C++. How do I get it? Thanks, Adam ...

.NET Program Keeps Installing Old Version

I'm having a rather annoying and time consuming problem with a .NET program. Our clients all use a piece of software we wrote in Visual Studio 2005 (running .NET framework 3.5). The application is a setup project that gets its files from another project. The problem is that whenever I do a code change and upload the new version to the...

Why can't I display the ASP.NET Framework version as 3.5?

Hello, Can someone please confirm to me that when my application is written in .NET 3.5 that this code System.Environment.Version.Major.ToString() will produce this 2.0.50727.1433 I'm just moving to 3.5 and the first application I'm moving is an internal website. I thought a really easy indicator that it's working would be to add...

Application version or milestone Naming Schemes

I'm looking for "schemes" for application version or milestone naming. I'd like to find a naming scheme that suits my current project but I think we should gather here the more interesting schemes to share knowledge and ideas on the subject. You also should provide the number of possible name with the proposed scheme or an estimate. F...

maven look for new versions of dependencies

Is there any way to make maven look for new versions of dependencies? for example, i have commons-lang commons-lang 2.3 version 2.4 could be out, I dont know. i'd rather not check is manually(by writting 2.4 in this case), because i have many dependencies. I think i saw some trick to make maven use latest ...

How do I find out if my application is running on x86 or x64 Windows?

I want to know, at run time, whether I'm running on 32 bit or 64 bit windows. The OSVERSIONINFOEX structure tells me the major and minor version, but I'm guessing I need the build numbers. Anyone know what they are? ...

Python: Best way to check for Python version in program that uses new language features?

If I have a python script that requires at least a particular version of python, what is the correct way to fail gracefully when an earlier version of python is used to launch the script? How do I get control early enough to issue an error message and exit? For example, I have a program that uses the ternery operator (new in 2.5) and "...

Can you develop using .NET 3.5 SP1 and run under just .NET 3.5

Can I develop a website which utilizes ADO .NET Entities in the .NET Framework 3.5 SP1 and then deploy it on another machine with just the .NET 3.5 framework? ...

The diff between openssl-2 and openssl-3

New to this. How can you tell what the openssl version is and what's the diff? ...

Standard way to embed version into python package?

Hey everyone, Is there a standard way to associate version string with a python package in such way that I could do the following? import foo print foo.version I would imagine there's some way to retrieve that data without any extra hardcoding, since minor/major strings are specified in setup.py already. Alternative solution that I f...

How can my iphone app detect it's own version number?

I'm writing an iPhone app. It's already been published, but I would like to add a feature where it's version number is displayed. I'd rather not have to do this manually with each version I release.. Is there a way in objective C to find out what the version is of my app? ...

how to execute changed interface.

My project build is forked. Now that main and forked build will probably have some interface changes. I have client that tests interfaces in main build and I need to use the same client to test these changes in fork build. what is the best way to test interface changes in both with single client. One thought I'm heading is to get the...