1

我正在尝试使用 BitBucket 在 Azure 上为我的机器人设置持续部署。现在我从日志中得到以下错误:(这只是其中的一部分)

D:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets(1819,5): warning MSB3245: Could not resolve this reference. Could not locate the assembly "Microsoft.Bot.Builder, Version=1.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL". Check to make sure the assembly exists on disk.

当直接从 Visual Studio 部署到 azure WebApp 时,它可以工作。有没有办法将这些程序集包含在 Bitbucket 或 Git 中?或者 SCM 会与 Team Explorer 一起使用吗?

4

1 回答 1

0

我认为您应该尝试提交 dll 文件。

如果您正确安装了 nuget 包,它应该位于:[YOURPROJECTPATH]\packages\Microsoft.Bot.Builder.1.0.2.0\lib\net45\Microsoft.Bot.Builder.dll

Bitbucket 签入可能已将其从您的提交中排除。

于 2016-04-21T18:33:24.800 回答