During a building of my binaries I am able to set lots of VERSIONINFO properties like FILEVERSION, PRODUCTVERSION and StringFileInfo, for example:
[assembly: AssemblyCompany("XXX")]
[assembly: AssemblyProduct("My Product")]
[assembly: AssemblyCopyright("© XXX, 2017")]
[assembly: AssemblyVersion("9.5")]
[assembly: AssemblyFileVersion("9.5.1001")]
My question is how to set FILEFLAGS field? In vcxproj I am including a rc-file with correct VERSIONINFO structure. Is similar possible for the csproj projects?
Note, I have a lots of csproj-projects and I don't want to add custom build step to every project file (as I can forget to do it in new projects).