I have a project that builds a DLL. The normal PDB file is named "projectname".pdb.
Is there an easy way to include the file version from the DLL in the PDB file name?
Example: DLL file version is 4.1.0.5 and PDB file is "projectname"_4_1_0_5.pdb.
> I have a project that builds a DLL. The normal PDB file is named "projectname".pdb.
>
> Is there an easy way to include the file version from the DLL in the PDB file name?
>
> Example: DLL file version is 4.1.0.5 and PDB file is "projectname"_4_1_0_5.pdb.
Does a kind of rename instruction within a post-built would do the trick ?
If the answer is yes.
Than write a small program that calls an exported function from the DLL
which contains ::GetFileVersionInfo.