我在我的 VS 中使用 NuGet 包安装了 Umbraco 7(按照本教程:http ://www.systenics.com/blog/setting-up-umbraco-7-in-visual-studio-2013-for-mvc-4-development /)。
我现在有两个问题:
1. 现在每次重建都会出错:
An error occurred loading a configuration file: Directory 'C:\inetpub\wwwroot\mvcimport\app_data\nugetbackup\20140707-140849\config' does not exist. Failed to start monitoring file changes. C:\inetpub\wwwroot\mvcimport\App_Data\NuGetBackup\20140707-140849
(\Web.config 中的第 1 行)
在我关闭解决方案并重新打开它之后,该错误不会仅在第一次构建时发生。
2. 我添加了我的模型,但视图没有看到它。我添加的两个控制器都看不到我的自定义命名空间 - 正如您在图像上看到的那样 MvcImport 只看到我正在输入的 Controlles 命名空间。
即使(上述情况除外)项目编译时没有错误。
并且当编译时出现错误(1)时,还会出现许多错误,例如。
The type or namespace name 'Models' does not exist in the namespace 'MvcImport' (are you missing an assembly reference?) C:\inetpub\wwwroot\mvcimport\Controllers\ImportController.cs
如果不是通过简单地编译项目,我看不到我应该如何添加自己的程序集?