Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 671689
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T00:24:05+00:00 2026-05-14T00:24:05+00:00

I’m attempting to build a project called DropThings but I am getting all these

  • 0

I’m attempting to build a project called DropThings but I am getting all these errors and I’m not sure how to resolve them. Can anyone lend a helping hand? I’m wondering if anyone else can build the website and if so, what steps it took you. Thanks in advance!

Source Code: http://code.google.com/p/dropthings/

My Configuration:

Visual Studio 2008 SP1
SQL 2005 (with the database loaded + Web.Config file configured)
Microsoft Silverlight Projects 2008

Errors:

Error File
Metadata file ‘…\Dropthings-v2.2.0\src\DashboardDataAccess\bin\Debug\Dropthings.DataAccess.dll’ could not be found.
…\Dropthings-v2.2.0\src\DashboardBusiness
Build failed due to validation errors in …\Dropthings-v2.2.0\src\DashboardDataAccess\DropthingsDataContext.dbml. Open the file and resolve the issues in the Error List, then try rebuilding the project.
…\Dropthings-v2.2.0\src\DashboardDataAccess\DropthingsDataContext.dbml
Metadata file ‘…\Dropthings-v2.2.0\src\DashboardBusiness\bin\Debug\Dropthings.Business.dll’ could not be found.
…\Dropthings-v2.2.0\src\Dropthings.Business.Activities
Metadata file ‘…\Dropthings-v2.2.0\src\DashboardDataAccess\bin\Debug\Dropthings.DataAccess.dll’ could not be found.
…\Dropthings-v2.2.0\src\Dropthings.Business.Activities
Metadata file ‘…\Dropthings-v2.2.0\src\Dropthings.Business.Activities\bin\Debug\Dropthings.Business.Activities.dll’ could not be found.
…\Dropthings-v2.2.0\src\Dropthings.Business.Workflows
Metadata file ‘…\Dropthings-v2.2.0\src\DashboardBusiness\bin\Debug\Dropthings.Business.dll’ could not be found.
…\Dropthings-v2.2.0\src\Dropthings.Business.Workflows
Metadata file ‘…\Dropthings-v2.2.0\src\DashboardDataAccess\bin\Debug\Dropthings.DataAccess.dll’ could not be found. …\Dropthings-v2.2.0\src\Dropthings.Business.Workflows
Metadata file ‘…\Dropthings-v2.2.0\src\DashboardDataAccess\bin\Debug\Dropthings.DataAccess.dll’ could not be found Dropthings.Widget.Framework
Metadata file ‘…\Dropthings-v2.2.0\src\DashboardBusiness\bin\Debug\Dropthings.Business.dll’ could not be found. …\Dropthings-v2.2.0\src\Dropthings.Business.Facade
Metadata file ‘…\Dropthings-v2.2.0\src\DashboardDataAccess\bin\Debug\Dropthings.DataAccess.dll’ could not be found. …\Dropthings-v2.2.0\src\Dropthings.Business.Facade
Metadata file ‘…\Dropthings-v2.2.0\src\DashboardDataAccess\bin\Debug\Dropthings.DataAccess.dll’ could not be found Dropthings.Web.Framework
Metadata file ‘…\Dropthings-v2.2.0\src\Dropthings.Business.Workflows\bin\Debug\Dropthings.Business.Workflows.dll’ could not be found Dropthings.Web.Framework
Metadata file ‘…\Dropthings-v2.2.0\src\Dropthings.Business.Activities\bin\Debug\Dropthings.Business.Activities.dll’ could not be found Dropthings.Web.Framework
Metadata file ‘…\Dropthings-v2.2.0\src\Dropthings.Widget.Framework\bin\Debug\Dropthings.Widget.Framework.dll’ could not be found Dropthings.Web.Framework
Metadata file ‘…\Dropthings-v2.2.0\src\Dropthings.Business.Facade\bin\Debug\Dropthings.Business.Facade.dll’ could not be found Dropthings.Web.Framework
Metadata file ‘…\Dropthings-v2.2.0\src\DashboardBusiness\bin\Debug\Dropthings.Business.dll’ could not be found Dropthings.Web.Framework
The type or namespace name ‘Framework’ does not exist in the namespace ‘Dropthings.Web’ (are you missing an assembly reference?) …\Dropthings-v2.2.0\src\Dropthings\web.config

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T00:24:05+00:00Added an answer on May 14, 2026 at 12:24 am

    It could possibly be the hardcoded connection string in the dbml file:

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

    You’re getting a build error on that:

    ..\Dropthings-v2.2.0\src\DashboardBusiness Build failed due to validation errors in
    …\Dropthings-v2.2.0\src\DashboardDataAccess\DropthingsDataContext.dbml. Open the file and resolve the issues in the Error List, then try rebuilding the project.

    So you probably need to fix that connectionString to point your local MDF file (assuming you’re using SQLEXPRESS) or a database.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
Seemingly simple, but I cannot find anything relevant on the web. What is the
I want to count how many characters a certain string has in PHP, but
I have a French site that I want to parse, but am running into
I need to clean up various Word 'smart' characters in user input, including but
Does anyone know how can I replace this 2 symbol below from the string
this is what i have right now Drawing an RSS feed into the php,
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.