However, when I create the code for VS2008, the .vcproj can be opened in
VS, with some conversion stuff going on.
Retry/Ignore/Cancel??
Cheers,
Eugen
XSISDK_ROOT contains quotes, which it shouldn't.
This is because it gets set wrongly in the batch scripts
http://download.autodesk.com/global/docs/softimage2013/en_us/sdkguide/index.html?url=files/cpp_setup_CompilingPlugins.htm,topicNumber=d30e78816
...
set XSISDK_ROOT="C:\Softimage\Softimage_2012_x64\XSISDK"
(besides, it should read Softimage 2013 in the meantime)
Correct version:
set "XSISDK_ROOT=C:\Softimage\Softimage 2013\XSISDK"
See http://ss64.com/nt/set.html
Now VS can open the .vcxproj without problems.
Best,
Eugen