The idea of this project is to build up-to-date vagrant file for compiling linux-based .net core-enabled VM.
As you know there is no "official" vagrant file from Microsoft and Docker images are provided instead. However, current version of Docker for Windows runs on 64bit Windows 10 only! The idea of this repository is to provide an easy option to test .net core apps in linux environment.
Quick Links:
Have an idea how to make the vagrant file better? The following options are available:
- Create issue with bug, enhancement or new feature requested
- Send pull request
- Let me know any other way ;)
- Virtual Box
- Vagrant
- (obsolete) Vagrant Omnibus to install chef on VM
- (obsolete) Vagrant Berkshelf Plugin to track chef package dependencies
c:\projects> git clone https://github.com/sprosin/vagrant-dotnet-core.git
c:\projects> cd vagrant-dotnet-core\
c:\projects\vagrant-dotnet-core> vagrant up
c:\projects\vagrant-dotnet-core> vagrant ssh
ubuntu@dotnetcore:~$ dotnet --version
ubuntu@dotnetcore:~$ cd src
ubuntu@dotnetcore:~/src$ mkdir consoleApp
ubuntu@dotnetcore:~/src$ cd consoleApp
ubuntu@dotnetcore:~/src/consoleApp$ dotnet new console
ubuntu@dotnetcore:~/src/consoleApp$ dotnet run
Hello World!