This repository was archived by the owner on Jun 5, 2019. It is now read-only.
VisualBasic.NET Build and Debug in VS2015#394
Merged
smaillet-ms merged 3 commits intoNETMF:devfrom Feb 26, 2016
Merged
Conversation
…Type" property so that netmfvb projects can build and deploy properly
- Fixed VB project templates to set Optimized property to false in debug configurations to enable debugging - Modified VSProject.cs to test for mscorlib as an explicit dependency and if not present, add it so that various versions of VS and MSBUild common project systems work correctly. - Added optional flavor flag in build_sdk to allow building the SDK as Debug. This helps in debugging working with the VS integration in debug mode as it builds all the dependencies in one pass.
| // false so it won't show in the IDE. By testing for it and adding it if not found | ||
| // both cases are covered. | ||
| var q = from path in table.OfType<string>( ) | ||
| where 0 == string.Compare( Path.GetFileName( path ), "mscorlib.dll", StringComparison.InvariantCultureIgnoreCase ) |
There was a problem hiding this comment.
I believe this should be OrdinalIgnoreCase comparison, invariant culture considers things equal that file system does not. And you can use string.Equals(string, string, StringComparison) for better readability.
|
👍 works for me |
- added Readme.md for the crypto libraries as the readme was left out from the original commit for the crypto libs
smaillet-ms
added a commit
that referenced
this pull request
Feb 26, 2016
VisualBasic.NET Build and Debug in VS2015
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.
Fixes #387