Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The referenced component 'Microsoft.VisualBasic' could not be found

Tags:

vb.net

enter image description here

Got this in my warnings from today, still don't know why, but seems like the entire solution is running perfectly.

Should I be worried?

Can I just remove it from References?

like image 823
fr0zie Avatar asked Sep 20 '25 08:09

fr0zie


1 Answers

The projects appear to reference Microsoft.VisualBasic, but if you check the csproj file you will see that they do not. If you remove the reference in Visual Studio that will fix it temporarily, but then closing and reopening Visual Studio makes the warning come back.

No, you should not be worried. This appears to be a bug in Visual Studio, hopefully they will fix it in the next version.

like image 141
Mark Nash Avatar answered Sep 23 '25 07:09

Mark Nash