version.json 470 B

123456789101112
  1. {
  2. "version": "6.1",
  3. "publicReleaseRefSpec": [
  4. "^refs/heads/main$", // we release out of main
  5. "^refs/heads/rel/v\\d+\\.\\d+", // we also release branches starting with rel/vN.N
  6. "^refs/heads/rel/rx-v\\d+\\.\\d+" // we also release branches starting with rel/vN.N
  7. ],
  8. "nugetPackageVersion": {
  9. "semVer": 2
  10. },
  11. "versionHeightOffset": -1 // For reasons I continue not to understand, without this nbgv makes the first version 6.1.1 instead of 6.1.0
  12. }