-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathappveyor.yml
More file actions
43 lines (42 loc) · 935 Bytes
/
appveyor.yml
File metadata and controls
43 lines (42 loc) · 935 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
version: 1.0.{build}
image: Visual Studio 2017
branches:
only:
- master
pull_requests:
do_not_increment_build_number: true
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
environment:
ASPNETCORE_ENVIRONMENT: Production
install:
- ps: >-
Install-Product node 8
before_build:
- cmd: >-
dotnet restore Conduit.sln
build:
publish_wap_xcopy: true
parallel: true
verbosity: detailed
after_test:
- ps: dotnet publish ./src/Conduit.csproj -c Release -o ../../Publish/Release
artifacts:
- path: ./Publish/Release
name: PublishRelease
deploy:
- provider: AzureAppServiceZipDeploy
appservice_environment: false
website: conduit2
username: kdcllc-conduit
password:
secure: K3SnLbaaY9Q8zbg75JxW/A==
artifact: PublishRelease
on:
branch: master