-
-
Notifications
You must be signed in to change notification settings - Fork 888
Update System.* deps to 4.5.0-rc1 #560
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
Conversation
Codecov Report
Continue to review full report at Codecov.
|
|
Notable: All tests pass on .NETCORE 2.1. |
| <Reference Include="Microsoft.CSharp" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> |
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 addition is accidental I guess.
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.
VS used to create these service references for test projects. It hasn't for a few releases now. Are there any legacy tools that still need this? cc: @antonfirsov
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.
I don't think so as far as I'm aware.
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.
@JimBobSquarePants Removed the System.Numerics.Vectors reference all together. I think the NuGET package just type forwards everything to the builtins anyhow.
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.
@iamcarbon Good man. 👍
|
Ooft! This is great! We can now finally expose the memory API's we need for interop and per row augmentation. |
src/ImageSharp/ImageSharp.csproj
Outdated
| <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.5.0-preview2-26406-04" /> | ||
| <PackageReference Include="System.Memory" Version="4.5.0-rc1" /> | ||
| <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.5.0-rc1" /> | ||
| <PackageReference Include="System.Numerics.Vectors" Version="4.5.0-rc1" /> |
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.
Ideally we should update Core and let this dependency float through implicitly.
Update System.* deps to 4.5.0-rc1
Prerequisites
Description
Updates System.* deps to 4.5.0-rc1. there were no breaking changes. The API surface for System.Memory should finally be stable!