I'm attempting to use VSTS to build and deploy my .net core Web API Web App Service.
It appears that previous versions of .net (including somewhat recent versions of .net core) created a zip file. The default configuration for an Azure App Service Deploy have the field Package or Folder set to $(System.DefaultWorkingDirectory)/**/*.zip
by default. This was failing for me with the error No package found with specified pattern: D:\a\1\s\**\*.zip
I was able to get it to kind of succeed by changing the path to simply $(System.DefaultWorkingDirectory)
, but from the Azure console I can see that this deploys everything (not just the binaries)
I could add a trainload of questions following this, but I'll keep this specific.
P.s.> I already looked here: dotnet publish command is not creating zip file package for asp.net core web application project, but it appears to be a different problem