0

我正在尝试构建一个名为 DropThings 的项目,但我遇到了所有这些错误,我不确定如何解决它们。任何人都可以伸出援助之手吗?我想知道是否有其他人可以建立该网站,如果可以,您需要采取哪些步骤。提前致谢!


源代码: http ://code.google.com/p/dropthings/

我的配置:

Visual Studio 2008 SP1
SQL 2005(已加载数据库 + 已配置 Web.Config 文件)
Microsoft Silverlight Projects 2008

错误:

找不到错误文件元数据文件“...\Dropthings-v2.2.0\src\DashboardDataAccess\bin\Debug\Dropthings.DataAccess.dll”。
...\Dropthings-v2.2.0\src\DashboardBusiness Build 由于 ...\Dropthings-v2.2.0\src\DashboardDataAccess\DropthingsDataContext.dbml 中的验证错误而失败。打开文件并解决错误列表中的问题,然后尝试重建项目。
...\Dropthings-v2.2.0\src\DashboardDataAccess\DropthingsDataContext.dbml 元数据文件 '...\Dropthings-v2.2.0\src\DashboardBusiness\bin\Debug\Dropthings.Business.dll' 找不到。
...\Dropthings-v2.2.0\src\Dropthings.Business.Activities 元数据文件 '...\Dropthings-v2.2.0\src\DashboardDataAccess\bin\Debug\Dropthings.DataAccess.dll' 找不到。
...\Dropthings-v2.2.0\src\Dropthings.Business.Activities 元数据文件'...\Dropthings-v2.2.0\src\Dropthings.Business.Activities\bin\Debug\Dropthings.Business.Activities.dll'找不到。
...\Dropthings-v2.2.0\src\Dropthings.Business.Workflows 元数据文件 '...\Dropthings-v2.2.0\src\DashboardBusiness\bin\Debug\Dropthings.Business.dll' 找不到。
...\Dropthings-v2.2.0\src\Dropthings.Business.Workflows 元数据文件 '...\Dropthings-v2.2.0\src\DashboardDataAccess\bin\Debug\Dropthings.DataAccess.dll' 找不到。...\Dropthings-v2.2.0\src\Dropthings.Business.Workflows 元数据文件 '...\Dropthings-v2.2.0\src\DashboardDataAccess\bin\Debug\Dropthings.DataAccess.dll' 找不到 Dropthings。无法找到 Widget.Framework 元数据文件“...\Dropthings-v2.2.0\src\DashboardBusiness\bin\Debug\Dropthings.Business.dll”。...\Dropthings-v2.2.0\src\Dropthings.Business.Facade 元数据文件 '...\Dropthings-v2.2.0\src\DashboardDataAccess\bin\Debug\Dropthings.DataAccess.dll' 找不到。...\Dropthings-v2.2.0\src\Dropthings.Business.Facade 元数据文件'...\Dropthings-v2.2.0\src\DashboardDataAccess\bin\Debug\Dropthings.DataAccess。

4

3 回答 3

1

检查项目的引用。

于 2009-03-27T15:17:36.253 回答
0

检查 Dropthings 引用的 .dll 是否都存在。

查看 GoogleCode 上的部署版本,它应该可以按原样工作。

于 2010-03-13T14:25:18.040 回答
0

它可能是 dbml 文件中的硬编码连接字符串:

ConnectionString="Data Source=.\SQLEXPRESS;AttachDbFilename="F:\Ilias Vai\Dropthings\trunk\src\Dropthings\App_Data\dropthings.mdf";Integrated Security=True;User Instance=True" 

你会得到一个构建错误:

..\Dropthings-v2.2.0\src\DashboardBusiness Build 由于 ...\Dropthings-v2.2.0\src\DashboardDataAccess\DropthingsDataContext.dbml 中的验证错误而失败。打开文件并解决错误列表中的问题,然后尝试重建项目。

因此,您可能需要修复该 connectionString 以指向您的本地 MDF 文件(假设您使用的是 SQLEXPRESS)或数据库。

于 2010-03-13T14:35:13.120 回答