Is there someplace I can read about the changes and additions made in GLSL from version 1.1 to 1.2 and from 1.2 to 1.3?
Google seem to be at a loss for this and I really don't want to start reading the complete specification.
...
Can we run an application developed for IIS 5.0 to its higher versions i.e. IIS (5.1, 6.0, 7.0)?
...
How to translate MS Windows OS version numbers into product names?
For example, in .NET the following two properties could be used to work out that the product is MS Windows Vista Ultimate Edition :
Environment.OSVersion.Platform returns Win32NT
Environment.OSVersion.Version returns 6.0.6001.65536
...
Is there any reason to use one versioning style over the other for .NET assemblies????
I'd like to know if there are any advantages/disadvantages in using either style besides taste.
...
Using PHP, Perl, or Python (preferably PHP) I need a way to query an SVN database and find out the last revision number sent to SVN. I don't need anything other than that. It needs to be non-intensive (so I do it every 5 minutes as a Cron, SVN's performance cannot be effected).
SVN is located on my Intranet, but not my specific computer...
I have a managed c++ project.
How do I make the version information of the DLL (as seen in explorer and used by installers) match the version information generated in the Assembly Version atttribute?
AssemblyInfo.cpp:
[assembly:AssemblyVersion("5.1.*")];
The problem is discussed here.
...
How to retrieve at runtime the version info stored in a Windows exe/dll? This info is manually set using a resource file.
...
My company is building a product. It's going to be versioned by SVN. It's a webapp so basically there will never be a version out which doesn't have some features in them and thus could always be labeled as beta. But since it's going to be a corporate product I really don't want the "unstable watchout" on there. So how would you go about...
Let me give a scenario then see if anyone has a solution / work-around.
I've got a library (DLL) that contains only classes. In another library, I've got interfaces that the classes in the first library implement. Clients will always reference only one version of the library containing the interfaces (always the latest one) - and only...
I'm looking for ANY means of setting the file version for an exe file generated using codeDOM. Mine always comes out as 0.0.0.0. Programatically would obviously be preferred, but at this point anything would be better than nothing.
...
I have a scenario where I have multiple versions of the same assembly that I need to store in the application private folders, in a structure like this:
.\My.dll // latest version, say 1.1.3.0
.\v1.1.1\My.dll // version 1.1.1.0
.\v1.1.2\My.dll // version 1.1.2.0
My problem is that the .Net runtime, when asked for one of t...
Is there any site/analysis about what Java version most people are using on WWW ? It seems this data is not available on webserver logs (vs. Flash versions)
Can we safely set e.g. Java 1.4.2 as minimum requirement for our applet, or are there still many users using Java 1.1 (MS one) or Java 1.2-1.3 ?
It's still a bit of a complicated p...
I've recently taken over a project, and the original developer has gone. I'm now trying to install the app on a new server, and I've got a problem with dependent assembly versions.
The project is a reporting tool, with (unfortunately) a reference to Crystal. On my machine I have version 11.5.9500.313 of CrystalDecisions.CrystalReports.E...
I want to have one file where I can check which version is installed. Its a PHP program so you can look into the files. I was thinking if there is a standardized place to put it since in the Zend Framework or the HTMLpurifier I can't find the version number at all.
I would also want to add it to the Zend Framework and HTMLPurifier if th...
Back when migration version numbers were simply incremented as you created migrations, it was easy enough to do:
rake migrate VERSION=097
rake migrate VERSION=098
rake migrate VERSION=099
rake migrate VERSION=100
...but we now have migration numbers that are something like YYYYMMDDtimeofday. Not that this is a bad thing - it keeps th...
I was trying to figure out why a debug build was blowing up with the "dependent assembly microsoft.vc80.debugcrt could not be found" event error.
After deleting everything (anything not .cpp or .h) and recreating the solution - I still had the problem.
A google search was fruitless and a re-install of VS didn't produce any change.
I d...
I'm trying to detect which version .NET is installed using WiX. I've tried:
<Condition Message='This setup requires the .NET Framework 3.5 or higher.'>
<![CDATA[MsiNetAssemblySupport >= "3.5.0.0"]]>
</Condition>
But that won't work, because the MsiNetAssemblySupport property checks the version of fusion.dll, which wasn't updated fr...
My (C++, cross-platform) app is heavily using Boost libraries (say version 1.x), and I want to also link against a 3rd-party (vendor)'s SDK (no source), itself using Boost (but version 1.y).
So, we both link dynamically against our own version of Boost DLLs, CRT being identical. Consequently, at run-time my app would have to load both D...
I'm a sole developer, using GIT for version-control of embedded software written in C. The software needs to be aware of it's version, and it's currently done by including a header file with a single #define:
#define SOFTWARE_VERSION "1.021"
This header file is automatically created by pre-build Python script that tries to obtain the l...
Many 3rd party python modules have an attribute which holds the version info for the module (usually something like module.VERSION or module.__version__), however some do not.
Particular examples of such modules are libxslt and libxml2.
I need to check that the correct version of these modules are being used at runtime. Is there a way ...