Hello folks, 

I'm having trouble w/ the <mkiisdir> task.

here's my build file:

<?xml version="1.0"?>
<project name="Add New Bank" default="run">
 
  <target name="AddIISDirectory">
    <echo message="dirpath  = ${dirpath}" />
    <echo message="vdirname = ${vdirname}" />
    
    <mkiisdir dirpath="${dirpath}" vdirname="${vdirname}" />
  </target>
  
  <target name="run">
    <property name="dirpath" value="c:\temp" />
    <property name="vdirname" value="Temp" />
    
    <call target="AddIISDirectory" />
  </target> 

</project>

here's the output:

NAnt 0.85 (Build 0.85.1653.0; net-1.0.win32; nightly; 7/11/2004)
Copyright (C) 2001-2004 Gerry Shaw
NAnt Team

Buildfile: file:///C:/Documents and Settings/fvittoria/addnewbank.build
Target(s) specified: run

run:


AddIISDirectory:

     [echo] dirpath  = c:\temp
     [echo] vdirname = Temp

BUILD FAILED

C:\Documents and Settings\fvittoria\addnewbank.build(8,6):
NAnt.Contrib.Tasks.MkIISDirTask: Error creating virtual directory, see build log
 for details.
    Exception from HRESULT: 0x80005006.

Total time: 0.2 seconds.

What am I doing wrong?  Also, where's the build log?  

Thanks,
Felice


-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_idG21&alloc_id040&op=click
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to