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.
In Jenkins Configure System, section VB6 Builder, set the VB6.exe path.
In a job configuration add a VB6 build step and define the path to the project file.
In a declarative pipeline use:
pipeline {
agent any
stages {
stage('build') {
steps {
vb6 'Project1.vbp'
}
}
}
}
http://zbz5.net/automating-build-visual-basic-6-project
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.
- Add line numbers to project before compilation