Merge branch 'release/2.1' into dev

This commit is contained in:
Nate McMaster 2018-03-02 14:20:16 -08:00
commit 9786e28f52
No known key found for this signature in database
GPG Key ID: A778D9601BD78810
3 changed files with 27 additions and 30 deletions

View File

@ -1,26 +1,24 @@
image: Visual Studio 2017
init:
- git config --global core.autocrlf true
- git config --global core.autocrlf true
branches:
only:
- master
- /release\/.*/
- dev
- /^(.*\/)?ci-.*$/
- /^rel\/.*/
- dev
- /^release\/.*$/
- /^(.*\/)?ci-.*$/
build_script:
- ps: .\run.ps1 default-build
- ps: .\run.ps1 default-build
on_finish:
- ps: "7z a testlogs.zip testlogs"
- ps: "Push-AppveyorArtifact testlogs.zip"
- ps: 7z a testlogs.zip testlogs
- ps: Push-AppveyorArtifact testlogs.zip
install:
- ps: Install-Product node 8
- ps: Install-Product node 8
clone_depth: 1
environment:
global:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
ASPNETCORE_TEST_LOG_DIR: "$(APPVEYOR_BUILD_FOLDER)\\testlogs"
test: off
deploy: off
ASPNETCORE_TEST_LOG_DIR: $(APPVEYOR_BUILD_FOLDER)\testlogs
test: 'off'
deploy: 'off'
os: Visual Studio 2017

View File

@ -2,32 +2,29 @@ language: csharp
sudo: required
dist: trusty
services:
- docker
- docker
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
- SIGNALR_TESTS_VERBOSE: 1
- TRAVIS_NODE_VERSION: 8.9.3
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
- SIGNALR_TESTS_VERBOSE: 1
- TRAVIS_NODE_VERSION: 8.9.3
mono: none
os:
- linux
- osx
- linux
- osx
osx_image: xcode8.2
addons:
apt:
packages:
- libunwind8
- libunwind8
branches:
only:
- master
- /release\/.*/
- dev
- /^(.*\/)?ci-.*$/
- /^rel\/.*/
- dev
- /^release\/.*$/
- /^(.*\/)?ci-.*$/
before_install:
- nvm install $TRAVIS_NODE_VERSION
# Pull redis docker image so when test creates container it doesn't time out
- if test "$TRAVIS_OS_NAME" == "linux"; then docker pull redis; fi
- nvm install $TRAVIS_NODE_VERSION
- if test "$TRAVIS_OS_NAME" == "linux"; then docker pull redis; fi
script:
- ./build.sh
- ./build.sh

View File

@ -5,6 +5,8 @@
<UserSecretsId>aspnet-ChatSample-f11cf018-e0a8-49fa-b749-4c0eb5c9150b</UserSecretsId>
<!-- Don't create a NuGet package -->
<IsPackable>false</IsPackable>
<!-- Ensures the minification only runs on one target framework - avoids race in MSBuild. -->
<RunBundleMinify Condition=" '$(TargetFramework)' == 'net461' OR '$(CI)' == 'true' ">false</RunBundleMinify>
</PropertyGroup>
<ItemGroup>