This commit is contained in:
Ryan Nowak 2018-02-13 20:10:53 -08:00 коммит произвёл Steve Sanderson
Родитель d3c57b53f6
Коммит 106f1ff2b6
2 изменённых файлов: 48 добавлений и 0 удалений

19
.appveyor.yml Normal file
Просмотреть файл

@ -0,0 +1,19 @@
init:
- git config --global core.autocrlf true
branches:
only:
- dev
- /^release\/.*$/
- /^(.*\/)?ci-.*$/
clone_depth: 1
environment:
global:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
test: 'off'
deploy: 'off'
os: Visual Studio 2017 Preview
# Everything above here copied from the ASP.NET Core configurations
build:
project: Blazor.sln

29
.travis.yml Normal file
Просмотреть файл

@ -0,0 +1,29 @@
language: csharp
sudo: required
dist: trusty
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
addons:
apt:
packages:
- libunwind8
mono: none
os:
- linux
- osx
osx_image: xcode8.2
branches:
only:
- dev
- /^release\/.*$/
- /^(.*\/)?ci-.*$/
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s
/usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib
/usr/local/lib/; fi
# Everything above here copied from the ASP.NET Core configurations
script:
- dotnet build Blazor.sln