Versions.props 20.8 KB
Newer Older
D
dotnet-bot 已提交
1 2
<Project>
  <PropertyGroup>
3
    <!-- The .NET product branding version -->
4
    <ProductVersion>8.0.0</ProductVersion>
D
dotnet-bot 已提交
5
    <!-- File version numbers -->
6
    <MajorVersion>8</MajorVersion>
D
dotnet-bot 已提交
7 8
    <MinorVersion>0</MinorVersion>
    <PatchVersion>0</PatchVersion>
9
    <SdkBandVersion>8.0.100</SdkBandVersion>
10
    <PackageVersionNet7>7.0.8</PackageVersionNet7>
11
    <PackageVersionNet6>6.0.$([MSBuild]::Add($([System.Version]::Parse('$(PackageVersionNet7)').Build),11))</PackageVersionNet6>
12 13
    <PreReleaseVersionLabel>rc</PreReleaseVersionLabel>
    <PreReleaseVersionIteration>1</PreReleaseVersionIteration>
14
    <WorkloadVersionSuffix Condition="'$(PreReleaseVersionLabel)' != 'release'">-$(PreReleaseVersionLabel).$(PreReleaseVersionIteration)</WorkloadVersionSuffix>
15
    <SdkBandVersionForWorkload_FromRuntimeVersions>$(SdkBandVersion)$(WorkloadVersionSuffix)</SdkBandVersionForWorkload_FromRuntimeVersions>
16 17
    <!-- Set assembly version to align with major and minor version,
         as for the patches and revisions should be manually updated per assembly if it is serviced. -->
18
    <AssemblyVersion>$(MajorVersion).$(MinorVersion).0.0</AssemblyVersion>
D
dotnet-bot 已提交
19 20 21 22
    <!-- Enable to remove prerelease label. -->
    <StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>
    <DotNetFinalVersionKind Condition="'$(StabilizePackageVersion)' == 'true'">release</DotNetFinalVersionKind>
    <!-- Opt-in/out repo features -->
23
    <UsingToolMicrosoftNetILLinkTasks Condition="'$(UsingToolMicrosoftNetILLinkTasks)' == ''">true</UsingToolMicrosoftNetILLinkTasks>
24
    <UsingToolIbcOptimization>false</UsingToolIbcOptimization>
D
dotnet-bot 已提交
25
    <UsingToolXliff>false</UsingToolXliff>
26
    <LastReleasedStableAssemblyVersion>$(AssemblyVersion)</LastReleasedStableAssemblyVersion>
27 28
    <!-- Use SDK compilers in full source-build. -->
    <UsingToolMicrosoftNetCompilers Condition="'$(DotNetBuildFromSourceFlavor)' != 'Product'">true</UsingToolMicrosoftNetCompilers>
D
dotnet-bot 已提交
29
  </PropertyGroup>
30 31 32
  <ItemGroup>
    <WorkloadSdkBandVersions Include="$(SdkBandVersion)" SupportsMachineArch="true" />
  </ItemGroup>
33 34
  <PropertyGroup>
    <!-- dotnet/roslyn-analyzers dependencies -->
35 36
    <MicrosoftCodeAnalysisAnalyzersVersion>3.11.0-beta1.23412.1</MicrosoftCodeAnalysisAnalyzersVersion>
    <MicrosoftCodeAnalysisNetAnalyzersVersion>8.0.0-preview.23412.1</MicrosoftCodeAnalysisNetAnalyzersVersion>
37 38 39 40 41 42
    <!-- dotnet/roslyn dependencies -->
    <!--
      These versions should not be used by any project that contributes to the design-time experience in VS, such as an analyzer, code-fix, or generator assembly.
      Any tools that contribute to the design-time experience should use the MicrosoftCodeAnalysisVersion_LatestVS property above to ensure
      they do not break the local dev experience.
    -->
43 44 45
    <MicrosoftCodeAnalysisCSharpVersion>4.8.0-1.23408.8</MicrosoftCodeAnalysisCSharpVersion>
    <MicrosoftCodeAnalysisVersion>4.8.0-1.23408.8</MicrosoftCodeAnalysisVersion>
    <MicrosoftNetCompilersToolsetVersion>4.8.0-1.23408.8</MicrosoftNetCompilersToolsetVersion>
46
  </PropertyGroup>
47
  <!--
A
Adeel Mujahid 已提交
48
    For source generator support we need to target multiple versions of Roslyn in order to be able to run on older versions of Roslyn.
49 50
    We pin these versions as we need to match them exactly for any scenarios that run Roslyn on .NET Framework, like Visual Studio.
  -->
M
Maryam Ariyan 已提交
51
  <PropertyGroup>
52
    <!-- Compatibility with VS 16.11/.NET SDK 5.0.4xx -->
53
    <MicrosoftCodeAnalysisVersion_3_11>3.11.0</MicrosoftCodeAnalysisVersion_3_11>
54
    <!-- Compatibility with VS 17.0/.NET SDK 6.0.1xx  -->
55
    <MicrosoftCodeAnalysisVersion_4_0>4.0.1</MicrosoftCodeAnalysisVersion_4_0>
56
    <!-- Compatibility with VS 17.4/.NET SDK 7.0.1xx -->
57
    <!--
58
      The exact version is a moving target until we ship.
59 60
      It should never go ahead of the Roslyn version included in the SDK version in dotnet/arcade's global.json to avoid causing breaks in product construction.
    -->
61
    <MicrosoftCodeAnalysisVersion_4_4>4.4.0</MicrosoftCodeAnalysisVersion_4_4>
62
    <!-- Compatibility with the latest Visual Studio Preview release -->
63
    <!--
64 65 66
      The exact version is always a moving target. This version should never go ahead of the version of Roslyn that is included in the most recent
      public Visual Studio preview version. If it were to go ahead, then any components depending on this version would not work in Visual Studio
      and would cause a major regression for any local development that depends on those components contributing to the build.
67 68 69
      This version must also not go ahead of the most recently release .NET SDK version, as that would break the source-build build.
      Source-build builds the product with the most recent previously source-built release. Thankfully, these two requirements line up nicely
      such that any version that satisfies the VS version requirement will also satisfy the .NET SDK version requirement because of how we ship.
70
    -->
71
    <MicrosoftCodeAnalysisVersion_LatestVS>4.5.0</MicrosoftCodeAnalysisVersion_LatestVS>
72
    <!-- Some of the analyzer dependencies used by ILLink project -->
73
    <MicrosoftCodeAnalysisBannedApiAnalyzersVersion>3.3.5-beta1.23270.2</MicrosoftCodeAnalysisBannedApiAnalyzersVersion>
74
  </PropertyGroup>
75
  <!--
76 77 78 79 80 81
    These packages affect the design-time experience in VS, so we update them at the same cadance as the MicrosoftCodeAnalysisVersion_LatestVS version.
  -->
  <PropertyGroup>
    <MicrosoftCodeAnalysisCSharpCodeStyleVersion>$(MicrosoftCodeAnalysisVersion_LatestVS)</MicrosoftCodeAnalysisCSharpCodeStyleVersion>
  </PropertyGroup>
  <PropertyGroup>
V
Vitek Karas 已提交
82
    <StaticCsVersion>0.2.0</StaticCsVersion>
83
    <!-- SDK dependencies -->
84
    <MicrosoftDotNetApiCompatTaskVersion>8.0.100-preview.7.23329.3</MicrosoftDotNetApiCompatTaskVersion>
85
    <!-- Arcade dependencies -->
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
    <MicrosoftDotNetBuildTasksFeedVersion>8.0.0-beta.23411.1</MicrosoftDotNetBuildTasksFeedVersion>
    <MicrosoftDotNetCodeAnalysisVersion>8.0.0-beta.23411.1</MicrosoftDotNetCodeAnalysisVersion>
    <MicrosoftDotNetGenAPIVersion>8.0.0-beta.23411.1</MicrosoftDotNetGenAPIVersion>
    <MicrosoftDotNetGenFacadesVersion>8.0.0-beta.23411.1</MicrosoftDotNetGenFacadesVersion>
    <MicrosoftDotNetXUnitExtensionsVersion>8.0.0-beta.23411.1</MicrosoftDotNetXUnitExtensionsVersion>
    <MicrosoftDotNetXUnitConsoleRunnerVersion>2.5.1-beta.23411.1</MicrosoftDotNetXUnitConsoleRunnerVersion>
    <MicrosoftDotNetBuildTasksArchivesVersion>8.0.0-beta.23411.1</MicrosoftDotNetBuildTasksArchivesVersion>
    <MicrosoftDotNetBuildTasksInstallersVersion>8.0.0-beta.23411.1</MicrosoftDotNetBuildTasksInstallersVersion>
    <MicrosoftDotNetBuildTasksPackagingVersion>8.0.0-beta.23411.1</MicrosoftDotNetBuildTasksPackagingVersion>
    <MicrosoftDotNetBuildTasksTargetFrameworkVersion>8.0.0-beta.23411.1</MicrosoftDotNetBuildTasksTargetFrameworkVersion>
    <MicrosoftDotNetBuildTasksTemplatingVersion>8.0.0-beta.23411.1</MicrosoftDotNetBuildTasksTemplatingVersion>
    <MicrosoftDotNetBuildTasksWorkloadsPackageVersion>8.0.0-beta.23411.1</MicrosoftDotNetBuildTasksWorkloadsPackageVersion>
    <MicrosoftDotNetRemoteExecutorVersion>8.0.0-beta.23411.1</MicrosoftDotNetRemoteExecutorVersion>
    <MicrosoftDotNetVersionToolsTasksVersion>8.0.0-beta.23411.1</MicrosoftDotNetVersionToolsTasksVersion>
    <MicrosoftDotNetPackageTestingVersion>8.0.0-beta.23411.1</MicrosoftDotNetPackageTestingVersion>
101
    <!-- NuGet dependencies -->
102
    <NuGetBuildTasksPackVersion>6.0.0-preview.1.102</NuGetBuildTasksPackVersion>
D
dotnet-bot 已提交
103
    <!-- Installer dependencies -->
104
    <MicrosoftNETCoreAppRuntimewinx64Version>8.0.0-rc.1.23406.6</MicrosoftNETCoreAppRuntimewinx64Version>
105
    <MicrosoftExtensionsDependencyModelVersion>6.0.0</MicrosoftExtensionsDependencyModelVersion>
D
dotnet-bot 已提交
106
    <!-- CoreClr dependencies -->
107
    <MicrosoftNETCoreILAsmVersion>8.0.0-rc.1.23406.6</MicrosoftNETCoreILAsmVersion>
108
    <MicrosoftNETCoreILAsmVersion>8.0.0-preview.7.23325.2</MicrosoftNETCoreILAsmVersion>
109 110 111 112 113 114 115 116
    <runtimelinuxarm64MicrosoftNETCoreRuntimeObjWriterVersion>16.0.5-alpha.1.23408.1</runtimelinuxarm64MicrosoftNETCoreRuntimeObjWriterVersion>
    <runtimelinuxx64MicrosoftNETCoreRuntimeObjWriterVersion>16.0.5-alpha.1.23408.1</runtimelinuxx64MicrosoftNETCoreRuntimeObjWriterVersion>
    <runtimelinuxmuslarm64MicrosoftNETCoreRuntimeObjWriterVersion>16.0.5-alpha.1.23408.1</runtimelinuxmuslarm64MicrosoftNETCoreRuntimeObjWriterVersion>
    <runtimelinuxmuslx64MicrosoftNETCoreRuntimeObjWriterVersion>16.0.5-alpha.1.23408.1</runtimelinuxmuslx64MicrosoftNETCoreRuntimeObjWriterVersion>
    <runtimewinarm64MicrosoftNETCoreRuntimeObjWriterVersion>16.0.5-alpha.1.23408.1</runtimewinarm64MicrosoftNETCoreRuntimeObjWriterVersion>
    <runtimewinx64MicrosoftNETCoreRuntimeObjWriterVersion>16.0.5-alpha.1.23408.1</runtimewinx64MicrosoftNETCoreRuntimeObjWriterVersion>
    <runtimeosxarm64MicrosoftNETCoreRuntimeObjWriterVersion>16.0.5-alpha.1.23408.1</runtimeosxarm64MicrosoftNETCoreRuntimeObjWriterVersion>
    <runtimeosxx64MicrosoftNETCoreRuntimeObjWriterVersion>16.0.5-alpha.1.23408.1</runtimeosxx64MicrosoftNETCoreRuntimeObjWriterVersion>
D
dotnet-bot 已提交
117
    <!-- Libraries dependencies -->
118
    <MicrosoftBclAsyncInterfacesVersion>6.0.0</MicrosoftBclAsyncInterfacesVersion>
119
    <MicrosoftBclHashCodeVersion>1.1.1</MicrosoftBclHashCodeVersion>
120
    <MicrosoftWin32RegistryVersion>5.0.0</MicrosoftWin32RegistryVersion>
121
    <StyleCopAnalyzersVersion>1.2.0-beta.406</StyleCopAnalyzersVersion>
122
    <SystemBuffersVersion>4.5.1</SystemBuffersVersion>
123
    <SystemCollectionsImmutableVersion>7.0.0</SystemCollectionsImmutableVersion>
124
    <SystemComponentModelAnnotationsVersion>5.0.0</SystemComponentModelAnnotationsVersion>
125
    <SystemDataSqlClientVersion>4.8.5</SystemDataSqlClientVersion>
126
    <SystemDrawingCommonVersion>7.0.0</SystemDrawingCommonVersion>
127
    <SystemIOFileSystemAccessControlVersion>5.0.0</SystemIOFileSystemAccessControlVersion>
128
    <SystemMemoryVersion>4.5.5</SystemMemoryVersion>
129
    <SystemReflectionMetadataVersion>7.0.0</SystemReflectionMetadataVersion>
130
    <SystemSecurityAccessControlVersion>6.0.0</SystemSecurityAccessControlVersion>
131 132 133
    <SystemSecurityCryptographyCngVersion>5.0.0</SystemSecurityCryptographyCngVersion>
    <SystemSecurityCryptographyOpenSslVersion>5.0.0</SystemSecurityCryptographyOpenSslVersion>
    <SystemSecurityPrincipalWindowsVersion>5.0.0</SystemSecurityPrincipalWindowsVersion>
134
    <SystemSecurityPermissionsVersion>7.0.0</SystemSecurityPermissionsVersion>
135
    <SystemTextJsonVersion>8.0.0-rc.1.23406.6</SystemTextJsonVersion>
136
    <SystemRuntimeCompilerServicesUnsafeVersion>6.0.0</SystemRuntimeCompilerServicesUnsafeVersion>
137
    <SystemThreadingAccessControlVersion>7.0.0</SystemThreadingAccessControlVersion>
138 139
    <SystemThreadingTasksExtensionsVersion>4.5.4</SystemThreadingTasksExtensionsVersion>
    <SystemValueTupleVersion>4.5.0</SystemValueTupleVersion>
140
    <runtimenativeSystemIOPortsVersion>8.0.0-rc.1.23406.6</runtimenativeSystemIOPortsVersion>
141
    <!-- Runtime-Assets dependencies -->
142 143 144 145 146 147 148 149 150 151 152 153 154 155
    <SystemRuntimeNumericsTestDataVersion>8.0.0-beta.23408.1</SystemRuntimeNumericsTestDataVersion>
    <SystemComponentModelTypeConverterTestDataVersion>8.0.0-beta.23408.1</SystemComponentModelTypeConverterTestDataVersion>
    <SystemDataCommonTestDataVersion>8.0.0-beta.23408.1</SystemDataCommonTestDataVersion>
    <SystemDrawingCommonTestDataVersion>8.0.0-beta.23408.1</SystemDrawingCommonTestDataVersion>
    <SystemFormatsTarTestDataVersion>8.0.0-beta.23408.1</SystemFormatsTarTestDataVersion>
    <SystemIOCompressionTestDataVersion>8.0.0-beta.23408.1</SystemIOCompressionTestDataVersion>
    <SystemIOPackagingTestDataVersion>8.0.0-beta.23408.1</SystemIOPackagingTestDataVersion>
    <SystemNetTestDataVersion>8.0.0-beta.23408.1</SystemNetTestDataVersion>
    <SystemPrivateRuntimeUnicodeDataVersion>8.0.0-beta.23408.1</SystemPrivateRuntimeUnicodeDataVersion>
    <SystemRuntimeTimeZoneDataVersion>8.0.0-beta.23408.1</SystemRuntimeTimeZoneDataVersion>
    <SystemSecurityCryptographyX509CertificatesTestDataVersion>8.0.0-beta.23408.1</SystemSecurityCryptographyX509CertificatesTestDataVersion>
    <SystemTextRegularExpressionsTestDataVersion>8.0.0-beta.23408.1</SystemTextRegularExpressionsTestDataVersion>
    <SystemWindowsExtensionsTestDataVersion>8.0.0-beta.23408.1</SystemWindowsExtensionsTestDataVersion>
    <MicrosoftDotNetCilStripSourcesVersion>8.0.0-beta.23408.1</MicrosoftDotNetCilStripSourcesVersion>
D
dotnet-bot 已提交
156
    <!-- dotnet-optimization dependencies -->
157 158 159 160 161 162
    <optimizationwindows_ntx64MIBCRuntimeVersion>1.0.0-prerelease.23362.5</optimizationwindows_ntx64MIBCRuntimeVersion>
    <optimizationwindows_ntx86MIBCRuntimeVersion>1.0.0-prerelease.23362.5</optimizationwindows_ntx86MIBCRuntimeVersion>
    <optimizationwindows_ntarm64MIBCRuntimeVersion>1.0.0-prerelease.23362.5</optimizationwindows_ntarm64MIBCRuntimeVersion>
    <optimizationlinuxx64MIBCRuntimeVersion>1.0.0-prerelease.23362.5</optimizationlinuxx64MIBCRuntimeVersion>
    <optimizationlinuxarm64MIBCRuntimeVersion>1.0.0-prerelease.23362.5</optimizationlinuxarm64MIBCRuntimeVersion>
    <optimizationPGOCoreCLRVersion>1.0.0-prerelease.23362.5</optimizationPGOCoreCLRVersion>
D
dotnet-bot 已提交
163
    <!-- Not auto-updated. -->
164
    <MicrosoftDiaSymReaderNativeVersion>16.11.27-beta1.23180.1</MicrosoftDiaSymReaderNativeVersion>
165
    <SystemCommandLineVersion>2.0.0-beta4.23307.1</SystemCommandLineVersion>
166
    <TraceEventVersion>3.0.3</TraceEventVersion>
167 168
    <NETStandardLibraryRefVersion>2.1.0</NETStandardLibraryRefVersion>
    <NetStandardLibraryVersion>2.0.3</NetStandardLibraryVersion>
169
    <MicrosoftDiagnosticsToolsRuntimeClientVersion>1.0.4-preview6.19326.1</MicrosoftDiagnosticsToolsRuntimeClientVersion>
170
    <DNNEVersion>2.0.4</DNNEVersion>
171
    <MicrosoftBuildVersion>17.3.2</MicrosoftBuildVersion>
172
    <MicrosoftBuildTasksCoreVersion>$(MicrosoftBuildVersion)</MicrosoftBuildTasksCoreVersion>
173 174
    <MicrosoftBuildFrameworkVersion>$(MicrosoftBuildVersion)</MicrosoftBuildFrameworkVersion>
    <MicrosoftBuildUtilitiesCoreVersion>$(MicrosoftBuildVersion)</MicrosoftBuildUtilitiesCoreVersion>
175 176
    <NugetProjectModelVersion>6.2.4</NugetProjectModelVersion>
    <NugetPackagingVersion>6.2.4</NugetPackagingVersion>
177 178
    <DotnetSosVersion>7.0.412701</DotnetSosVersion>
    <DotnetSosTargetFrameworkVersion>6.0</DotnetSosTargetFrameworkVersion>
D
dotnet-bot 已提交
179
    <!-- Testing -->
180
    <MicrosoftNETCoreCoreDisToolsVersion>1.1.0</MicrosoftNETCoreCoreDisToolsVersion>
181
    <MicrosoftNETTestSdkVersion>17.4.0-preview-20220707-01</MicrosoftNETTestSdkVersion>
182 183 184 185
    <MicrosoftDotNetXHarnessTestRunnersCommonVersion>8.0.0-prerelease.23407.2</MicrosoftDotNetXHarnessTestRunnersCommonVersion>
    <MicrosoftDotNetXHarnessTestRunnersXunitVersion>8.0.0-prerelease.23407.2</MicrosoftDotNetXHarnessTestRunnersXunitVersion>
    <MicrosoftDotNetXHarnessCLIVersion>8.0.0-prerelease.23407.2</MicrosoftDotNetXHarnessCLIVersion>
    <MicrosoftDotNetHotReloadUtilsGeneratorBuildToolVersion>8.0.0-alpha.0.23407.2</MicrosoftDotNetHotReloadUtilsGeneratorBuildToolVersion>
E
Eric StJohn 已提交
186 187
    <XUnitVersion>2.4.2</XUnitVersion>
    <XUnitAnalyzersVersion>1.0.0</XUnitAnalyzersVersion>
188
    <XUnitRunnerVisualStudioVersion>2.4.5</XUnitRunnerVisualStudioVersion>
189 190
    <NUnitVersion>3.12.0</NUnitVersion>
    <NUnitTestAdapterVersion>4.1.0</NUnitTestAdapterVersion>
191
    <CoverletCollectorVersion>6.0.0</CoverletCollectorVersion>
192 193
    <NewtonsoftJsonVersion>13.0.1</NewtonsoftJsonVersion>
    <NewtonsoftJsonBsonVersion>1.0.2</NewtonsoftJsonBsonVersion>
M
Maryam Ariyan 已提交
194
    <SQLitePCLRawbundle_greenVersion>2.0.4</SQLitePCLRawbundle_greenVersion>
195
    <MoqVersion>4.18.4</MoqVersion>
196
    <FluentAssertionsVersion>6.7.0</FluentAssertionsVersion>
197
    <FsCheckVersion>2.14.3</FsCheckVersion>
198 199 200 201 202 203 204 205
    <!-- Android gRPC client tests -->
    <GoogleProtobufVersion>3.19.4</GoogleProtobufVersion>
    <GrpcAspNetCoreVersion>2.46.0</GrpcAspNetCoreVersion>
    <GrpcAspNetCoreWebVersion>2.46.0</GrpcAspNetCoreWebVersion>
    <GrpcAuthVersion>2.46.3</GrpcAuthVersion>
    <GrpcCoreVersion>2.46.3</GrpcCoreVersion>
    <GrpcDotnetClientVersion>2.45.0</GrpcDotnetClientVersion>
    <GrpcToolsVersion>2.45.0</GrpcToolsVersion>
206
    <!-- Uncomment to set a fixed version, else the latest is used -->
207
    <!--<SdkVersionForWorkloadTesting>8.0.100-preview.6.23314.19</SdkVersionForWorkloadTesting>-->
208
    <CompilerPlatformTestingVersion>1.1.2-beta1.23323.1</CompilerPlatformTestingVersion>
D
dotnet-bot 已提交
209
    <!-- Docs -->
210
    <MicrosoftPrivateIntellisenseVersion>7.0.0-preview-20221010.1</MicrosoftPrivateIntellisenseVersion>
D
dotnet-bot 已提交
211
    <!-- ILLink -->
212
    <MicrosoftNETILLinkTasksVersion>8.0.0-rc.1.23406.6</MicrosoftNETILLinkTasksVersion>
213
    <!-- Mono Cecil -->
214
    <MicrosoftDotNetCecilVersion>0.11.4-alpha.23407.2</MicrosoftDotNetCecilVersion>
215
    <!-- ILCompiler -->
216
    <MicrosoftDotNetILCompilerVersion>8.0.0-rc.1.23406.6</MicrosoftDotNetILCompilerVersion>
217
    <!-- ICU -->
218
    <MicrosoftNETCoreRuntimeICUTransportVersion>8.0.0-rc.1.23407.2</MicrosoftNETCoreRuntimeICUTransportVersion>
219
    <!-- MsQuic -->
M
Marie Píchová 已提交
220
    <MicrosoftNativeQuicMsQuicVersion>2.2.2</MicrosoftNativeQuicMsQuicVersion>
221
    <SystemNetMsQuicTransportVersion>8.0.0-alpha.1.23180.2</SystemNetMsQuicTransportVersion>
222
    <!-- Mono LLVM -->
223 224 225 226 227 228 229 230 231 232 233 234 235 236
    <runtimelinuxarm64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>16.0.5-alpha.1.23408.1</runtimelinuxarm64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>
    <runtimelinuxarm64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>16.0.5-alpha.1.23408.1</runtimelinuxarm64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>
    <runtimelinuxmuslarm64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>16.0.5-alpha.1.23408.1</runtimelinuxmuslarm64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>
    <runtimelinuxmuslarm64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>16.0.5-alpha.1.23408.1</runtimelinuxmuslarm64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>
    <runtimelinuxx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>16.0.5-alpha.1.23408.1</runtimelinuxx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>
    <runtimelinuxx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>16.0.5-alpha.1.23408.1</runtimelinuxx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>
    <runtimelinuxmuslx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>16.0.5-alpha.1.23408.1</runtimelinuxmuslx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>
    <runtimelinuxmuslx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>16.0.5-alpha.1.23408.1</runtimelinuxmuslx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>
    <runtimewinx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>16.0.5-alpha.1.23408.1</runtimewinx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>
    <runtimewinx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>16.0.5-alpha.1.23408.1</runtimewinx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>
    <runtimeosxarm64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>16.0.5-alpha.1.23408.1</runtimeosxarm64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>
    <runtimeosxarm64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>16.0.5-alpha.1.23408.1</runtimeosxarm64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>
    <runtimeosxx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>16.0.5-alpha.1.23408.1</runtimeosxx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>
    <runtimeosxx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>16.0.5-alpha.1.23408.1</runtimeosxx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>
237 238
    <!-- emscripten / Node
         Note: when the name is updated, make sure to update dependency name in eng/pipelines/common/xplat-setup.yml
L
Larry Ewing 已提交
239
               like - DarcDependenciesChanged.Microsoft_NET_Workload_Emscripten_Current_Manifest-8_0_100_Transport
240
    -->
241
    <MicrosoftNETWorkloadEmscriptenCurrentManifest80100TransportVersion>8.0.0-rc.1.23411.2</MicrosoftNETWorkloadEmscriptenCurrentManifest80100TransportVersion>
242
    <MicrosoftNETRuntimeEmscriptenVersion>$(MicrosoftNETWorkloadEmscriptenCurrentManifest80100TransportVersion)</MicrosoftNETRuntimeEmscriptenVersion>
243 244
    <!-- workloads -->
    <SwixPackageVersion>1.1.87-gba258badda</SwixPackageVersion>
245
    <WixPackageVersion>1.0.0-v3.14.0.5722</WixPackageVersion>
246
    <!-- JIT Tools -->
247 248 249 250 251 252 253 254
    <runtimelinuxarm64MicrosoftNETCoreRuntimeJITToolsVersion>16.0.5-alpha.1.23408.1</runtimelinuxarm64MicrosoftNETCoreRuntimeJITToolsVersion>
    <runtimelinuxx64MicrosoftNETCoreRuntimeJITToolsVersion>16.0.5-alpha.1.23408.1</runtimelinuxx64MicrosoftNETCoreRuntimeJITToolsVersion>
    <runtimelinuxmuslarm64MicrosoftNETCoreRuntimeJITToolsVersion>16.0.5-alpha.1.23408.1</runtimelinuxmuslarm64MicrosoftNETCoreRuntimeJITToolsVersion>
    <runtimelinuxmuslx64MicrosoftNETCoreRuntimeJITToolsVersion>16.0.5-alpha.1.23408.1</runtimelinuxmuslx64MicrosoftNETCoreRuntimeJITToolsVersion>
    <runtimewinarm64MicrosoftNETCoreRuntimeJITToolsVersion>16.0.5-alpha.1.23408.1</runtimewinarm64MicrosoftNETCoreRuntimeJITToolsVersion>
    <runtimewinx64MicrosoftNETCoreRuntimeJITToolsVersion>16.0.5-alpha.1.23408.1</runtimewinx64MicrosoftNETCoreRuntimeJITToolsVersion>
    <runtimeosxarm64MicrosoftNETCoreRuntimeJITToolsVersion>16.0.5-alpha.1.23408.1</runtimeosxarm64MicrosoftNETCoreRuntimeJITToolsVersion>
    <runtimeosxx64MicrosoftNETCoreRuntimeJITToolsVersion>16.0.5-alpha.1.23408.1</runtimeosxx64MicrosoftNETCoreRuntimeJITToolsVersion>
255 256 257
    <!-- BrowserDebugProxy libs -->
    <MicrosoftExtensionsLoggingVersion>3.1.7</MicrosoftExtensionsLoggingVersion>
    <MicrosoftSymbolStoreVersion>1.0.406601</MicrosoftSymbolStoreVersion>
D
dotnet-bot 已提交
258
  </PropertyGroup>
259
</Project>