Hi guys,Today I installed a fresh version of Windows 7 x64, VS2010, MS-Office 2010, etc.
I use some Infragistics controls and after rebuilding the "MicroFour StrataFrame Infragistics Wrapper.sln" I got some errors from the AfterBuild.bat claiming that this file could not be found:
"%ProgramFiles%\Microsoft SDKs\Windows\v6.0A\bin\gacutil.exe" -i %1 -f
Looking at my system I found the gacutil.exe in this folder:
"%ProgramFiles(x86)%\Microsoft SDKs\Windows\v7.0A\bin\gacutil.exe" -i %1 -f
This file worked in the AfterBuild.bat in my Windows 7 x64 configuration.
Trent or somebody else, may I ask why using the gacutil.exe from 2 different folders? Are they different in any way?
Here is my final AfterBuild.bat that is working for me:
rem 4/23/2010 Modified by Edhy Rijo to work on Windows 7 (x64) replacing this line
rem "%ProgramFiles%\Microsoft SDKs\Windows\v6.0A\bin\gacutil.exe" -i %1 -f
"%ProgramFiles%\Microsoft Visual Studio 8\SDK\v2.0\Bin\gacutil.exe" -i %1 -f
"%ProgramFiles(x86)%\Microsoft SDKs\Windows\v7.0A\bin\gacutil.exe" -i %1 -f
copy /Y %1 "%CommonProgramFiles%\MicroFour\StrataFrame"
copy /Y %2 "%CommonProgramFiles%\MicroFour\StrataFrame"