This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Add System.Security.Permissions netfx facade and mark some APIs as obsolet to match desktop #26758
Merged
Conversation
This file contains 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
…solet to match desktop
@dotnet-bot test OSX x64 Debug Build please |
ViktorHofer
approved these changes
Feb 2, 2018
weshaggard
reviewed
Feb 2, 2018
@@ -4,16 +4,24 @@ | |||
<PropertyGroup> | |||
<ProjectGuid>{07CAF142-B259-418E-86EF-C4BD8B50253E}</ProjectGuid> | |||
<!-- UAPvNext is not yet mapped to netstandard2.0, manually duplicate this ref --> | |||
<PackageTargetFramework>netstandard2.0;$(UAPvNextTFM)</PackageTargetFramework> | |||
<PackageTargetFramework Condition="'$(TargetGroup)' == 'netstandard'">netstandard2.0;$(UAPvNextTFM)</PackageTargetFramework> |
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.
We shouldn't even need this any longer as UAP supports netstandard2.0. IIRC we removed most of these from the repo already.
weshaggard
reviewed
Feb 2, 2018
<ProjectReference Include="..\..\System.Security.AccessControl\ref\System.Security.AccessControl.csproj" /> | ||
<SuppressPackageTargetFrameworkCompatibility Include="$(UAPvNextTFM)" /> |
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.
This can be removed if you remove the PackageTargetFramework above.
weshaggard
approved these changes
Feb 2, 2018
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 other then the one comment.
weshaggard
approved these changes
Feb 5, 2018
Dotnet-GitSync-Bot
pushed a commit
to Dotnet-GitSync-Bot/corefx
that referenced
this pull request
Sep 23, 2019
* Remove IsFastSort optimizations from String - Fix bugs in the Span-based globalization fast paths. Note that some of these bug fixes are going to affect performance of the globalization fast paths. - Use Span-based globalization fast paths for strings - Avoid static array allocation for HighCharTable Fixes dotnet#26758 Signed-off-by: dotnet-bot <[email protected]>
Dotnet-GitSync-Bot
pushed a commit
to Dotnet-GitSync-Bot/corefx
that referenced
this pull request
Sep 24, 2019
* Remove IsFastSort optimizations from String - Fix bugs in the Span-based globalization fast paths. Note that some of these bug fixes are going to affect performance of the globalization fast paths. - Use Span-based globalization fast paths for strings - Avoid static array allocation for HighCharTable Fixes dotnet#26758 Signed-off-by: dotnet-bot <[email protected]>
stephentoub
pushed a commit
that referenced
this pull request
Sep 25, 2019
* Remove IsFastSort optimizations from String - Fix bugs in the Span-based globalization fast paths. Note that some of these bug fixes are going to affect performance of the globalization fast paths. - Use Span-based globalization fast paths for strings - Avoid static array allocation for HighCharTable Fixes #26758 Signed-off-by: dotnet-bot <[email protected]>
picenka21
pushed a commit
to picenka21/runtime
that referenced
this pull request
Feb 18, 2022
…solet to match desktop (dotnet/corefx#26758) * Add System.Security.Permissions netfx facade and mark some APIs as obsolet to match desktop * PR Feedback Commit migrated from dotnet/corefx@2ef483f
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: https://github.com/dotnet/corefx/issues/24517
cc: @weshaggard @danmosemsft @ViktorHofer