You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
548 B

  1. version: 0.{build}
  2. image: Visual Studio 2017
  3. pull_requests:
  4. do_not_increment_build_number: true
  5. # scripts to run before build
  6. before_build:
  7. - nuget restore
  8. - dotnet restore
  9. configuration: Release
  10. build:
  11. project: Minio.sln
  12. publish_nuget: true
  13. publish_nuget_symbols: true
  14. test:
  15. # only assemblies to test
  16. assemblies:
  17. only:
  18. - '**\*.Tests.dll'
  19. assembly_info:
  20. patch: true
  21. file: AssemblyInfo.*
  22. assembly_version: "{version}"
  23. assembly_file_version: "{version}"
  24. assembly_informational_version: "{version}"
  25. deploy: off