Lỗi misa could not find a part of path report

I know there is another question with exact the same problem, but I went trough all those answers, and none helped me. :[ [This was the question.]

I just created a new ASP.NET MVC project and joined a few '.dll's in the solution. Now when I try to build the project I get the error message shown below on 3 of the 5 libraries.

Error   CS0006  Metadata file 'C:\Users\...\source\Database\bin\Debug\DataAccessLayer.dll' could not be found   Logic   C:\Users\...\source\Logic\CSC   1   Active
Error   CS0006  Metadata file 'C:\Users\...\source\Logic\bin\Debug\Logic.dll' could not be found    PTS2-MVC    C:\Users\...\source\PTS2-MVC\CSC    1   Active
Error   CS0006  Metadata file 'C:\Users\...\source\PTS2-MVC\bin\PTS2-MVC.dll' could not be found    PTS2-MVC.Tests  C:\Users\...\source\PTS2-MVC.Tests\CSC  1   Active

When I go to the bin\debug folder of that .dll, I see that it is empty, and the other .dll where I do not get an error message, is not empty. But I am clueless how to fix this or what I did to make this happen.

The most common answer is to go to the properties of the solution and go to configuration and uncheck -> apply -> check and apply again, but that didn't work

JYelton

35.9k27 gold badges134 silver badges193 bronze badges

asked May 29, 2017 at 22:37

9

The problem was that I had some other normal error messages in my project, and apparently after I fixed those and when I cleaned and built my project AGAIN, then all .dlls succeeded.

Make sure you don't have any other error messages in your project and if you do, fix those first!

answered May 30, 2017 at 9:15

SvenmarimSvenmarim

3,6835 gold badges24 silver badges58 bronze badges

14

Steps in Fixing this Error: MetaData File .dll could not be found.

  1. Clean All Projects.
  2. Unload All Projects.
  3. Reload All Projects.
  4. ReBuild Solution.

Then problem solved.

answered Oct 27, 2017 at 5:46

rjay dadularjay dadula

6004 silver badges3 bronze badges

3

In my case, there was an error, but it was not properly parsed out by VS and shown in the "Error List" window. To find it, you much view the ol "Output" from build window and parse through the messages starting from top down and resolve the actual error. M$, please fix! This is a huge waste of time of the worlds collective developers.

answered Jan 18, 2018 at 7:34

ebol2000ebol2000

1,23513 silver badges16 bronze badges

1

Double check the name of your project folder. In my case my project folder was named with spaces in it. When I cloned the project from Team Foundation Server using git bash the spaces in the folder name were converted to: "%20". Changing those back to spaces fixed the problem for me.

answered Dec 12, 2017 at 21:17

roscoeleeroscoelee

1811 silver badge5 bronze badges

3

I had this issue with a solution containing multiple projects.

It came from duplicating a .csproj and adding the copy to the solution. A .csproj file contains a element. I set the GUID of the copied project to a new one.

Update: Which GUID you use doesn't matter, it just needs to be different from the other project's GUID. You can create a new GUID from within Visual Studio: Tools -> Create GUID and copy the part between the curly brackets, i.e. {...}. Use that as the new value for the element.

I also performed the following steps [not neccessarily neccessary, but they don't hurt]:

  1. Close the solution
  2. Delete bin folder
  3. Delete all obj folders
  4. Open solution and build

answered Dec 20, 2017 at 9:49

j00hij00hi

5,5103 gold badges46 silver badges83 bronze badges

0

I fix this problem following this steps:

  1. Clean Solution
  2. Close Visual Studio
  3. Deleting /bin from the project directory
  4. Restart Visual Studio
  5. Rebuild Solution

answered Aug 20, 2018 at 14:33

Lucas PrestesLucas Prestes

3821 gold badge4 silver badges19 bronze badges

1

Another thing that you should check is the Target Framework of any referenced projects to make sure that the calling project is using the same or later version of the framework.

I had this issue, I tried all of the previously suggested answers and then on a hunch checked the frameworks. One of projects being referenced was targeting 4.6.1 when the calling project was only 4.5.2.

answered Jan 12, 2018 at 0:39

RobRob

511 silver badge3 bronze badges

1

For me cleaning and building didn't work. Unloading the project didn't work. Restarting Visual Studio or even the pc didn't work. This is what did work:

Go to each of the projects that are throwing the error, and in References, delete the reference to the problematic project and add it again. That solves the issue.

The problem seems to be related to moving a project around [Move it inside a folder for example], then a different project that references it, have its path wrong and can't find it.

answered Aug 30, 2018 at 14:57

David PerezDavid Perez

4785 silver badges17 bronze badges

1

I had the same problem, even with no other errors showing on the "Error List" view after "Rebuild Solution". However, on the "Output" view, I saw the error that was behind the issue:

The primary reference "C:...\myproj.dll" could not be resolved because it was built against the ".NETFramework,Version=v4.6.1" framework. This is a higher version than the currently targeted framework ".NETFramework,Version=v4.5"

Once I corrected this, the issue was resolved.

answered Oct 2, 2018 at 9:04

I have the same problem, the problem was that solution path have spaces in the name and vs for some reason not resolve the package... download my repository again just renaming the solution with out spaces in the name.

e.g:

/Repo/Project Name/src

should be

/Repo/ProjectName/src

answered Jan 13, 2018 at 17:30

D__D__

1411 silver badge5 bronze badges

1

What worked for me:

Package Manager Console [Visual Studio 2019 Comunity]:

Install-Package NuGet.CommandLine
nuget locals all -clear

Rebuild solution.

answered Aug 28, 2019 at 9:31

s3cs3c

1,50119 silver badges30 bronze badges

I have build 10 projects out of 25 projects in solution individually one by one based on dependencies. Then build the solution. It fixed for me

answered Jan 12, 2020 at 17:17

Siva SankaranSiva Sankaran

1,5614 gold badges21 silver badges40 bronze badges

1

Running this command in bash to delete all bins worked for me

$ find . -iname "bin" -o -iname "obj" | xargs rm -rf

Can't guarantee it'll work for anyone else though

Also be aware it'll delete all bin files -so you will have to rebuild all projects. Obviously best to cd into the relevant directory before using it.

answered Feb 20, 2018 at 17:16

Cleaning my solution caused this problem with Visual Studio 2017. Unloading/reloading projects or more cleaning made no difference. Only thing that worked was closing and restarting Visual Studio.

answered Mar 21, 2018 at 20:20

John81John81

3,8166 gold badges39 silver badges58 bronze badges

1

Check all the projects are loaded. In my case one of the project was unloaded and reloading the project clears the errors.

answered Jun 26, 2018 at 5:13

MaryamMaryam

1,4274 gold badges19 silver badges33 bronze badges

In my case, I had to open the .csproj file and add the reference by hand, like this [Microsoft.Extensions.Identity.Stores.dll was missing]:


  ..\..\..\..\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.identity.stores\2.0.1\lib\netstandard2.0\Microsoft.Extensions.Identity.Stores.dll

answered Oct 4, 2018 at 19:28

Close Visual Studio, find the solution's .suo file, delete it, reopen Visual Studio.

answered Mar 7, 2019 at 15:18

Graham LaightGraham Laight

4,7303 gold badges30 silver badges30 bronze badges

I had the same problem and i tried solutions from Metadata file '.dll' could not be found

but none of these worked.

So after trial and error i fixed it by unloading and reloading the project doing this reset the configuration file and fixed the issue.

answered May 30, 2019 at 6:33

In my case I was facing same error. One of my project solution was referring an assembly from different NuGet location. I just changed it to correct location to solve this error and rebuild. and wow the project get build successfully and all other error gone away.

answered Feb 5, 2018 at 14:30

I had this same error. In my case I had built a library [call it commsLibrary] that referenced other libraries by including them as projects in my solution. Later, when I built a project and added my commsLibrary, whenever I would build I got the metadata file cannot be found error. So I added the libraries that my comms library referenced to the current project, then it was able to build.

answered Jun 26, 2018 at 21:52

After facing so many troubles, here is the solution that I found.

  1. open your project folder.
  2. find Your_Project_Name.csproj[Visual C# Project file [.csproj]]
  3. open that file in any text editor and find your missing file ItemGroup.

    /Repo/Project Name/src

    0
  4. remove that ItemGroup and open once again your project and build
  5. If that reference is important for you then add once again.

rptwsthi

10.1k10 gold badges69 silver badges109 bronze badges

answered Dec 20, 2018 at 7:10

I had the same issue. My problem was someone else on the team moved a class folder, and the project was looking for it.

For me, there were 44 errors; 43 ended in .dll [searching for a dependency] and the first one in the error list ended with .cs [searching for the actual class]. I tried clean-build, and clean, unload, reload, build, but nothing working. I ended up locating the class in the project, and just deleted it, as it was showing up as unavailable anyways, followed by a clean-build.

That did the trick for me! Hope this helps.

answered Feb 22, 2019 at 13:57

I had 2 files [and 2 classes] in the same project with the same name.

answered Mar 20, 2019 at 19:33

JohnBJohnB

18.3k16 gold badges98 silver badges110 bronze badges

In my case, I deleted one file directly from team explorer git menu which was causing this problem. When I checked solution explorer it was still showing the deleted file as unreferenced file. When I removed that file from solution explorer, I was able to build project successfully.

answered Apr 10, 2019 at 3:43

p4ulinuxp4ulinux

3295 silver badges14 bronze badges

For me what worked was:

Uninstall and then reinstall the referenced Nuget package that has the error.

answered May 28, 2019 at 18:51

AndrewAndrew

19.1k13 gold badges105 silver badges118 bronze badges

In my case I run the tests and got error CS0006. It turned out that I run tests in Release mode. Switch to Debug mode fixed this error.

answered Jun 24, 2019 at 11:38

izimikyizimiky

991 silver badge3 bronze badges

This issue happens when you renamed your solution and the .net framework cannot find the old solution.

To resolve this, you need to find and replace the old name of solution and all dependencies on it with the new name. If you need to browse the physical file through file explorer do so.

The files that are normally affected are

/Repo/Project Name/src

1,

/Repo/Project Name/src

2 an

/Repo/Project Name/src

3 name and Default namespace. Make sure to update them with the new name.

Open the file explorer, if the folder with the old name still exists, you need to delete it. Then clean and build the solution until the error is gone. [If needed clean and build the project one by one especially the affected project.]

Matthew

1,9133 gold badges19 silver badges27 bronze badges

answered Mar 26, 2018 at 3:34

In my case the issue was, I was referencing a project where I commented out all the

/Repo/Project Name/src

4 files.

For example ProjectApp references ProjectUtility. In ProjectUtility I only had 1

/Repo/Project Name/src

4 file. I wasn't using it anymore so I commented out the whole file. In ProjectApp I wasn't calling any of the code from ProjectUtility, but I had

/Repo/Project Name/src

6 in one of the ProjectApp

/Repo/Project Name/src

4 files. The only error I got from the compiler was the CS0006 error.

I uncommented the

/Repo/Project Name/src

4 file in ProjectUtility and the error went away. So I'm not sure if having no code in a project causes the compiler to create an invalid assembly or not generate the DLL at all. The fix for me was to just remove the reference to ProjectUtility rather than commenting all the code.

In case you were wondering why I commented all the code from the referenced project instead of removing the reference, I did it because I was testing something and didn't want to modify the

/Repo/Project Name/src

9 file.

answered Nov 8, 2019 at 16:24

iheartcsharpiheartcsharp

1,2991 gold badge14 silver badges22 bronze badges

After working through a couple of issues in dependent projects, like the accepted answer says, I was still getting this error. I could see the file did indeed exist at the location it was looking in, but for some reason Visual Studio would not recognize it. Rebuilding the solution would clear all dependent projects and then would not rebuild them, but building individually would generate the .dll's. I used

/Repo/ProjectName/src

0 in the developer PowerShell terminal in Visual Studio, meaning to get some more detailed debugging information--but it built for me instead! Try using

/Repo/ProjectName/src

1 against persistant build errors; you can use the

/Repo/ProjectName/src

2 option to get more output, as outlined in the docs.

Chủ Đề