1 Answers1

4

The default .NET Core publish build task looks for web.config or wwwroot to identify a target for a web app. To fix this:

  1. uncheck the "Publish Web Projects" checkbox
  2. In the “Projects” edit box enter */*.csproj

This will let the build publish the right artifacts in the drop folder for the release run to pick them up.

Nikola Babic
  • 461
  • 3
  • 7