Closed
Conversation
* This generally impacts only the testing as the test adapter and framework are bumped.
* Resolved MSTEST* analyzer warnings by adjusting code to use new APIs
* Added parallelization optimizations for the test runs.
- on a 24 Core machine this amounted to ~70% improvement in completion time
- Though the total time was under 1s, it is now under 100ms
* Adjusted repo wide targets to ensure `NuGet` forlder exists
- This ensures that it exists for any restore so that it is considered as
a valid source of packages.
- This is useful for debugging/testing of CI variants of dependent packages
* Made comparison CaseSensitive static class public so it is usable by callers that need explicit handling of potentially mixed sources.
- This can lead to unexpected results even if consistent. The use of case in SemVer is sadly ambiguos and different major public repos (NuGet and npm as examples) have chosen different behaviors so users need to be clear on the behavior. Use of explicit overrides allows
such a thing in the case of mixed case expectation.
- Renamed `ResourcesExtensions.AsFormat()` -> `ResourcesExtensions.ParseAsFormat()` for greater clarity of intent/behavior.
* Added use of `StringSyntaxAttribute` to resource extensions.
* Added check for formatter support of ordering to ensure it reports an error message that hopefully makes sense.
* General re-formatting and docs clarifications
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Updated dependencies.
NuGetforlder existsa valid source of packages.
such a thing in the case of mixed case expectation.
ResourcesExtensions.AsFormat()->ResourcesExtensions.ParseAsFormat()for greater clarity of intent/behavior.StringSyntaxAttributeto resource extensions.