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.

10 lines
347 B

  1. #!/usr/bin/env groovy
  2. @Library('pipeline-library')_
  3. def repoName = "itextcore"
  4. def dependencyRegex = ""
  5. def solutionFile = "iTextCore.sln"
  6. def frameworksToTest = "net461"
  7. def frameworksToTestForMainBranches = "net461;netcoreapp2.0"
  8. automaticDotnetBuild(repoName, dependencyRegex, solutionFile, frameworksToTest, frameworksToTestForMainBranches)