forked from NuGet/NuGet.Build.Packaging
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
34 lines (26 loc) · 749 Bytes
/
appveyor.yml
File metadata and controls
34 lines (26 loc) · 749 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
os: Visual Studio 2017
init:
- ps: >-
reg ADD "HKLM\Software\Microsoft\StrongName\Verification\*,*" /f
if ($env:PROCESSOR_ARCHITECTURE -eq "AMD64")
{
reg ADD "HKLM\Software\Wow6432Node\Microsoft\StrongName\Verification\*,*" /f
}
build_script:
- cmd: echo /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" >> msbuild.rsp
- cmd: build.cmd /restore
- cmd: build.cmd /release
install:
- cmd: git submodule update --init --recursive
# we run the tests ourselves in build.proj for coverage
test: off
nuget:
project_feed: true
disable_publish_on_pr: false
artifacts:
- path: 'out\*.nupkg'
name: Package
- path: 'out\*.vsix'
name: Extension
- path: 'msbuild.log'
name: Log