https://github.com/jenkinsci/visual-basic-6-plugin
Jenkins plugin for VB6 builder
https://github.com/jenkinsci/visual-basic-6-plugin
jenkins-plugin vb6 visual-basic-6
Last synced: 3 months ago
JSON representation
Jenkins plugin for VB6 builder
- Host: GitHub
- URL: https://github.com/jenkinsci/visual-basic-6-plugin
- Owner: jenkinsci
- License: mit
- Created: 2016-09-01T19:46:14.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2025-02-17T23:17:04.000Z (8 months ago)
- Last Synced: 2025-04-30T04:44:07.562Z (5 months ago)
- Topics: jenkins-plugin, vb6, visual-basic-6
- Language: Java
- Homepage: https://plugins.jenkins.io/visual-basic-6/
- Size: 91.8 KB
- Stars: 23
- Watchers: 5
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Visual Basic 6 Plugin
[](https://github.com/jenkinsci/visual-basic-6-plugin/releases)
[](https://plugins.jenkins.io/visual-basic-6)
[](https://ci.jenkins.io/blue/organizations/jenkins/Plugins%2Fvisual-basic-6-plugin/branches)
[](LICENSE)
[](https://javadoc.jenkins.io/plugin/visual-basic-6/)[Jenkins](https://jenkins.io/) plugin for [Visual Basic 6](https://msdn.microsoft.com/en-us/library/hh127509.aspx) 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.
In a job configuration add a VB6 build step and define the path to the project file.

In a [declarative pipeline](https://jenkins.io/doc/book/pipeline/syntax/#declarative-pipeline) use:
```
pipeline {
agent anystages {
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