So I have looked, but cannot find.
How do you pass command line arguments to vscode for the Gradle build.
For example:
How would I pass ‘–warning-mode all’ so that when
I run a build the option would be executed.
Thanks
So I have looked, but cannot find.
How do you pass command line arguments to vscode for the Gradle build.
For example:
How would I pass ‘–warning-mode all’ so that when
I run a build the option would be executed.
Thanks
In settings.json in the .vscode folder, you can add the following to add arguments.
"wpilib.additionalGradleArguments": "--warning-mode=all"
Note that the deprecation warnings you are getting are caused internally in GradleRIO, and are not fixable by user code directly.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.