vote up 2 vote down star
1

I usually use web applications in Visual Studio and the MSBUILD taks in Nant builds them without any problems:

<msbuild project="MySolution.sln">
  arg value="/property:Configuration=release" />
</msbuild>

I now have a website (not a web application) in a VS Solution and it won't build - I get a lot of namespace errors.

Should I be able to build the solution with MSBUILD even though it contains a website? Or do I need to use CSC?

flag

79% accept rate

3 Answers

vote up 2 vote down check

You should try using the devenv.exe command if msbuild.exe is failing for you. Also you may be interested in Web Deployment Projects.

link|flag
vote up 1 vote down

In your MSBuild arguments use the OutDir option to set an output directory. You then get the following:

  1. All the DLLs in your project.
  2. A directory called _PublishedWebsite. This gives you the same output a Publish command in Visual Studio.

This is what we do to build our web apps through MSBuild.

link|flag
vote up 1 vote down
devenv.exe /rebuild debug mywebsite.sln

I found I had to use debug rather than release or the build was skipped.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.