Created
December 1, 2015 20:20
-
-
Save spboyer/898ef7336a42afc40043 to your computer and use it in GitHub Desktop.
Travis example for building a csharp solution
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: csharp | |
solution: myapp.sln | |
sudo: false | |
mono: | |
- latest | |
install: | |
- curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_BRANCH=dev sh && source ~/.dnx/dnvm/dnvm.sh | |
- dnvm upgrade | |
- dnu restore | |
os: | |
- linux | |
- osx | |
script: | |
- dnu build **/project.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment