-
Notifications
You must be signed in to change notification settings - Fork 7
/
appveyor.yml
49 lines (49 loc) · 1.26 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
version: 1.0.{build}
image: Visual Studio 2017
configuration: Release
platform: Any CPU
skip_branch_with_pr: true
skip_tags: true
environment:
SonarExclusions: coverage\**\*,**\*.xml,**\*.js,tscoverage\**\*,**\jestsetup.ts,**\*.ico,**\Program.cs,**\Startup.cs,**\node_modules\*,**\wwwroot\dist\*
SonarKey:
secure: pwFVmNEo0UwGFSQApyjms1+OFndkimAVvHLWjvqHHAvIUX1OCIvJcPKJUL1Sq50i
SonarGithubKey:
secure: fggX8ZEkU6nTXAwvWJLMDtlK+qpFSF1LBlPeICGpeZ+VHlY0/n0taX/uBvhoLcnw
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
before_build:
- ps: >-
& .\before_build.ps1
build:
project: stage5\opensourceci.sln
publish_wap_xcopy: true
verbosity: minimal
test_script:
- ps: >-
& .\test_script.ps1
after_test:
- ps: >-
& .\after_test.ps1
artifacts:
- path: publish
type: Zip
deploy:
- provider: AzureAppServiceZipDeploy
appservice_environment: false
website: techatagoda180731
username: techatagoda180731
password:
secure: t2wUdySB2La3RfdpTZhkCA==
artifact: publish.zip
notifications:
- provider: GitHubPullRequest
on_build_success: true
on_build_failure: true
on_build_status_changed: true