I am executing simple <vssget> task throwing the following errors. Anhy help is appreciated (task detailed below):
 
Framework 'net-2.0' is invalid and has not been loaded : Framework directory 'C:
\WINNT\Microsoft.NET\Framework\v2.0.40607' does not exist.
 
Framework 'mono-1.0' is invalid and has not been loaded : Registry Path Not Foun
d! - key='SOFTWARE\Mono\';hive='Microsoft.Win32.RegistryHive[]';
 
Framework 'mono-2.0' is invalid and has not been loaded : Registry Path Not Foun
d! - key='SOFTWARE\Mono\';hive='Microsoft.Win32.RegistryHive[]';
 
Framework 'sscli-1.0' is invalid and has not been loaded : Framework directory '
C:\sscli\build\v1.x86fstchk.rotor' does not exist.
 
 
 
My .build file looks like this:
 
<?xml version="1.0"?>
  <project name="FrameworkSimpleBuild" default="vss">
  <target name="LoadNAntContribTasks">
   <loadtasks  assembly="c:/Program Files/NAntContrib/nantcontrib-0.85-rc1/bin/NAnt.Contrib.Tasks.dll" />
  </target>
  
  <target name="build">
   <solution solutionfile="MyProject.sln" configuration="Release"/>
  </target>
  
  <target name="vss">
   <vssget
                  user="username"
                  password="passwd"
                  localpath="C:\VS2003\MyProject"
                  recursive="true"
                  replace="true"
                  writable="false"
                  dbpath=\\MyServer\Vss\srcsafe.ini"
                  path="$/Sandbox/MyProject"
                />
  </target>
  </project>

Reply via email to