Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/en10/vbnc
Visual Basic .Net on *nix
https://github.com/en10/vbnc
dotnet mono vbnet visual-basic visualbasic
Last synced: about 1 month ago
JSON representation
Visual Basic .Net on *nix
- Host: GitHub
- URL: https://github.com/en10/vbnc
- Owner: EN10
- Created: 2016-11-11T15:21:33.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-06T19:16:45.000Z (about 6 years ago)
- Last Synced: 2024-04-15T06:49:32.812Z (9 months ago)
- Topics: dotnet, mono, vbnet, visual-basic, visualbasic
- Language: Shell
- Homepage: https://cs50.io
- Size: 10.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Visual Basic .Net on \*nix #
## Run on [macOS](https://github.com/EN10/VBNC/blob/master/macOS.md)
## VBNC Online
1. Register on www.edx.org
2. Login to http://cs50.ioOpen Terminal:
Click "+" -> New Teminal OR Alt + TYou can use Install, Compile & Run commands
Install (Only Once):
-
sudo apt update
sudo apt install mono-vbncCompile (Make .exe):
-
vbnc module1.vbRun:
-
mono module1.exeAdvanced
-
*Combine vbnc and mono, compile and execute commands in one*
Setup:chmod +x run
sudo cp run /usr/bin/
Compile & Run:run
**Upgrade to Latest Mono 4+:**
*Upgrading seems to be unstable: can cause issues with sudo and missing packages*
http://www.mono-project.com/docs/getting-started/install/linux/#debian-ubuntu-and-derivativessudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
sudo apt-get update
sudo apt upgrade