Change CoreLibrary debug type from portable to full #153
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.
This will allow mscorlib (CoreLibrary) to be debugged in Visual Studio. Likely problem was that we are limited to the framework debugger and "full" must be specified to use the older debugger with nfproj projects.
Description
Simple change of the DebugType to "full". Since the nano libraries are not core sdk they probably need to run with the framework debugger and use full for the debug type.
Motivation and Context
Allows debugging of CoreLibrary C# code when we make changes to CoreLibrary.
How Has This Been Tested?
Tested with a hello world application using CoreLibrary and System.Text. System.Text already worked - could be debugged. CoreLibrary (mscorlib) would not load symbols and could not be debugged. Changed nfproj files and now the symbols are loaded for mscorlib. Ran all unit tests for CoreLibrary.
Screenshots
Types of changes
Checklist: