I am getting below error when I am trying to run vb.net application on Linux through mono.
(HelloWorld.exe:965): WARNING **: The following assembly referenced from /root/HelloWorld/HelloWorld/bin/Debug/HelloWorld.exe could not be loaded:
开发者_运维问答 Assembly: Microsoft.VisualBasic (assemblyref_index=1)
Version: 8.0.0.0
Public Key: b03f5f7f11d50a3a
The assembly was not found in the Global Assembly Cache, a path listed in the MONO_PATH environment variable, or in the location of the executing assembly (/root/HelloWorld/HelloWorld/bin/Debug/).
Probably proper library is not installed in your system. If you are using ubuntu, try
sudo apt-get install mono-vbnc
Otherwise search for analogous package for your distribution. You can also compile it from here.
精彩评论