Packaging clrjit.dll in a Single File Executable #107377
Unanswered
TonyValenti
asked this question in
Q&A
Replies: 1 comment 5 replies
-
For single-file the JIT is statically linked into the executable. Simple console app should produce just one executable with single-file, no external dlls. The way this is done is that the prebuilt single-file exe already includes the JIT (and the rest of the runtime) and SDK only adds managed code into it. Does your app work as single-file, or is there some other reason you're looking into this? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a single-file app that requires clrjit be packaged with it.
When I build in debug, I can see the file in the
win-x64
directory but when I publish with single-file, the DLL is nowhere to be found in the%temp%\.net
folder. It seems like it is not packaged at all.How do I ensure this file is packaged?
Here is my pubxml:
Thanks so much for the help!
Beta Was this translation helpful? Give feedback.
All reactions