RE: [Nant-users] sysinfo problem -- not setting all system variables

2005-05-24 Thread Anthony DeLuca
@lists.sourceforge.net Subject: RE: [Nant-users] sysinfo problem -- not setting all system variables Tony, You might also try ${environment::get_variable('SRCROOT')} to see if you can just extract that one environment variable. As for PATH, there was some discussion about that one before. Be su

RE: [Nant-users] sysinfo problem -- not setting all system variables

2005-05-23 Thread Merrill Cornish
Tony, You might also try ${environment::get_variable('SRCROOT')} to see if you can just extract that one environment variable. As for PATH, there was some discussion about that one before. Be sure you are capitalizing it as it appears in a SET statement in a DOS console window. For some Wind

RE: [Nant-users] sysinfo problem -- not setting all system variables

2005-05-23 Thread Anthony DeLuca
rnish [mailto:[EMAIL PROTECTED] Sent: Monday, May 23, 2005 2:01 PM To: Anthony DeLuca; nant-users@lists.sourceforge.net Subject: Re: [Nant-users] sysinfo problem -- not setting all system variables Tony, Try adding just "SRCROOT" (no "sys.end" prefix) to your environment,

Re: [Nant-users] sysinfo problem -- not setting all system variables

2005-05-23 Thread Merrill Cornish
Tony, Try adding just "SRCROOT" (no "sys.end" prefix) to your environment, then check the value of the "sys.SRCROOT" property in your script. In general, if you have specified a prefix of "xxx", the environment variable "ABC" will show up as property "xxx.ABC". Merrill -