I have a solution that includes a web project that is set not be compiled for both my debug and release configurations. When I tried to compile the solution with the <solution> task, it failed and noted the <webmap> fix. I then tried to exclude the project explicitly...
 
<excludeprojects>
    <include name="**MyWebProject.csproj" />
</excludeprojects>
That didn't work, either - same error. Does the <solution> task not check to see if a project will be built when compiling? I'm working on a reusable build script, so I really don't want to have to specify the projects manually. Besides, the web project is referenced in the other projects, so using the solution file seems to be the easiest/best answer.
 
Has anyone seen this before?
 
Michael Flanakin

Reply via email to