forked from aspnet/IISIntegration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
27 lines (26 loc) · 815 Bytes
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
init:
# Reset dynamic port range from AppVeyor setting (1025-65535) to Windows default (49152-65535),
# to prevent conflicts with ANCM random ports (1025-48000).
- netsh int ipv4 show dynamicport tcp
- netsh int ipv4 set dynamic tcp start=49152 num=16384
- netsh int ipv4 show dynamicport tcp
- git config --global core.autocrlf true
branches:
only:
- master
- /^release\/.*$/
- /^(.*\/)?ci-.*$/
install:
- ps: .\tools\update_schema.ps1
- git submodule update --init --recursive
- net start w3svc
build_script:
- ps: .\run.ps1 default-build /p:SkipIISBackwardsCompatibilityTests=true /p:SkipIISForwardsCompatibilityTests=true
clone_depth: 1
environment:
global:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
test: 'off'
deploy: 'off'
os: Visual Studio 2017