Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
838 views

Update version info with MSBuild (after binaries compilation)

I want to make a target in my MSBuild script that: Fetch SVN revision/datetime from sources folder ('svn info' command) Update VERSIONINFO resource from .EXEs and .DLLs generated by 'build' target ...
3
votes
1answer
219 views

Set EXE VersionInfo

The information on the version Exe-file I receive by means of VerQueryValue, and whether there is what inverse function (WinApi or Delphi) which can to register such information (to establish or ...
3
votes
4answers
134 views

Limit PowerShell VersionInfo output to only 3 decimal places where 4 decimal places are given or Remove Decimal Place in VersionInfo

I tried my best to find the answer on my own for almost 2 days before posting. I apologize in advance if this question is already answered somewhere on this site. In short, I need to pull VersionInfo ...
2
votes
3answers
545 views

How to use project version information inside a Delphi application?

I use Project Options / Version to manage the version info (N.N.N.N format). Anyway inside my project I duplicate those info. So if in project options I am working on release 2.4.3.178 inside my ...
2
votes
2answers
130 views

Libtool versioning of a library that depends on other libraries

I have a framework that uses Boost and CgiCC in the core application and in its interface. How should I version the library binary interface (a.k.a. libtool -version-info)? I have no problems ...
2
votes
2answers
953 views

Do I need afxres.h, if I am not using MFC? How do I remove it from the .RC script?

I don't know RC scripts. I want to include Product version, File version, etc. metadata into a DLL I'm building. I'm using an .rc file to do that. The build is makefile driven. I'm following along ...
2
votes
2answers
1k views

Programmatically change the AssemblyVersion and AssemblyFileVersion attributes

During a setup creation process, I am planning to do the following (within a C# Script): Read the AssemblyVersion and AssemblyFileVersion attribute values of one DLL. Iterate all DLLs and ...
1
vote
2answers
236 views

How to manage version information on Delphi XE2 across platforms

I am migrating projects from XE to XE2 and I have noticed that I am missing my manually entered version information such as Company Name, Product Version etc. Creating a simple empty VCL forms ...
1
vote
2answers
193 views

How to detect Windows KN / K / N edition

Delphi Xe, Win7x64 How to detect incomplete Windows edition N or K (Win XpSp3-Win7x64)? Without IE, Wmp. Example: Function isWinKNedition:bool; begin result:=????? end; ... procedure ...
0
votes
1answer
50 views

How do I make a Win32 PE executable with included resources and specific VERSIONINFO information with an x86 assembler?

What tools would I use to create a Windows 95 and NT compatible executable that includes specific resources (.rsrc data) and specific VERSIONINFO data (such as the "CompanyName" and the ...
0
votes
0answers
74 views

Modify the version info of a built .Net assembly

I was wondering if there is anyone knowing a better way to modify the version info of a .Net assembly of the one I am currently using. My current approach is the following one: I do disassemble the ...
0
votes
2answers
226 views

c++ get version from .rc into code [closed]

Possible Duplicate: How do I read from a version resource in Visual C++ in my c++ project i've added a .rc file where I can store the file version, the executable description, copyright, ...
0
votes
2answers
132 views

Difficulty in establishing VersionInfo for existing C++ DLL project

I have an extant C++ DLL which compiles properly, but has no version information associated with it such was the Version tab in Properties for the compiled library. The odd things about it is that it ...
0
votes
0answers
391 views

Getting version info in cmd - Filever alternative under windows 7?

Does anybody knows what I can use instead of filever.exe in Windows 7 x64. Filever is not on my system by default so probably Microsoft have some replacement that I can't easy find. My goals is to ...
0
votes
2answers
497 views

VerQueryValue Fileversion doesn't match Windows Shell

I'm using the VerQueryValue to retrieve strings from a DLL's VersionInfo. All works fine, except that the FileVersion displayed by Explorer (right-click on file, Properties, Details, "File Version") ...
-1
votes
1answer
78 views

Can tlbimp.exe generate interop assemblies with customized version info?

The Microsoft Type Library Importer tool (tlbimp.exe) generate interop assemblies without some version info, i.e. no company, no copyright, no trademarks and number version always set to 1.0.0.0. Is ...