-
Hi, I have issues since i updated from nuke 6 to nuke 8 ... i am sure that i was able to debug into the yml-generating code while using visual-studio or rider debugger for nuke _build.exe Even on develop branch inside the nuke repository. When and how is the Generator called for those nuke pipeline configuration actions, and how can i debug in there? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I did anwer myself .... Debugging the Generation i found the call of the ConfigurationGeneration which calls a instance by itself ... see: With those parameters i was able to debug my own Generator Extensions. |
Beta Was this translation helpful? Give feedback.
I did anwer myself ....
Debugging the Generation i found the call of the ConfigurationGeneration which calls a instance by itself ... see:
https://github.com/nuke-build/nuke/blob/develop/source/Nuke.Build/CICD/InvokeBuildServerConfigurationGenerationAttribute.cs#L50
With those parameters i was able to debug my own Generator Extensions.