https://github.com/mattdrivendev/fsharp.test
.NET 4 F# Console App, to test against platforms.
https://github.com/mattdrivendev/fsharp.test
Last synced: 5 months ago
JSON representation
.NET 4 F# Console App, to test against platforms.
- Host: GitHub
- URL: https://github.com/mattdrivendev/fsharp.test
- Owner: MattDrivenDev
- Created: 2013-06-27T09:01:46.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-06-27T09:14:03.000Z (almost 13 years ago)
- Last Synced: 2025-06-13T22:11:28.710Z (about 1 year ago)
- Size: 465 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FSharp.Test
.NET 4 F# Console App, to test against platforms.
## Runs on Ubuntu 12.04 LTS, Just Fine:
Make sure that you have `VirtualBox` and `Vagrant` installed, then you can do the following (I'm using `Cygwin`)
```
# Just use the 'getting started' Ubuntu box from Vagrant Docs
vagrant init precise32 http://files.vagrantup.com/precise32.box
vagrant up
# SSH into the box
vagrant ssh
# ---- Now in the virtual Ubuntu machine
# Install Git
sudo apt-get install git-core
# Grab this app from Github and put it in a 'test' folder
git clone https://github.com/saxonmatt/FSharp.Test.git test
# Install the Mono runtime
sudo apt-get install mono-runtime
# Run the compiled FSharp app
mono test/FSharp.Test helloworld
```