-
Notifications
You must be signed in to change notification settings - Fork 3
/
appveyor.yml
52 lines (42 loc) · 1 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
50
51
52
-
branches:
only:
- nuget
before_build:
- nuget restore Ghpr.MSTest/Ghpr.MSTest.sln
build_script:
- msbuild Ghpr.MSTest/Ghpr.MSTest.sln /p:Configuration=Release /t:Rebuild
after_build:
- nuget pack "Ghpr.MSTest/Ghpr.MSTest.csproj" -Prop Configuration=Release
artifacts:
- path: '*.nupkg'
name: nupkg
deploy:
provider: NuGet
server:
api_key:
secure: crLYbWXNgfrzYazkV18cEBRKnl90ee0wjWUfZGIDhkZcZg1ZlGbbsqRdr8JLmU3O
skip_symbols: false
artifact: nupkg
test:
assemblies:
- '**\*TestsExample.dll'
- '**\*TestsExample2.dll'
categories:
only:
- SuccessCategory
-
branches:
except:
- nuget
before_build:
- nuget restore Ghpr.MSTest/Ghpr.MSTest.sln
build_script:
- msbuild Ghpr.MSTest/Ghpr.MSTest.sln /p:Configuration=Release /t:Rebuild
test:
assemblies:
- '**\*TestsExample.dll'
- '**\*TestsExample2.dll'
categories:
only:
- SuccessCategory