blob: eaf1aee00dc819c9b830e1e4f58aa74397fd9ecc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
version: "{branch}-{build}"
install:
- ps: (new-object net.webclient).DownloadFile('http://coapp.org/files/CoApp.Tools.Powershell.msi', 'C:\CoApp.Tools.Powershell.msi')
- ps: Start-Process -FilePath msiexec -ArgumentList /i, 'C:\CoApp.Tools.Powershell.msi', /quiet -Wait
- ps: $env:PSModulePath = $env:PSModulePath + ';C:\Program Files (x86)\Outercurve Foundation\Modules'
- ps: Import-Module CoApp
build_script:
- ps: .\scripts\nuget_build.bat
test_script:
- ps: .\tests\autotest-appveyor.ps1
artifacts:
- path: .\scripts\*.nupkg
|