-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[release/dev17.8] Update dependencies from dotnet/arcade #10783
[release/dev17.8] Update dependencies from dotnet/arcade #10783
Conversation
…821.4 Microsoft.DotNet.Arcade.Sdk From Version 8.0.0-beta.23463.1 -> To Version 8.0.0-beta.24421.4 Dependency coherency updates Microsoft.DotNet.XliffTasks From Version 1.0.0-beta.23426.1 -> To Version 1.0.0-beta.23475.1 (parent: Microsoft.DotNet.Arcade.Sdk
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.
Auto-approving dependency update.
…826.2 Microsoft.DotNet.Arcade.Sdk From Version 8.0.0-beta.24421.4 -> To Version 8.0.0-beta.24426.2
…909.4 Microsoft.DotNet.Arcade.Sdk From Version 8.0.0-beta.24426.2 -> To Version 8.0.0-beta.24459.4
…910.4 Microsoft.DotNet.Arcade.Sdk From Version 8.0.0-beta.24459.4 -> To Version 8.0.0-beta.24460.4
…911.1 Microsoft.DotNet.Arcade.Sdk From Version 8.0.0-beta.24460.4 -> To Version 8.0.0-beta.24461.1
…911.2 Microsoft.DotNet.Arcade.Sdk From Version 8.0.0-beta.24461.1 -> To Version 8.0.0-beta.24461.2
…913.3 Microsoft.DotNet.Arcade.Sdk From Version 8.0.0-beta.24461.2 -> To Version 8.0.0-beta.24463.3
I follow the same pattern in dotnet/roslyn#70248 to disable the warnings |
@@ -44,7 +44,9 @@ public string ToBase64String() | |||
{ | |||
#if NETCOREAPP | |||
Span<byte> bytes = stackalloc byte[HashSize]; | |||
#pragma warning disable CS9191 // The 'ref' modifier for an argument corresponding to 'in' parameter is equivalent to 'in'. Consider using 'in' instead. |
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.
Did you try in
here?
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.
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.
Another way might be to separate the impl into
if NET8_0_OR_GREATER
MemoryMarshal.TryWrite(bytes, in Unsafe.AsRef(in Data));
else
MemoryMarshal.TryWrite(bytes, ref Unsafe.AsRef(in Data));
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.
Blarg. Worried that might be it. Okay let's merge it like this for now.
This pull request updates the following dependencies
Coherency Updates
The following updates ensure that dependencies with a CoherentParentDependency
attribute were produced in a build used as input to the parent dependency's build.
See Dependency Description Format
From https://github.com/dotnet/arcade