-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Update the version of SkiaSharp used by SVG #28233
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
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.
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
@@ -40,7 +40,7 @@ | |||
<_ResizetizerFiles Include="$(PkgSvg_Custom)\lib\netstandard2.0\Svg.Custom.dll" /> | |||
<_ResizetizerFiles Include="$(PkgSvg_Model)\lib\netstandard2.0\Svg.Model.dll" /> | |||
<_ResizetizerFiles Include="$(PkgShimSkiaSharp)\lib\netstandard2.0\ShimSkiaSharp.dll" /> | |||
<_ResizetizerFiles Include="$(PkgSvg_Skia)\lib\netstandard2.0\Svg.Skia.dll" /> | |||
<!-- <_ResizetizerFiles Include="$(PkgSvg_Skia)\lib\netstandard2.0\Svg.Skia.dll" /> --> |
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.
Is this supposed to be comment out ?
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.
Yes, we "copy" it via the adjuster task. We load, edit and then save in the final destination.
I tested on devbox and now I can load without problems. |
Description of Change
All the assemblies are strong named, so when we update SkiaSharp it will fail. We could use a config file to allow this, but VS does not work like that. So, the easiest things is to just update the version in the references.
We did this during the transition from 2.80 to 2.88. We now do it for 3.x.
Issues Fixed
Fixes #28207