|
9 | 9 | because we need the source generators in CsWinRT to generate the supporting interop code for AOT). |
10 | 10 | --> |
11 | 11 | <PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0-windows10.0.17763.0'))"> |
12 | | - <WindowsSdkPackageVersion>10.0.17763.53</WindowsSdkPackageVersion> |
| 12 | + <WindowsSdkPackageVersion>10.0.17763.56</WindowsSdkPackageVersion> |
13 | 13 |
|
14 | 14 | <!-- |
15 | 15 | We're only referencing CsWinRT for the source generators, we don't need to read any WinRT metadata. |
|
42 | 42 |
|
43 | 43 | <!-- .NET Standard 2.0 doesn't have the Span<T> and IAsyncEnumerable<T> types --> |
44 | 44 | <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
45 | | - <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" /> |
| 45 | + <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.10" /> |
46 | 46 | <PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" /> |
47 | | - <PackageReference Include="System.Memory" Version="4.6.0" /> |
48 | | - <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.0" /> |
| 47 | + <PackageReference Include="System.Memory" Version="4.6.3" /> |
| 48 | + <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.2" /> |
49 | 49 | </ItemGroup> |
50 | 50 |
|
51 | 51 | <!-- .NET Standard 2.1 doesn't have the Unsafe type --> |
52 | 52 | <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'"> |
53 | 53 | <PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" /> |
54 | | - <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.0" /> |
| 54 | + <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.2" /> |
55 | 55 | </ItemGroup> |
56 | 56 |
|
57 | 57 | <!-- Include the ILLink file (to properly trim configuration switches in publish builds) --> |
|
61 | 61 |
|
62 | 62 | <!-- Reference CsWinRT when targeting Windows, to get the latest source generators --> |
63 | 63 | <ItemGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0-windows10.0.17763.0'))"> |
64 | | - <PackageReference Include="Microsoft.Windows.CsWinRT" Version="2.1.6" PrivateAssets="all" /> |
| 64 | + <PackageReference Include="Microsoft.Windows.CsWinRT" Version="2.2.0" PrivateAssets="all" /> |
65 | 65 | </ItemGroup> |
66 | 66 |
|
67 | 67 | <!-- Reference the various multi-targeted versions of the source generator project (one per Roslyn version), and the code fixer --> |
|
0 commit comments