msbuild

  • Thread starter Thread starter csharpula csharp
  • Start date Start date
C

csharpula csharp

Hello ,I published with msbuild.exe a project. The problem is that
although the message was that it succeded I don't see the result in the
url. How can I detect why?
Thanks
 
Hi,

The output should tell you where it put the files. Check the
CopyFilesToPublishFolder section. You can also add the /verbosity:diagnostic
to get more information. If you don't have access to the output, add logging
to file using the /logger switch, or just /fileLogger if you want to use the
default file logger.
 
Back
Top