Are there other developers who are running VS2008 Pro on 64bit machines ? I noticed some of the post build events are trying to launch gacutil.exe from 'C:\Program Files\Microsoft SDKs\Windows\v6.0\bin'.
For example from OMLEngine:
"$(DevEnvDir)..\..\..\Microsoft SDKs\Windows\v6.0\Bin\GacUtil.exe" /i "$(TargetPath)" /f
On a 64 bit VS2008 that translates to
'C:\Program Files (x86)\Microsoft SDKs\Windows\v6.0\bin'
There is no v6.0 on my machine but 6.0A which corresponds to the latest SDK.
Few ways around it; modify script to be more generic i.e. test some variables and set them or modify registry or my fix I just created a a v6.0 directory and copied the gacutil exe and config file. I could care less about two files sitting off in never-never land.
Anyways I've always been part of team where we have the same tool set and obviously in a project like this that's impossible. So I am just curious who else runs in an x64 environment? Are there some other things I should be aware of ?
I run / build / hack / chop / & butcher using the SVN's source without ever modifying build's etc using VS2k8 Pro on Win7 x64. I ran into your problem above, but I just added symbolic links (mklink -
http://en.wikipedia.org/wiki/NTFS_symbolic_link) when there was a discrepancy in what path the project build was looking for in a particular installation (SDK or otherwise). As far as what other things to look out for? Blah, cant tell yell, that was 2 weeks ago and I can't remember what I did 2 days ago....

There were a few snags, but nothing monumental, I just hashed them all out and it worked.