Skip to content

Instantly share code, notes, and snippets.

@bolorundurowb
Last active February 7, 2019 04:47
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bolorundurowb/203c738c26c445cf80a554b3f5a446e9 to your computer and use it in GitHub Desktop.
Save bolorundurowb/203c738c26c445cf80a554b3f5a446e9 to your computer and use it in GitHub Desktop.
A sample Circle CI config for a C# (csharp) .NET/Mono application
#
# Build configuration for Circle CI
#
dependencies:
override:
- sudo 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-get install mono-complete
- wget https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
- mono nuget.exe restore solution-name.sln
- xbuild /p:Configuration=Release solution-name.sln
test:
override:
- echo "test"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment