我正在尝试使用 git repo 将 C# 应用程序部署到天蓝色,但它没有说:
The type or namespace name 'Mvc' does not exist in the namespace 'System.Web' (are you missing an assembly reference?)
目前,所有 DLL 都从存储库中排除。我不想包含所有这些 DLL,因为它会使我的存储库变得巨大。有没有办法必须这样做?
我正在尝试使用 git repo 将 C# 应用程序部署到天蓝色,但它没有说:
The type or namespace name 'Mvc' does not exist in the namespace 'System.Web' (are you missing an assembly reference?)
目前,所有 DLL 都从存储库中排除。我不想包含所有这些 DLL,因为它会使我的存储库变得巨大。有没有办法必须这样做?
您需要做的就是在您的解决方案上打开 NuGet 包还原(右键单击 VS 中的解决方案以找到该选项)。
然后,您可以使用 .gitignore 排除所有二进制文件。有关示例,请参阅此 repo 。