-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
[wasm] Browser.targets: Fix .dlls being deployed to publish/
#96045
Conversation
IL-linked dlls get copied to the `publish/` directory when using AOT. This is because in `ProcessPublishFilesForWasm` target the `ResolvedFileToPublish` item ends with a copy of the original .dll files, even though they should be replaced with what was received from the nested publish.
…t better behavior with anti-viruses
80454d1
to
af9344e
Compare
Tagging subscribers to 'arch-wasm': @lewing Issue DetailsIL-linked dlls get copied to the
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me 👍
IL-linked dlls get copied to the
publish/
directory when using AOT. This is because inProcessPublishFilesForWasm
target theResolvedFileToPublish
item ends with a copy of the original .dll files, even though they should be replaced with what was received from the nested publish.