https://github.com/binarymash/devenv-ubuntu-dotnet
Ubuntu 14.04 Desktop with .net core
https://github.com/binarymash/devenv-ubuntu-dotnet
Last synced: 12 months ago
JSON representation
Ubuntu 14.04 Desktop with .net core
- Host: GitHub
- URL: https://github.com/binarymash/devenv-ubuntu-dotnet
- Owner: binarymash
- Created: 2016-04-06T05:53:57.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-08T20:20:37.000Z (over 9 years ago)
- Last Synced: 2025-01-11T15:42:08.886Z (about 1 year ago)
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
##devenv-ubuntu-dotnet
This is a Vagrant box with Ubuntu 14.04 Desktop, .net core, Visual Studio Code
and several other development packages useful for developing web based applications
##Requirements
The following tools will need to be installed on your machine...
* Vagrant
* VirtualBox
##Installation
Run the following command line...
vagrant up
####Manual steps
Install the C# extension to Visual Studio Code
* Visual Studio Code > View > Command Palette
* ext install C#
##What's installed
* .NET core SDK - *preview 1 (dotnet-dev-1.0.0-preview1-002702)*
* .NET core - *RC2 (dotnet-sharedframework-microsoft.netcore.app-1.0.0-rc2-3002702)*
* Visual Studio Code - *1.1*
* git
* gulp
* npm
* yeoman
##Getting started
For the simplest .NET core application...
$ cd /vagrant/dev
$ mkdir helloWorld
$ cd helloWorld
$ dotnet new
$ dotnet restore
$ dotnet run
...or, use Yeoman to scaffold a project
$ yo aspnet