diff options
| author | Mark Cilia Vincenti <markciliavincenti@gmail.com> | 2025-12-09 05:16:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-08 21:16:14 -0700 |
| commit | 492ea668412cdeeff7050f952de09946086737f3 (patch) | |
| tree | 0b4679178a890db531ca757c67447ca2281062a1 | |
| parent | 8b2a8b94b6361e31eff58078225cf78d8a6c3fb1 (diff) | |
Proper pinning of SkiaSharp to prevent accidental updates (#15736)
| -rw-r--r-- | Directory.Packages.props | 8 | ||||
| -rw-r--r-- | Jellyfin.sln | 5 |
2 files changed, 7 insertions, 6 deletions
diff --git a/Directory.Packages.props b/Directory.Packages.props index 1d18a705c..564223483 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -74,9 +74,9 @@ <PackageVersion Include="SerilogAnalyzer" Version="0.15.0" /> <PackageVersion Include="SharpFuzz" Version="2.2.0" /> <!-- Pinned to 3.116.1 because https://github.com/jellyfin/jellyfin/pull/14255 --> - <PackageVersion Include="SkiaSharp" Version="3.116.1" /> - <PackageVersion Include="SkiaSharp.HarfBuzz" Version="3.116.1" /> - <PackageVersion Include="SkiaSharp.NativeAssets.Linux" Version="3.116.1" /> + <PackageVersion Include="SkiaSharp" Version="[3.116.1]" /> + <PackageVersion Include="SkiaSharp.HarfBuzz" Version="[3.116.1]" /> + <PackageVersion Include="SkiaSharp.NativeAssets.Linux" Version="[3.116.1]" /> <PackageVersion Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" /> <PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.556" /> <PackageVersion Include="Svg.Skia" Version="3.2.1" /> @@ -96,4 +96,4 @@ <PackageVersion Include="Xunit.SkippableFact" Version="1.5.23" /> <PackageVersion Include="xunit" Version="2.9.3" /> </ItemGroup> -</Project>
\ No newline at end of file +</Project> diff --git a/Jellyfin.sln b/Jellyfin.sln index fb1f2a2c2..b0d5a5eb4 100644 --- a/Jellyfin.sln +++ b/Jellyfin.sln @@ -1,7 +1,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.30503.244 +# Visual Studio Version 18 +VisualStudioVersion = 18.0.11222.15 d18.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Jellyfin.Server", "Jellyfin.Server\Jellyfin.Server.csproj", "{07E39F42-A2C6-4B32-AF8C-725F957A73FF}" EndProject @@ -30,6 +30,7 @@ EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{41093F42-C7CC-4D07-956B-6182CBEDE2EC}" ProjectSection(SolutionItems) = preProject .editorconfig = .editorconfig + Directory.Packages.props = Directory.Packages.props SharedVersion.cs = SharedVersion.cs EndProjectSection EndProject |
