从Git Repository部署到Azure时如何处理dll

本文关键字:何处理 处理 dll Repository Git 部署 Azure | 更新日期: 2023-09-27 18:09:28

我正在尝试使用git repo部署c#应用程序到azure,但它失败了,说:

The type or namespace name 'Mvc' does not exist in the namespace 'System.Web' (are you missing an assembly reference?)

当前,所有DLL都被排除在存储库之外。我不想包含所有这些DLL,因为这会使我的仓库太大。有什么办法可以避免这样做吗?

从Git Repository部署到Azure时如何处理dll

你所需要做的就是在你的解决方案上打开NuGet包恢复(在VS中右键单击解决方案以找到该选项)。

然后可以使用.gitignore排除所有二进制文件。