Yup, that took care of it. Thanks!

-----Original Message-----
From: Gert Driesen [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 23, 2006 11:45 AM
To: Joseph Mierwa; nant-users@lists.sourceforge.net
Subject: RE: [NAnt-users] Solution Failures using WebMap

 

> -----Original Message-----
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of 
> Joseph Mierwa
> Sent: donderdag 23 februari 2006 17:40
> To: Gert Driesen; nant-users@lists.sourceforge.net
> Subject: RE: [NAnt-users] Solution Failures using WebMap
> 
> I just finished trying the latest build. It still fails 
> identically. Any
> more thoughts?

I see the problem now: you either need to specify the full "path" in
both
"url" and "path", or only specify the "directory" part in both, but not
mix
these.

You have included the filename of the project in "path", but not in
"url".

You should either have this:

<map url="http://localhost/MyService/MyService.csproj";
path="C:\working\VisionAIR\2.0_Development\Core\MyManager\MyService\MySe
rvic
e.csproj" />

-or-

<map url="http://localhost/MyService";
path="C:\working\VisionAIR\2.0_Development\Core\MyManager\MyService" />

Gert

> 
> -----Original Message-----
> From: Gert Driesen [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, February 23, 2006 10:52 AM
> To: Joseph Mierwa; nant-users@lists.sourceforge.net
> Subject: RE: [NAnt-users] Solution Failures using WebMap
> 
> Joseph,
> 
> If I'm not mistaken, this issue was fixed since.  
> 
> Try using a recent version of NAnt:
> 
> http://nant.sourceforge.net/nightly/latest
> 
> Gert
> 
> > -----Original Message-----
> > From: [EMAIL PROTECTED] 
> > [mailto:[EMAIL PROTECTED] On Behalf Of 
> > Joseph Mierwa
> > Sent: donderdag 23 februari 2006 16:50
> > To: nant-users@lists.sourceforge.net
> > Subject: [NAnt-users] Solution Failures using WebMap
> > 
> > Hi,
> > 
> >  
> > 
> > I'm having problems getting the following to work in nant-0.85-rc1:
> > 
> >        <solution solutionfile="${SolutionDir}\Core.sln" 
> > failonerror="true" configuration="${BuildConfiguration}" 
> > verbose="true">
> > 
> >              <webmap>
> > 
> >                     <map 
> > url="http://localhost/MyService/MyService.csproj"; 
> > path="C:\working\VisionAIR\2.0_Development\Core\MyManager\MySe
> rvice" />
> > 
> >              </webmap>
> > 
> >       </solution> 
> > 
> >  
> > 
> > The web service is fully functional and the source code for 
> > the service is located at the absolute path specified. The 
> > URL was taken verbatim from the VS solution file.
> > 
> >  
> > 
> > I receive the following 2 errors:
> > 
> >      [echo] ************************* Build Solution: ..\\Core.sln 
> > 
> >      [echo] 
> > 
> >  [solution] Starting solution build.
> > 
> >  
> > 
> > BUILD FAILED
> > 
> >  
> > 
> > Error checking whether 
> > 'C:\working\VisionAIR\2.0_Development\Core\MyManager\MyService
> ' is an enterprise template project.
> > 
> >     Access to the path 
> > "C:\working\VisionAIR\2.0_Development\Core\MyManager\MyService
> " is denied.
> > 
> >  
> > 
> > When searching on the web, there seems to be some discussion 
> > on the first error, but nothing appears to correct that 
> > issue. I can't seen to find anything on why Nant can't access 
> > my web service directory.
> > 
> >  
> > 
> > If I build it by using 
> > 
> >  
> > 
> >        <exec program="${external.devenv}" commandline='/build 
> > "${BuildConfiguration}" "${SolutionDir}\Core.sln" /out 
> > "out_Schemas.txt"' failonerror="true"/>
> > 
> >  
> > 
> > It builds fine, but I would prefer to be able to use the 
> > solution tag as there are other projects that I wish to 
> > exclude from the build.
> > 
> >  
> > 
> > Does anyone have any suggestions?
> > 
> >  
> > 
> > Cheers
> > 
> > Joe Mierwa
> > 
> > 
> 
> 
> 
> 
> 
> -------------------------------------------------------
> This SF.Net email is sponsored by xPML, a groundbreaking 
> scripting language
> that extends applications into web and mobile media. Attend 
> the live webcast
> and join the prime developer group breaking into this new 
> coding territory!
> http://sel.as-us.falkag.net/sel?cmd=k&kid0944&bid$1720&dat1642
> _______________________________________________
> NAnt-users mailing list
> NAnt-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/nant-users
> 





-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
_______________________________________________
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to