Visual Basic 6

Visual Basic 6 Plugin

Jenkins Plugins Jenkins Plugin installs Build Status MIT License javadoc

Jenkins plugin for Visual Basic 6 builder

Automating a build of a Visual Basic 6 has some challenges. This plugin aims to workaround some of these issues.

Usage

In Jenkins Configure System, section VB6 Builder, set the VB6.exe path.

ScreenShot

In a job configuration add a VB6 build step and define the path to the project file.

ScreenShot

In a declarative pipeline use:

pipeline {
  agent any

  stages {
    stage('build') {
      steps {
        vb6 'Project1.vbp'
      }
    }
  }
}

See also

http://zbz5.net/automating-build-visual-basic-6-project

FAQ

Q: Does the plugin change the major, minor and the revision numbers in vbp project before compile time?

A: Not at this time. Pull requests are welcome.

TODO Ideas

  • Add line numbers to project before compilation