You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For large projects with many files or a deeply nested structure, the add-in can not compile the project because the generated command line is too long.
This problem exists when trying to compile using either MSBuild or the native MonoDevelop language binding method.
While not directly preventable, we can be smarter about using relative paths whenever possible to mitigate this issue. Alternatively, we can create a temporary file to hold the list of of .cobra file names and pass that to the compiler instead using the -files: compiler parameter.
The text was updated successfully, but these errors were encountered:
The actual project that triggered this has since been restructured we'll need a dummy project in the add-in test data that can be used to reproduce and fix this bug.
For large projects with many files or a deeply nested structure, the add-in can not compile the project because the generated command line is too long.
This problem exists when trying to compile using either MSBuild or the native MonoDevelop language binding method.
While not directly preventable, we can be smarter about using relative paths whenever possible to mitigate this issue. Alternatively, we can create a temporary file to hold the list of of
.cobra
file names and pass that to the compiler instead using the-files:
compiler parameter.The text was updated successfully, but these errors were encountered: