hello everybody, I have this error during using NAnt for building VS.Net solution:
[cl] c:\Development\MM8000\MM8000Server\In Progress\MM8000SrvI\XmlBulkImport.h(7) : fatal error C1083: Cannot open type library file: 'xblkld3.dll': No such file or directory my build file is: <?xml version="1.0"?> <project name="MM8000Server" default="rebuild"> <property name="configuration" value="release"/> <target name="clean"> <delete dir="${configuration}" if="${directory::exists(configuration)}" /> </target> <target name="build"> <solution configuration="release"> <projects> <include name="MM8000SrvI\MM8000SrvI.vcproj" /> </projects> </solution> </target> <target name="rebuild" depends="clean, build" /> </project> The file 'xblkld3.dll' is in "C:\Program Files\Common Files\System\Ole DB".. "C:\Program Files\Common Files\System\Ole DB" is in the Environment variables.. I tryed also: <?xml version="1.0"?> <project name="MM8000Server" default="rebuild"> <property name="configuration" value="release" overwrite="false"/> <target name="clean"> <delete dir="${configuration}" if="${directory::exists(configuration)}" /> </target> <target name="build"> <solution configuration="release"> <assemblyfolders> <include name="C:\Program Files\Common Files\System\Ole DB" /> (and \*.* and so on..) </assemblyfolders> <projects> <include name="MM8000SrvI\MM8000SrvI.vcproj" /> </projects> </solution> </target> <target name="rebuild" depends="clean, build" /> </project> but never work.. any idea how can it solved??? thank you ------------------------------------------------------- This SF.Net email is sponsored by the JBoss Inc. Get Certified Today * Register for a JBoss Training Course Free Certification Exam for All Training Attendees Through End of 2005 Visit http://www.jboss.com/services/certification for more information _______________________________________________ Nant-users mailing list Nant-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nant-users