TFS 2015 Visual Studio Build - Package .zip not being created

前端 未结 3 1114
花落未央
花落未央 2021-01-16 01:30

I\'m trying to build my solution and package up the web app into a web deploy (.zip) package to be deployed.

I\'ve added the Visual Studio Build ste

3条回答
  •  我在风中等你
    2021-01-16 02:24

    First suggest you manually remote in the build agent and build the project through MSBuild command line with arguments to see if the project builds properly.

    This will narrow down the issue is related to the environment on your build agent or your build definition.

    You should directly use /p:PackageLocation=$(build.stagingDirectory

    Besides since you have multiple assemblies that are referenced in the web app. Please also double check dependencies that are building in the correct order or referenced correctly.

提交回复
热议问题