Getting “type or namespace name could not be found” but everything seems ok?

后端 未结 30 1090
北海茫月
北海茫月 2020-11-22 09:27

I\'m getting a:

type or namespace name could not be found

error for a C# WPF app in VS2010. This area of code was compiling fine

30条回答
  •  长情又很酷
    2020-11-22 09:45

    Reinstalling nuget packages did the trick for me. After I changed .NET Framework versions to be in sync for all projects, some of the nuget packages (especially Entity Framework) were still installed for previous versions. This command in Packages Manager Console reinstalls packages for the whole solution:

    Update-Package –reinstall
    

提交回复
热议问题