This repository was archived by the owner on Nov 1, 2020. It is now read-only.
Fix F5 debugging of ILCompiler project#5422
Merged
MichalStrehovsky merged 1 commit intodotnet:masterfrom Feb 22, 2018
jkotas:fix-debugging
Merged
Fix F5 debugging of ILCompiler project#5422MichalStrehovsky merged 1 commit intodotnet:masterfrom jkotas:fix-debugging
MichalStrehovsky merged 1 commit intodotnet:masterfrom
jkotas:fix-debugging
Conversation
Trying to debug ILCompiler in Visual Studio was failing with missing assemblies. The problem was caused by recently added libLLVMdep.depproj reference that made NuGet delete certain files from the output tools directory. The fix is to move the .depproj reference to a different part of the build next to other similar .depproj reference where it won't be confusing NuGet.
Contributor
|
Thank you! This fixes a really painful problem |
Contributor
|
It looks like this still doesn't work quite right. It does fix the missing NuGet dependencies, but VS build is still deleting libllvm.dll from the tools directory. |
Member
Author
|
That has to do with the HostOS hack discussed here: #5297 (comment) #5427 should fix it. |
kbaladurin
pushed a commit
to kbaladurin/corert
that referenced
this pull request
Mar 15, 2018
Trying to debug ILCompiler in Visual Studio was failing with missing assemblies. The problem was caused by recently added libLLVMdep.depproj reference that made NuGet delete certain files from the output tools directory. The fix is to move the .depproj reference to a different part of the build next to other similar .depproj reference where it won't be confusing NuGet.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Trying to debug ILCompiler in Visual Studio was failing with missing assemblies. The problem was caused by recently added libLLVMdep.depproj reference that made NuGet delete certain files from the output tools directory. The fix is to move the .depproj reference to a different part of the build next to other similar .depproj reference where it won't be confusing NuGet.