Hello, I am new to nant scripts. I seem to have intellisense working, however it does not recognize the <property> element. I saw this question in the archives, but there was no response.
Also, if I run the script with "nant:" preceding the elements, it reports a successful build, but it actually did not work. for example, in the script below, I uncommment the commented to lines to get the intellisense to work, but comment them to run the script (otherwise I get errors when running). If I run it as below, it reports "success", but does not create the directory. If I remove "nant:", it does create the directory. Any ideas what I'm doing wrong. Thanks for any help, Makita <?xml version="1.0" encoding="UTF-8" ?> <!--<project xmlns:nant="http://nant.sf.net/schemas/nant-0.84.win32.net-1.0.xsd" xmlns:vs="urn:schemas-microsoft-com:HTML-Intellisense" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="C:\PROGRAam files\MICROSoft.NET\Common7\Packages\schemas\xml\nant-0.84.xsd"> --> <nant:project name="test" default="build" > <nant:target name="build" > <nant:mkdir dir="c:\temp\mousehs"> </nant:mkdir> </nant:target> </nant:project> <!-- </project> --> _______________________________________________ Join Excite! - http://www.excite.com The most personalized portal on the Web! ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users
