|
8 | 8 | <AssemblyName>DependencyConflictPackage</AssemblyName> |
9 | 9 | <RootNamespace>DependencyConflictPackage</RootNamespace> |
10 | 10 |
|
11 | | - <!-- Drop the build output straight into the nested UPM package. The |
12 | | - transitive System.*/Microsoft.* DLLs ride along thanks to |
13 | | - CopyLocalLockFileAssemblies, exactly mirroring how package-dev carries |
14 | | - them - except here they are plain (unaliased) and version-skewed. --> |
15 | 11 | <OutDir>$(MSBuildThisFileDirectory)DependencyConflict/Runtime</OutDir> |
16 | 12 | <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> |
17 | 13 | <GenerateDependencyFile>false</GenerateDependencyFile> |
18 | 14 | <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> |
19 | | - <!-- This is a deliberately old test dependency; the STJ advisory is irrelevant here. --> |
20 | 15 | <NoWarn>$(NoWarn);NU1903</NoWarn> |
21 | | - <!-- No PDB in the shipped package - keeps Unity from flagging a meta-less asset. --> |
22 | 16 | <DebugType>none</DebugType> |
23 | 17 | <DebugSymbols>false</DebugSymbols> |
24 | 18 | </PropertyGroup> |
25 | 19 |
|
26 | | - <!-- |
27 | | - Versions that DIFFER from what the real Sentry SDK ships in package-dev - |
28 | | - just enough mismatch, in enough places, to cause friction. Not a dramatic |
29 | | - downgrade; the point is plain (unaliased) copies that clash with Sentry's |
30 | | - aliased ones when both packages land in the same Unity project. |
31 | | -
|
32 | | - package-dev: System.Text.Json 8.0.5 (assembly 8.0.0.0) |
33 | | - System.Collections.Immutable 5.0.0 |
34 | | - Microsoft.Bcl.AsyncInterfaces 8.0 (transitive) |
35 | | - DependencyConflictPackage: System.Text.Json 8.0.4 - same major, different patch (mild) |
36 | | - System.Collections.Immutable 7.0.0 - assembly 7.0.0.0 (clear skew) |
37 | | - Microsoft.Bcl.AsyncInterfaces left transitive from STJ |
38 | | - --> |
39 | 20 | <ItemGroup> |
40 | | - <PackageReference Include="System.Text.Json" Version="8.0.4" /> |
| 21 | + <PackageReference Include="System.Text.Json" Version="8.0.5" /> |
41 | 22 | <PackageReference Include="System.Collections.Immutable" Version="7.0.0" /> |
42 | 23 | </ItemGroup> |
43 | 24 |
|
|
0 commit comments