Dear nant-developers:
        In my solution, there is one project that will include office.dll, excel.dll, 
vbide.dll, but nant can't find them, is this a bug?

=====================Error=================================

        build:

 [solution] Starting solution build.

BUILD FAILED

INTERNAL ERROR

System.ApplicationException: Couldn't find reference to type library 'Office' (T
YPELIB\{2DF8D04C-5BFA-101B-BDE5-00AA0044DE52}\2.1\0\win32).
   at NAnt.VSNet.Reference.HandleWrapperImport(XmlElement elemReference)
   at NAnt.VSNet.Reference..ctor(Solution solution, ProjectSettings ps, XmlEleme
nt elemReference, SolutionTask solutionTask, String outputDir)
   at NAnt.VSNet.Project.Load(Solution sln, String projectPath)
   at NAnt.VSNet.ProjectFactory.LoadProject(Solution sln, SolutionTask slnTask,
TempFileCollection tfc, String outputDir, String path)
   at NAnt.VSNet.Solution.LoadProjects()
   at NAnt.VSNet.Solution..ctor(String solutionFileName, ArrayList additionalPro
jects, ArrayList referenceProjects, TempFileCollection tfc, SolutionTask solutio
nTask, WebMapCollection webMappings, FileSet excludesProjects, String outputDir)

   at NAnt.VSNet.Tasks.SolutionTask.ExecuteTask()
   at NAnt.Core.Task.Execute()
   at NAnt.Core.Target.Execute()
   at NAnt.Core.Project.Execute(String targetName, Boolean forceDependencies)
   at NAnt.Core.Project.Execute()
   at NAnt.Core.Project.Run()

Please send bug report to [EMAIL PROTECTED]

Total time: 2.9 seconds.


========================My build file===================================
<?xml version="1.0"?>
  <project name="idg" default="build" basedir=".">

  <property name="solution"  value="test.sln"/>
  <property name="config.debug" value="DEBUG"/>
        <property name="config.release" value="RELEASE"/>
  <property name="output.debug"   value="OutPut\Debug" />
        <property name="output.release" value="Output\Release" />

        <target name="clean">
                <delete dir="${output.debug}" verbose="true" failonerror="false" />
                <delete dir="${output.release}" verbose="true" failonerror="false" />
        </target>

  <target name="build">
                <solution solutionfile="${solution}" outputdir="${output.debug}" 
configuration="${config.debug}"/>
  </target>
</project>

                                                                                       
                                                 Your sincerely: 
                                                                                       
                                                         Jackfan
                                                                                       
                                                 [EMAIL PROTECTED]
                                                                                       
                                                         2004-09-03



-------------------------------------------------------
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_id=5047&alloc_id=10808&op=click
_______________________________________________
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to