End Google Ads 201810 - BS.net 01 --> I use the following in a console app:

/* Not Visual Studio Resource File **********************************************************/
#ifdef APSTUDIO_INVOKED
#error This file is not editable by Microsoft Visual C++, use a text editor.
#endif

/* Header Files *****************************************************************************/
#include "Interface.h"
#include "Resources.h"

/* Icon Files *******************************************************************************/
IDI_C14_App ICON "Wrench.ico"


/* Version Resource *************************************************************************/
#define VER_FILEVERSION C14ROM_Major, C14ROM_Minor, C14ROM_Ver, C14ROM_Build
#define VER_FILEVERSION_STR C14ROM_Version
#define VER_FILETYPE VFT_APP
#define VER_FILESUBTYPE VFT2_UNKNOWN

#define VER_FILEDESCRIPTION_STR "ROM Initialization Program"
#define VER_INTERNALNAME_STR "C14ROM"
#define VER_ORIGINALFILENAME_STR "C14ROM.exe"
#define VER_PARTNUMBER D5502
#define VER_PARTNUMBER_REV C14ROM_Build

#include "Version.rc"

Is there a way I can incorporate this into a VC# project without having to learn to do this from scratch? I can do small adjustments to the original file, but don't want to start from nothing.

Jer 29:11