Hi Adrian, I have to say I am fairly new user to the whole .net staff on
very limited basis...  what that said, I run into the same problem
trying to run with the nightly NAnt build and build Visual Studio 2005
solution web project... by the sounds of things, there are still a few
things to be resolved to include a complete support (or that was about a
month ago....  What I ended up using is aspnet compiler and worked out
great...  

<exec basedir="." 
               program="${dotnet}/aspnet_compiler.exe" 
               commandline="-nologo -p ${root.path}/temp/QualityReview
-v QualityReview ${dist.path}/webapp
               workingdir="." 
               failonerror="true" />

One you posted to your dist area, you can do additional cleanup by
removing the sln file or anything else that you don't want out there.. 

         <delete>
            <fileset>
               <include name="${dist.path}/webapp/*.sln" />
            </fileset>
         </delete>

cheers,  rk~


-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Adrian
Rodriguez
Sent: Wednesday, June 27, 2007 12:12 PM
To: nant-users@lists.sourceforge.net
Subject: [NAnt-users] VS 2005 websites fail to build?

I have a few solutions that do not contain any associated project files.
I believe this is what you get when you use Visual Studio and create a
new website as opposed to going to create a new project and selecting
web application.  If I use the solution task (NAnt nightly), it keeps
saying, "Error checking whether c:\vstest is an enterprise template
project.  Access to the path c:\vstest is denied"

I looked at the solution file and I have something like this

Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "c:\vstest\",
"..\..\..\..\..\..\vstest", "{C3DDEA0E-1E22-4535-A9E7-EAB965235CBC}"

I take it that the solution task is trying to open up c:\vstest as if it
were the project file.

Has anyone ran across this?  If so, were you able to solve the problem?

<adrian />



------------------------------------------------------------------------
-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users

Confidentiality Notice: This e-mail message, including any attachments, is for 
the sole use of the intended recipient(s) and may contain information that is 
confidential privileged and/or exempt from disclosure under applicable law.  
Any unauthorized review, use, disclosure or distribution is prohibited.  If you 
are not the intended recipient, please contact the sender by reply e-mail and 
destroy all copies of the original message.




-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to