Replies: 4 comments 3 replies
-
I'm not (yet) familiar with the possibilities of AL-Go, where I mostly work in Azure DevOps myself. The documentation states that you can pass a URL for a CustomCodeCops it seems. Can you try to pass the this URL and see if this works? |
Beta Was this translation helpful? Give feedback.
-
The reason for this not working is, that despite the documentation saying so, CustomCodeCops cannot be a URL today in AL-Go for GitHub. When that has merged, you would need to add "vsixFile": "latest" to your settings file as well as the Lintercop from @StefanMaron requires the latest AL Language Exrension. You can see a test run with the Lintercop here: https://github.com/BusinessCentralApps/buildorder/actions/runs/8679462223 |
Beta Was this translation helpful? Give feedback.
-
Do I need to wait for a new release or should it work immediately? |
Beta Was this translation helpful? Give feedback.
-
Awesome news, the version 6.0.16 of the BcContainerHelper is released and it works perfectly 🤗 In the settings.json file you can specify the url to dll file of the LinterCop (and enable downloading the latest VSIX). {
"vsixFile": "latest",
"customCodeCops": [
"https://github.com/StefanMaron/BusinessCentral.LinterCop/releases/latest/download/BusinessCentral.LinterCop.current.dll"
]
} I'll update the documentation on using the LinterCop with AL-Go in the next few days. |
Beta Was this translation helpful? Give feedback.
-
Is there a way to download the LinterCop DLL without editing the default workflow? I'd like to keep the default as much intact as possible for the sake of compatibility, but since we've started customizing LC rule actions for our projects, I'd like our CI/CD pipelines to do the same.
I understand that this blog post is already a good explanation on how to retrieve a build, but this requires editing the workflow YAML.
Is it possible to include LC to AL Go's CI/CD using the configuration files only?
Beta Was this translation helpful? Give feedback.
All reactions