forked from grecosoft/NetFusion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
43 lines (35 loc) · 1.01 KB
/
appveyor.yml
File metadata and controls
43 lines (35 loc) · 1.01 KB
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: 3.2.{build}
image: Visual Studio 2019
branches:
only:
- master
pull_requests:
do_not_increment_build_number: true
before_build:
- ps: dotnet restore ./netfusion/NetFusion.sln
build_script:
- ps: msbuild "/t:Restore;Pack" .\netfusion\NetFusion.sln /p:VersionPrefix="$env:APPVEYOR_BUILD_VERSION"
test_script:
- ps: dotnet test .\netfusion\test\CommonTests\CommonTests.csproj
- ps: dotnet test .\netfusion\test\CoreTests\CoreTests.csproj
- ps: dotnet test .\netfusion\test\WebTests\WebTests.csproj
- ps: dotnet test .\netfusion\test\IntegrationTests\IntegrationTests.csproj
artifacts:
- path: netfusion\src\**\*.nupkg
name: MyGet
deploy:
- provider: NuGet
artifact: MyGet
api_key:
secure: c/FNue2mw27B5A0B1V+pAtSl22XoSqSMu6pj8xIlKGdwAEqoCq7HRxtTqsJl/m1L
skip_symbols: false
skip_commits:
message: /\[nobuild\]/
files:
- '**/*.md'
- 'clients\**\*'
- 'examples\**\*'
- 'img\**\*'
- 'packages\**\*'
- 'tools\**\*'
- 'tutorial\**\*'