forked from libimobiledevice-win32/ideviceinstaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
20 lines (17 loc) · 1.07 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
before_build:
- nuget restore
build_script:
- msbuild ideviceinstaller.sln /p:Configuration=Debug /p:Platform=Win32 /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
- msbuild ideviceinstaller.sln /p:Configuration=Release /p:Platform=Win32 /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
- msbuild ideviceinstaller.sln /p:Configuration=Debug /p:Platform=x64 /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
- msbuild ideviceinstaller.sln /p:Configuration=Release /p:Platform=x64 /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
on_success:
- cmd: choco install wget
- cmd: wget http://coapp.org/files/CoApp.Tools.Powershell.msi
- cmd: start /wait msiexec /qb /i CoApp.Tools.Powershell.msi
- ps: .\CreateNuGetPackage.ps1 -Build $ENV:APPVEYOR_BUILD_NUMBER
- cmd: appveyor PushArtifact ideviceinstaller.1.1.0.%APPVEYOR_BUILD_NUMBER%.nupkg
- cmd: appveyor PushArtifact ideviceinstaller.symbols.1.1.0.%APPVEYOR_BUILD_NUMBER%.nupkg
nuget:
project_feed: true
account_feed: true