I had the same problem , I got passed this error by changing
// Load application-specific configuration file.
if (!csInitializer::SetupConfigManager(r,
"/my/vfs/path/AppSol.cfg", GetApplicationName()))
return ReportError("Failed to initialize configuration manager!");
to
// Load application-specific configuration file.
if (!csInitializer::SetupConfigManager(r,
"
/this/AppSol.cfg", GetApplicationName()))
return ReportError("Failed to initialize configuration manager!");
this seemed to fix the error as a AppSol.cfg file was created in the current directory. Think it might be usefull later on!
Regards