-
Notifications
You must be signed in to change notification settings - Fork 11
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
Combine multiple DLLs into single final DLL #17
Comments
This was mistakenly closed; the referenced commit is irrelevant. |
I haven't been able to confirm that SDK projects targeting .NET Framework don't support single-file publish, but simply adding (We're still on .NET Framework because VS -- and visualizers written for it -- is still on .NET Framework.) |
Current attempt is at https://github.com/zspitz/ANTLR4ParseTreeVisualizer/tree/single-file and failing. The visualizer DLLs compile, but only
|
Some progress: After setting CreateTemporaryAssemblies="true", the DLLs seem to be loading properly on the debugger side, but failing on the debuggee side, for .NET Core. (.NET Framework works without a problem.) Presumably, if we split the debugger and debuggee sides, that would resolve the issue. Alternatively, we could simply ignore assembly-loading issues, including this one. |
Related: zspitz/ExpressionTreeVisualizer#80
This would be useful for #5, and also for #9 if we need to include our own copy of JSON.NET.
The text was updated successfully, but these errors were encountered: