appveyor.yml 396 B

1234567891011121314151617
  1. version: 1.1.0.{build}
  2. install:
  3. - cmd: cinst nsis
  4. - ps: |
  5. $url='http://download.microsoft.com/download/7/B/6/7B629E05-399A-4A92-B5BC-484C74B5124B/dotNetFx40_Client_setup.exe'
  6. if (!(Test-Path (Split-Path $url -Leaf))) {
  7. Start-FileDownload $url
  8. }
  9. assembly_info:
  10. patch: true
  11. configuration:
  12. - Debug
  13. - Release
  14. before_build:
  15. - nuget restore
  16. cache:
  17. - dotNetFx40_Client_setup.exe