Hi
can We run VB.Net windows Application (2.0 Framework) in Linux.
If possible what are the steps to follow.
Hi
can We run VB.Net windows Application (2.0 Framework) in Linux.
If possible what are the steps to follow.
Short answer: yes — many VB.NET 2.0 Windows apps can run on Linux, but results depend on what the app uses. As pointed out, Mono provides runtime support for VB.NET; for simple console and many WinForms apps this is usually enough. Apps that rely on WPF, heavy COM automation, native Windows-only DLLs, Windows Services or deep P/Invoke will need changes or won’t run.
Typical approaches and quick steps:
Example commands (run from a shell):
mono --version
mono MyApp.exe
# or with Wine
wine MyApp.exe
# to build from a solution on Linux
msbuild MySolution.sln # or xbuild MySolution.sln on older Mono Common pitfalls and troubleshooting:
Practical guidance: test on the target Linux distro early, run the app from a terminal to capture errors, and decide whether a quick Wine/Mono run or a port to a cross-platform stack is the better long-term path.
Jump to Post— kvprajapati 1,826Yes! we can. Visual Basic.NET runtime has been available for Mono.
Hi
Thanks for the reply
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.