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
These paths will be modified to contain a '' in the end, causing the output to be copied to the wrong directory with the wrong name, e.g. (file 'bin\some_lib.dll' will be placed under build/ instead of build/bin/some_lib.dll)
The text was updated successfully, but these errors were encountered:
as far as I remember this was required because msbuild tasks on windows didn't append the separator automatically (and generated paths using string concat were completely off).
One would have to check if mono msbuild also requires this, and either add the proper sep for mono, or not add it at all.
Under Msbuild.groovy we have the code
which doesn't look right on a Unix environment.
I have a case similar to the documented help:
These paths will be modified to contain a '' in the end, causing the output to be copied to the wrong directory with the wrong name, e.g. (file 'bin\some_lib.dll' will be placed under build/ instead of build/bin/some_lib.dll)
The text was updated successfully, but these errors were encountered: