|
71 | 71 | <AssemblyVersion>$(VersionPrefix).0</AssemblyVersion>
|
72 | 72 | <!-- PR builds should explicitly specify a version number -->
|
73 | 73 | </PropertyGroup>
|
| 74 | + <!-- Dependencies from maintenance-packages, source-build specific --> |
| 75 | + <PropertyGroup Condition="'$(DotNetBuildSourceOnly)' == 'true'"> |
| 76 | + <SystemBuffersVersion>4.6.1</SystemBuffersVersion> |
| 77 | + <SystemMemoryVersion>4.6.2</SystemMemoryVersion> |
| 78 | + <SystemRuntimeCompilerServicesUnsafeVersion>6.1.1</SystemRuntimeCompilerServicesUnsafeVersion> |
| 79 | + </PropertyGroup> |
| 80 | + <!-- Dependencies from maintenance-packages, everything else --> |
| 81 | + <PropertyGroup Condition="'$(DotNetBuildSourceOnly)' != 'true'"> |
| 82 | + <SystemBuffersVersion>4.6.0</SystemBuffersVersion> |
| 83 | + <SystemMemoryVersion>4.5.5</SystemMemoryVersion> |
| 84 | + <SystemRuntimeCompilerServicesUnsafeVersion>6.1.0</SystemRuntimeCompilerServicesUnsafeVersion> |
| 85 | + </PropertyGroup> |
74 | 86 | <PropertyGroup>
|
75 | 87 | <!-- System.* packages -->
|
76 | 88 | <!-- If a System.* package is stuck on version 4.3.x, targets .NET Standard 1.x and hasn't been
|
77 | 89 | updated in years, you most likely DON'T need it, please exercise caution when adding it to the list. -->
|
78 | 90 | <SystemPackageVersionVersion>8.0.0</SystemPackageVersionVersion>
|
79 |
| - <SystemBuffersVersion>4.6.0</SystemBuffersVersion> |
80 | 91 | <SystemCollectionsImmutableVersion>$(SystemPackageVersionVersion)</SystemCollectionsImmutableVersion>
|
81 | 92 | <SystemComponentModelCompositionVersion>$(SystemPackageVersionVersion)</SystemComponentModelCompositionVersion>
|
82 | 93 | <SystemCompositionVersion>$(SystemPackageVersionVersion)</SystemCompositionVersion>
|
83 | 94 | <SystemDiagnosticsDiagnosticSourceVersion>$(SystemPackageVersionVersion)</SystemDiagnosticsDiagnosticSourceVersion>
|
84 |
| - <SystemMemoryVersion Condition="'$(DotNetBuildSourceOnly)' != 'true'">4.5.5</SystemMemoryVersion> |
85 |
| - <SystemMemoryVersion Condition="'$(DotNetBuildSourceOnly)' == 'true'">4.6.0</SystemMemoryVersion> |
86 | 95 | <SystemReflectionEmitVersion>4.7.0</SystemReflectionEmitVersion>
|
87 | 96 | <SystemReflectionMetadataVersion>$(SystemPackageVersionVersion)</SystemReflectionMetadataVersion>
|
88 |
| - <SystemRuntimeCompilerServicesUnsafeVersion>6.1.0</SystemRuntimeCompilerServicesUnsafeVersion> |
89 | 97 | <SystemThreadingTasksDataflow>$(SystemPackageVersionVersion)</SystemThreadingTasksDataflow>
|
90 | 98 | <MicrosoftDiaSymReaderPortablePdbVersion>1.6.0</MicrosoftDiaSymReaderPortablePdbVersion>
|
91 | 99 | <!-- Versions for package groups -->
|
|
0 commit comments