#1
|
|||
|
|||
VS 2015 - RC file in vcxproj file not updated
I'm building a VS2015 solution and uses the Properties page in the step to update the project properties for each project in the solution.
For most project I get something like this: Code:
d:\code\sln\..\myproject.vcxproj...setting properties...setting version... Any idea how it finds the RC files for each project and how why it skips some even it exists? -cpede |
#2
|
|||
|
|||
The Make VS actions parse a .vcxproj file for any .rc files in Compile, ClCompile, and ResourceCompile items. Please send or post the project file(s) that aren't working.
http://www.kinook.com/Forum/showthread.php?t=3044 Thanks. |
#3
|
|||
|
|||
Project examples sent to support email.
|
#4
|
|||
|
|||
It's finding the .rc file, but since it looks for
\s*VS_VERSION_INFO\s+VERSIONINFO to identify a VERSIONINFO resource, and the .rc file in your project has 1 VERSIONINFO it doesn't process the versions. Changing that to VS_VERSION_INFO VERSIONINFO in the .rc file will make it work. |
#5
|
|||
|
|||
That's it thanks.
-cpede |
#6
|
|||
|
|||
In the latest download, the Make VS actions have been updated to handle values other than VS_VERSION_INFO for the VERSIONINFO resource version ID.
|
|
|