G
Guest
On our development machines I created some batch file for compiling our web
apps.
They make use of some environment variables and batch files that visual
studio installs.
if "%VS80COMNTOOLS%"=="" goto error_no_VS80COMNTOOLS
rem set path of aspnet_compiler for the framework in vs80
call "%VS80COMNTOOLS%vsvars32.bat"
On my machine
VS80COMNTOOLS=C:\Program Files\Microsoft Visual Studio 8\Common7\Tools\
vsvars32.bat sets a lot of environment stuff but, basically it puts into
the path the location of
aspnet_compiler and aspnet_regiis
This is great because I don't have to hard code the path or worry about new
paths if the framework gets upgraded.
Unfortunately, I now need to compile on a computer which does not have VS
installed. Thus no environment variables or vsvars32.bat file.
Is their an automated way to get the most recent path to aspnet_compiler
and aspnet_regiis?
thanks,
apps.
They make use of some environment variables and batch files that visual
studio installs.
if "%VS80COMNTOOLS%"=="" goto error_no_VS80COMNTOOLS
rem set path of aspnet_compiler for the framework in vs80
call "%VS80COMNTOOLS%vsvars32.bat"
On my machine
VS80COMNTOOLS=C:\Program Files\Microsoft Visual Studio 8\Common7\Tools\
vsvars32.bat sets a lot of environment stuff but, basically it puts into
the path the location of
aspnet_compiler and aspnet_regiis
This is great because I don't have to hard code the path or worry about new
paths if the framework gets upgraded.
Unfortunately, I now need to compile on a computer which does not have VS
installed. Thus no environment variables or vsvars32.bat file.
Is their an automated way to get the most recent path to aspnet_compiler
and aspnet_regiis?
thanks,