缺少用于 Azure 部署的 FileSystemPublish 目标
Missing FileSystemPublish target for azure deployment
我尝试获取一个 asp.net5 项目以使用 Visual Studio 在线构建并从那里将其部署到 azure。我使用 Visual Studio 2015 RTM 创建了项目。
我使用 msdn 上的指南。该指南使用 msbuild 目标 "FileSystemPublish" 将构建变为 azure。但是我得到这个目标不存在的错误:
xxxx.sln.metaproj(0,0): Error MSB4057: The target "FileSystemPublish" does not exist in the project.
有谁知道我如何让这个目标工作或者我如何在没有这个目标的情况下进行部署?
我发现了我的错误。我错过了一步。我仍然尝试构建 sln,但你需要构建 xproj 文件:
7.Select the Visual Studio Build step and in the Solution input browse to the .xproj. Select it and click OK.
我尝试获取一个 asp.net5 项目以使用 Visual Studio 在线构建并从那里将其部署到 azure。我使用 Visual Studio 2015 RTM 创建了项目。
我使用 msdn 上的指南。该指南使用 msbuild 目标 "FileSystemPublish" 将构建变为 azure。但是我得到这个目标不存在的错误:
xxxx.sln.metaproj(0,0): Error MSB4057: The target "FileSystemPublish" does not exist in the project.
有谁知道我如何让这个目标工作或者我如何在没有这个目标的情况下进行部署?
我发现了我的错误。我错过了一步。我仍然尝试构建 sln,但你需要构建 xproj 文件:
7.Select the Visual Studio Build step and in the Solution input browse to the .xproj. Select it and click OK.