We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In #1905 a backslash is added when the output param is set, as a fix for #896 Unfortunateley this breaks on Unix, as it expects a / rather than a \
output
/
\
@theimowski writes in 1905:
This seems to break older versions of mono, for XBuild Engine Version 14.0 Mono, Version 4.6.1.0 xbuild tries to copy assemblies to a path with a backslash: Copying file from '$BUILD_DIR/packages/NUnit/lib/nunit.framework.dll' to '$BUILD_DIR/test\nunit.framework.dll' and fails to do so because that's a unix box.
This seems to break older versions of mono, for XBuild Engine Version 14.0 Mono, Version 4.6.1.0
xbuild tries to copy assemblies to a path with a backslash:
Copying file from '$BUILD_DIR/packages/NUnit/lib/nunit.framework.dll' to '$BUILD_DIR/test\nunit.framework.dll'
and fails to do so because that's a unix box.
We should detect if we're running on a Windows or a unix and and the correct slash to the end.
The text was updated successfully, but these errors were encountered:
dce8d15
Merge pull request #2021 from JarnoNijboer/fix-2020
98074fb
Fix #2020 add slash instead of backslash on a non windows platform
No branches or pull requests
In #1905 a backslash is added when the
output
param is set, as a fix for #896Unfortunateley this breaks on Unix, as it expects a
/
rather than a\
@theimowski writes in 1905:
We should detect if we're running on a Windows or a unix and and the correct slash to the end.
The text was updated successfully, but these errors were encountered: