-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Add option to Runner to analyze different stuff #17
Comments
We still won't handle paths like ../file.dll, because they will jump out of the build directory. How do we handle that? Do we throw everything in one output directory? Currently we recreate the paths relative to pwd, so dir/file.dll becomes build/dir/file.dll |
I believe we should just throw them in one directory, crashing in case of name clashes. |
In my opinion:
|
But the question is - will such a sophisticated structure accept references in base dir? |
Nope, we'll copy necessary dlls to every directory that contains modified binaries. |
I wonder how will it behave. Probably should be ok, it will load the assembly from the first directory, wherever our libs are called and then it will ignore the others. Am I right? |
The scenario I had on mind was even simpler. By sophisticated structure I meant project that actually consist of a core library, and (for example) two user interfaces, so that there are multiple output exes located in different places of the tree. They are, however, independent during execution. I think this structure should be quite familiar :) |
The text was updated successfully, but these errors were encountered: