mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-08 03:27:04 +09:00
![dotnet-maestro[bot]](/assets/img/avatar_default.png)
* Update dependencies from https://github.com/dotnet/arcade build 20250404.5 Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Build.Tasks.TargetFramework , Microsoft.DotNet.Build.Tasks.Templating , Microsoft.DotNet.Build.Tasks.Workloads , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.GenAPI , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.PackageTesting , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitAssert , Microsoft.DotNet.XUnitConsoleRunner , Microsoft.DotNet.XUnitExtensions From Version 9.0.0-beta.25164.2 -> To Version 9.0.0-beta.25204.5 * Update dependencies from https://github.com/dotnet/arcade build 20250408.6 Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Build.Tasks.TargetFramework , Microsoft.DotNet.Build.Tasks.Templating , Microsoft.DotNet.Build.Tasks.Workloads , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.GenAPI , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.PackageTesting , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitAssert , Microsoft.DotNet.XUnitConsoleRunner , Microsoft.DotNet.XUnitExtensions From Version 9.0.0-beta.25164.2 -> To Version 9.0.0-beta.25208.6 --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Carlos Sánchez López <1175054+carlossanlop@users.noreply.github.com>
273 lines
22 KiB
XML
273 lines
22 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<!-- The .NET product branding version -->
|
|
<ProductVersion>9.0.5</ProductVersion>
|
|
<!-- File version numbers -->
|
|
<MajorVersion>9</MajorVersion>
|
|
<MinorVersion>0</MinorVersion>
|
|
<PatchVersion>5</PatchVersion>
|
|
<SdkBandVersion>9.0.100</SdkBandVersion>
|
|
<PackageVersionNet8>8.0.$([MSBuild]::Add($(PatchVersion),11))</PackageVersionNet8>
|
|
<PackageVersionNet7>7.0.20</PackageVersionNet7>
|
|
<PackageVersionNet6>6.0.36</PackageVersionNet6>
|
|
<PreReleaseVersionLabel>servicing</PreReleaseVersionLabel>
|
|
<PreReleaseVersionIteration>
|
|
</PreReleaseVersionIteration>
|
|
<!-- Enable to remove prerelease label. -->
|
|
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">true</StabilizePackageVersion>
|
|
<DotNetFinalVersionKind Condition="'$(StabilizePackageVersion)' == 'true'">release</DotNetFinalVersionKind>
|
|
<WorkloadVersionSuffix Condition="'$(DotNetFinalVersionKind)' != 'release' and '$(PreReleaseVersionIteration)' == '' and '$(PreReleaseVersionLabel)' != 'rtm'">-$(PreReleaseVersionLabel)</WorkloadVersionSuffix>
|
|
<WorkloadVersionSuffix Condition="'$(WorkloadVersionSuffix)' == '' and '$(DotNetFinalVersionKind)' != 'release' and '$(PreReleaseVersionLabel)' != 'rtm'">-$(PreReleaseVersionLabel).$(PreReleaseVersionIteration)</WorkloadVersionSuffix>
|
|
<SdkBandVersionForWorkload_FromRuntimeVersions>$(SdkBandVersion)$(WorkloadVersionSuffix)</SdkBandVersionForWorkload_FromRuntimeVersions>
|
|
<!-- 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. -->
|
|
<AssemblyVersion>$(MajorVersion).$(MinorVersion).0.0</AssemblyVersion>
|
|
<!-- Opt-in/out repo features -->
|
|
<UsingToolIbcOptimization>false</UsingToolIbcOptimization>
|
|
<UsingToolXliff>false</UsingToolXliff>
|
|
<FlagNetStandard1XDependencies Condition="'$(FlagNetStandard1XDependencies)' == ''">true</FlagNetStandard1XDependencies>
|
|
<!-- Runtime controls its dependency graph via Traversal projects and doesn't want or need Arcade's ExcludeFrom infrastructure. -->
|
|
<DisableArcadeExcludeFromBuildSupport>true</DisableArcadeExcludeFromBuildSupport>
|
|
<!-- Use SDK compilers in full VMR builds. -->
|
|
<UsingToolMicrosoftNetCompilers Condition="'$(DotNetBuildOrchestrator)' != 'true'">true</UsingToolMicrosoftNetCompilers>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<WorkloadSdkBandVersions Include="$(SdkBandVersion)" SupportsMachineArch="true" />
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<!-- dotnet/roslyn-analyzers dependencies -->
|
|
<MicrosoftCodeAnalysisAnalyzersVersion>3.11.0-beta1.25173.3</MicrosoftCodeAnalysisAnalyzersVersion>
|
|
<MicrosoftCodeAnalysisNetAnalyzersVersion>9.0.0-preview.25173.3</MicrosoftCodeAnalysisNetAnalyzersVersion>
|
|
<!-- 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.
|
|
-->
|
|
<MicrosoftCodeAnalysisCSharpVersion>4.12.0-3.25173.5</MicrosoftCodeAnalysisCSharpVersion>
|
|
<MicrosoftCodeAnalysisVersion>4.12.0-3.25173.5</MicrosoftCodeAnalysisVersion>
|
|
<MicrosoftNetCompilersToolsetVersion>4.12.0-3.25173.5</MicrosoftNetCompilersToolsetVersion>
|
|
</PropertyGroup>
|
|
<!--
|
|
For source generator support we need to target multiple versions of Roslyn in order to be able to run on older versions of Roslyn.
|
|
We pin these versions as we need to match them exactly for any scenarios that run Roslyn on .NET Framework, like Visual Studio.
|
|
-->
|
|
<PropertyGroup>
|
|
<!-- Compatibility with VS 16.11/.NET SDK 5.0.4xx -->
|
|
<MicrosoftCodeAnalysisVersion_3_11>3.11.0</MicrosoftCodeAnalysisVersion_3_11>
|
|
<!-- Compatibility with VS 17.0/.NET SDK 6.0.1xx -->
|
|
<MicrosoftCodeAnalysisVersion_4_0>4.0.1</MicrosoftCodeAnalysisVersion_4_0>
|
|
<!-- Compatibility with VS 17.4/.NET SDK 7.0.1xx -->
|
|
<MicrosoftCodeAnalysisVersion_4_4>4.4.0</MicrosoftCodeAnalysisVersion_4_4>
|
|
<!-- Compatibility with VS 17.8/.NET SDK 8.0.1xx -->
|
|
<MicrosoftCodeAnalysisVersion_4_8>4.8.0</MicrosoftCodeAnalysisVersion_4_8>
|
|
<!-- Compatibility with the latest Visual Studio Preview release -->
|
|
<!--
|
|
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.
|
|
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.
|
|
-->
|
|
<MicrosoftCodeAnalysisVersion_LatestVS>4.8.0</MicrosoftCodeAnalysisVersion_LatestVS>
|
|
<!-- Some of the analyzer dependencies used by ILLink project -->
|
|
<MicrosoftCodeAnalysisBannedApiAnalyzersVersion>3.3.5-beta1.23270.2</MicrosoftCodeAnalysisBannedApiAnalyzersVersion>
|
|
</PropertyGroup>
|
|
<!--
|
|
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>
|
|
<StaticCsVersion>0.2.0</StaticCsVersion>
|
|
<!-- SDK dependencies (also used in wasm build tests -->
|
|
<MicrosoftDotNetApiCompatTaskVersion>9.0.105</MicrosoftDotNetApiCompatTaskVersion>
|
|
<!-- Arcade dependencies -->
|
|
<MicrosoftDotNetBuildTasksFeedVersion>9.0.0-beta.25208.6</MicrosoftDotNetBuildTasksFeedVersion>
|
|
<MicrosoftDotNetCodeAnalysisVersion>9.0.0-beta.25208.6</MicrosoftDotNetCodeAnalysisVersion>
|
|
<MicrosoftDotNetGenAPIVersion>9.0.0-beta.25208.6</MicrosoftDotNetGenAPIVersion>
|
|
<MicrosoftDotNetGenFacadesVersion>9.0.0-beta.25208.6</MicrosoftDotNetGenFacadesVersion>
|
|
<MicrosoftDotNetXUnitAssertVersion>2.9.0-beta.25208.6</MicrosoftDotNetXUnitAssertVersion>
|
|
<MicrosoftDotNetXUnitExtensionsVersion>9.0.0-beta.25208.6</MicrosoftDotNetXUnitExtensionsVersion>
|
|
<MicrosoftDotNetXUnitConsoleRunnerVersion>2.9.0-beta.25208.6</MicrosoftDotNetXUnitConsoleRunnerVersion>
|
|
<MicrosoftDotNetBuildTasksArchivesVersion>9.0.0-beta.25208.6</MicrosoftDotNetBuildTasksArchivesVersion>
|
|
<MicrosoftDotNetBuildTasksInstallersVersion>9.0.0-beta.25208.6</MicrosoftDotNetBuildTasksInstallersVersion>
|
|
<MicrosoftDotNetBuildTasksPackagingVersion>9.0.0-beta.25208.6</MicrosoftDotNetBuildTasksPackagingVersion>
|
|
<MicrosoftDotNetBuildTasksTargetFrameworkVersion>9.0.0-beta.25208.6</MicrosoftDotNetBuildTasksTargetFrameworkVersion>
|
|
<MicrosoftDotNetBuildTasksTemplatingVersion>9.0.0-beta.25208.6</MicrosoftDotNetBuildTasksTemplatingVersion>
|
|
<MicrosoftDotNetBuildTasksWorkloadsPackageVersion>9.0.0-beta.25208.6</MicrosoftDotNetBuildTasksWorkloadsPackageVersion>
|
|
<MicrosoftDotNetRemoteExecutorVersion>9.0.0-beta.25208.6</MicrosoftDotNetRemoteExecutorVersion>
|
|
<MicrosoftDotNetVersionToolsTasksVersion>9.0.0-beta.25208.6</MicrosoftDotNetVersionToolsTasksVersion>
|
|
<MicrosoftDotNetPackageTestingVersion>9.0.0-beta.25208.6</MicrosoftDotNetPackageTestingVersion>
|
|
<!-- TODO: Remove pinned xunit.analyzers version: https://github.com/dotnet/runtime/issues/97088 -->
|
|
<XUnitAnalyzersVersion>1.4.0</XUnitAnalyzersVersion>
|
|
<!-- NuGet dependencies -->
|
|
<NuGetBuildTasksPackVersion>6.0.0-preview.1.102</NuGetBuildTasksPackVersion>
|
|
<!-- Installer dependencies -->
|
|
<MicrosoftNETCoreAppRuntimewinx64Version>9.0.0-rtm.24511.16</MicrosoftNETCoreAppRuntimewinx64Version>
|
|
<MicrosoftExtensionsDependencyModelVersion>6.0.0</MicrosoftExtensionsDependencyModelVersion>
|
|
<!-- ILAsm dependencies -->
|
|
<MicrosoftNETCoreILAsmVersion>9.0.0-rtm.24511.16</MicrosoftNETCoreILAsmVersion>
|
|
<!-- Libraries dependencies -->
|
|
<MicrosoftBclAsyncInterfacesVersion>6.0.0</MicrosoftBclAsyncInterfacesVersion>
|
|
<MicrosoftBclHashCodeVersion>1.1.1</MicrosoftBclHashCodeVersion>
|
|
<MicrosoftWin32RegistryVersion>5.0.0</MicrosoftWin32RegistryVersion>
|
|
<StyleCopAnalyzersVersion>1.2.0-beta.507</StyleCopAnalyzersVersion>
|
|
<SystemBuffersVersion>4.5.1</SystemBuffersVersion>
|
|
<SystemComponentModelAnnotationsVersion>5.0.0</SystemComponentModelAnnotationsVersion>
|
|
<SystemDataSqlClientVersion>4.8.6</SystemDataSqlClientVersion>
|
|
<SystemDrawingCommonVersion>8.0.0</SystemDrawingCommonVersion>
|
|
<SystemFormatsAsn1Version>8.0.1</SystemFormatsAsn1Version>
|
|
<SystemIOFileSystemAccessControlVersion>5.0.0</SystemIOFileSystemAccessControlVersion>
|
|
<SystemMemoryVersion>4.5.5</SystemMemoryVersion>
|
|
<SystemReflectionMetadataVersion>9.0.0-rtm.24511.16</SystemReflectionMetadataVersion>
|
|
<SystemReflectionMetadataLoadContextVersion>9.0.0-rtm.24511.16</SystemReflectionMetadataLoadContextVersion>
|
|
<SystemSecurityAccessControlVersion>6.0.0</SystemSecurityAccessControlVersion>
|
|
<SystemSecurityCryptographyCngVersion>5.0.0</SystemSecurityCryptographyCngVersion>
|
|
<SystemSecurityCryptographyOpenSslVersion>5.0.0</SystemSecurityCryptographyOpenSslVersion>
|
|
<SystemSecurityPrincipalWindowsVersion>5.0.0</SystemSecurityPrincipalWindowsVersion>
|
|
<SystemSecurityPermissionsVersion>7.0.0</SystemSecurityPermissionsVersion>
|
|
<SystemTextJsonVersion>9.0.0-rtm.24511.16</SystemTextJsonVersion>
|
|
<SystemRuntimeCompilerServicesUnsafeVersion>6.0.0</SystemRuntimeCompilerServicesUnsafeVersion>
|
|
<SystemThreadingAccessControlVersion>7.0.0</SystemThreadingAccessControlVersion>
|
|
<SystemThreadingTasksExtensionsVersion>4.5.4</SystemThreadingTasksExtensionsVersion>
|
|
<SystemValueTupleVersion>4.5.0</SystemValueTupleVersion>
|
|
<runtimenativeSystemIOPortsVersion>9.0.0-rtm.24511.16</runtimenativeSystemIOPortsVersion>
|
|
<!-- Keep toolset versions in sync with dotnet/msbuild and dotnet/sdk -->
|
|
<SystemCollectionsImmutableToolsetVersion>8.0.0</SystemCollectionsImmutableToolsetVersion>
|
|
<SystemTextJsonToolsetVersion>8.0.4</SystemTextJsonToolsetVersion>
|
|
<SystemReflectionMetadataToolsetVersion>8.0.0</SystemReflectionMetadataToolsetVersion>
|
|
<SystemReflectionMetadataLoadContextToolsetVersion>8.0.0</SystemReflectionMetadataLoadContextToolsetVersion>
|
|
<!-- Runtime-Assets dependencies -->
|
|
<SystemRuntimeNumericsTestDataVersion>9.0.0-beta.25209.2</SystemRuntimeNumericsTestDataVersion>
|
|
<SystemComponentModelTypeConverterTestDataVersion>9.0.0-beta.25209.2</SystemComponentModelTypeConverterTestDataVersion>
|
|
<SystemDataCommonTestDataVersion>9.0.0-beta.25209.2</SystemDataCommonTestDataVersion>
|
|
<SystemDrawingCommonTestDataVersion>9.0.0-beta.25209.2</SystemDrawingCommonTestDataVersion>
|
|
<SystemFormatsTarTestDataVersion>9.0.0-beta.25209.2</SystemFormatsTarTestDataVersion>
|
|
<SystemIOCompressionTestDataVersion>9.0.0-beta.25209.2</SystemIOCompressionTestDataVersion>
|
|
<SystemIOPackagingTestDataVersion>9.0.0-beta.25209.2</SystemIOPackagingTestDataVersion>
|
|
<SystemNetTestDataVersion>9.0.0-beta.25209.2</SystemNetTestDataVersion>
|
|
<SystemPrivateRuntimeUnicodeDataVersion>9.0.0-beta.25209.2</SystemPrivateRuntimeUnicodeDataVersion>
|
|
<SystemRuntimeTimeZoneDataVersion>9.0.0-beta.25209.2</SystemRuntimeTimeZoneDataVersion>
|
|
<SystemSecurityCryptographyX509CertificatesTestDataVersion>9.0.0-beta.25209.2</SystemSecurityCryptographyX509CertificatesTestDataVersion>
|
|
<SystemTextRegularExpressionsTestDataVersion>9.0.0-beta.25209.2</SystemTextRegularExpressionsTestDataVersion>
|
|
<SystemWindowsExtensionsTestDataVersion>9.0.0-beta.25209.2</SystemWindowsExtensionsTestDataVersion>
|
|
<MicrosoftDotNetCilStripSourcesVersion>9.0.0-beta.25209.2</MicrosoftDotNetCilStripSourcesVersion>
|
|
<!-- dotnet-optimization dependencies -->
|
|
<optimizationwindows_ntx64MIBCRuntimeVersion>1.0.0-prerelease.24462.2</optimizationwindows_ntx64MIBCRuntimeVersion>
|
|
<optimizationwindows_ntx86MIBCRuntimeVersion>1.0.0-prerelease.24462.2</optimizationwindows_ntx86MIBCRuntimeVersion>
|
|
<optimizationwindows_ntarm64MIBCRuntimeVersion>1.0.0-prerelease.24462.2</optimizationwindows_ntarm64MIBCRuntimeVersion>
|
|
<optimizationlinuxx64MIBCRuntimeVersion>1.0.0-prerelease.24462.2</optimizationlinuxx64MIBCRuntimeVersion>
|
|
<optimizationlinuxarm64MIBCRuntimeVersion>1.0.0-prerelease.24462.2</optimizationlinuxarm64MIBCRuntimeVersion>
|
|
<optimizationPGOCoreCLRVersion>1.0.0-prerelease.24462.2</optimizationPGOCoreCLRVersion>
|
|
<!-- Not auto-updated. -->
|
|
<MicrosoftDiaSymReaderVersion>2.0.0</MicrosoftDiaSymReaderVersion>
|
|
<MicrosoftDiaSymReaderNativeVersion>17.12.0-beta1.24603.5</MicrosoftDiaSymReaderNativeVersion>
|
|
<SystemCommandLineVersion>2.0.0-beta4.24324.3</SystemCommandLineVersion>
|
|
<TraceEventVersion>3.1.7</TraceEventVersion>
|
|
<NETStandardLibraryRefVersion>2.1.0</NETStandardLibraryRefVersion>
|
|
<NetStandardLibraryVersion>2.0.3</NetStandardLibraryVersion>
|
|
<MicrosoftDiagnosticsToolsRuntimeClientVersion>1.0.4-preview6.19326.1</MicrosoftDiagnosticsToolsRuntimeClientVersion>
|
|
<DNNEVersion>2.0.5</DNNEVersion>
|
|
<MicrosoftBuildVersion>17.8.3</MicrosoftBuildVersion>
|
|
<MicrosoftBuildTasksCoreVersion>$(MicrosoftBuildVersion)</MicrosoftBuildTasksCoreVersion>
|
|
<MicrosoftBuildFrameworkVersion>$(MicrosoftBuildVersion)</MicrosoftBuildFrameworkVersion>
|
|
<MicrosoftBuildUtilitiesCoreVersion>$(MicrosoftBuildVersion)</MicrosoftBuildUtilitiesCoreVersion>
|
|
<NugetFrameworksVersion>6.2.4</NugetFrameworksVersion>
|
|
<NugetProjectModelVersion>6.2.4</NugetProjectModelVersion>
|
|
<NugetPackagingVersion>6.2.4</NugetPackagingVersion>
|
|
<NugetVersioningVersion>6.2.4</NugetVersioningVersion>
|
|
<DotnetSosVersion>7.0.412701</DotnetSosVersion>
|
|
<DotnetSosTargetFrameworkVersion>6.0</DotnetSosTargetFrameworkVersion>
|
|
<!-- Testing -->
|
|
<MicrosoftNETCoreCoreDisToolsVersion>1.4.0</MicrosoftNETCoreCoreDisToolsVersion>
|
|
<MicrosoftNETTestSdkVersion>17.4.0-preview-20220707-01</MicrosoftNETTestSdkVersion>
|
|
<MicrosoftDotNetXHarnessTestRunnersCommonVersion>9.0.0-prerelease.25167.9</MicrosoftDotNetXHarnessTestRunnersCommonVersion>
|
|
<MicrosoftDotNetXHarnessTestRunnersXunitVersion>9.0.0-prerelease.25167.9</MicrosoftDotNetXHarnessTestRunnersXunitVersion>
|
|
<MicrosoftDotNetXHarnessCLIVersion>9.0.0-prerelease.25167.9</MicrosoftDotNetXHarnessCLIVersion>
|
|
<MicrosoftDotNetHotReloadUtilsGeneratorBuildToolVersion>9.0.0-alpha.0.25174.2</MicrosoftDotNetHotReloadUtilsGeneratorBuildToolVersion>
|
|
<NUnitVersion>3.12.0</NUnitVersion>
|
|
<NUnit3TestAdapterVersion>4.5.0</NUnit3TestAdapterVersion>
|
|
<CoverletCollectorVersion>6.0.0</CoverletCollectorVersion>
|
|
<SystemComponentModelAnnotationsVersion>5.0.0</SystemComponentModelAnnotationsVersion>
|
|
<JsonSchemaNetVersion>7.0.2</JsonSchemaNetVersion>
|
|
<NewtonsoftJsonVersion>13.0.3</NewtonsoftJsonVersion>
|
|
<NewtonsoftJsonBsonVersion>1.0.2</NewtonsoftJsonBsonVersion>
|
|
<SQLitePCLRawbundle_greenVersion>2.0.4</SQLitePCLRawbundle_greenVersion>
|
|
<MoqVersion>4.18.4</MoqVersion>
|
|
<FluentAssertionsVersion>6.7.0</FluentAssertionsVersion>
|
|
<FsCheckVersion>2.14.3</FsCheckVersion>
|
|
<CommandLineParserVersion>2.9.1</CommandLineParserVersion>
|
|
<!-- 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>
|
|
<CompilerPlatformTestingVersion>1.1.3-beta1.24423.1</CompilerPlatformTestingVersion>
|
|
<CompilerPlatformTestingDiffPlexVersion>1.7.2</CompilerPlatformTestingDiffPlexVersion>
|
|
<CompilerPlatformTestingMicrosoftVisualBasicVersion>10.2.0</CompilerPlatformTestingMicrosoftVisualBasicVersion>
|
|
<CompilerPlatformTestingMicrosoftVisualStudioCompositionVersion>17.0.46</CompilerPlatformTestingMicrosoftVisualStudioCompositionVersion>
|
|
<!-- Docs -->
|
|
<MicrosoftPrivateIntellisenseVersion>9.0.0-preview-20241010.1</MicrosoftPrivateIntellisenseVersion>
|
|
<!-- Mono Cecil -->
|
|
<MicrosoftDotNetCecilVersion>0.11.5-alpha.25173.2</MicrosoftDotNetCecilVersion>
|
|
<!-- ILCompiler -->
|
|
<MicrosoftDotNetILCompilerVersion>9.0.0-rtm.24511.16</MicrosoftDotNetILCompilerVersion>
|
|
<!-- ICU -->
|
|
<MicrosoftNETCoreRuntimeICUTransportVersion>9.0.0-rtm.25177.1</MicrosoftNETCoreRuntimeICUTransportVersion>
|
|
<MicrosoftNETCoreRuntimeICUTransportVersion>9.0.0-rtm.24466.4</MicrosoftNETCoreRuntimeICUTransportVersion>
|
|
<!-- MsQuic -->
|
|
<MicrosoftNativeQuicMsQuicSchannelVersion>2.4.8</MicrosoftNativeQuicMsQuicSchannelVersion>
|
|
<SystemNetMsQuicTransportVersion>9.0.0-alpha.1.24167.3</SystemNetMsQuicTransportVersion>
|
|
<!-- Mono LLVM -->
|
|
<runtimelinuxarm64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>19.1.0-alpha.1.25163.1</runtimelinuxarm64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>
|
|
<runtimelinuxarm64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>19.1.0-alpha.1.25163.1</runtimelinuxarm64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>
|
|
<runtimelinuxmuslarm64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>19.1.0-alpha.1.25163.1</runtimelinuxmuslarm64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>
|
|
<runtimelinuxmuslarm64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>19.1.0-alpha.1.25163.1</runtimelinuxmuslarm64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>
|
|
<runtimelinuxx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>19.1.0-alpha.1.25163.1</runtimelinuxx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>
|
|
<runtimelinuxx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>19.1.0-alpha.1.25163.1</runtimelinuxx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>
|
|
<runtimelinuxmuslx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>19.1.0-alpha.1.25163.1</runtimelinuxmuslx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>
|
|
<runtimelinuxmuslx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>19.1.0-alpha.1.25163.1</runtimelinuxmuslx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>
|
|
<runtimewinx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>19.1.0-alpha.1.25163.1</runtimewinx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>
|
|
<runtimewinx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>19.1.0-alpha.1.25163.1</runtimewinx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>
|
|
<runtimeosxarm64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>19.1.0-alpha.1.25163.1</runtimeosxarm64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>
|
|
<runtimeosxarm64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>19.1.0-alpha.1.25163.1</runtimeosxarm64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>
|
|
<runtimeosxx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>19.1.0-alpha.1.25163.1</runtimeosxx64MicrosoftNETCoreRuntimeMonoLLVMSdkVersion>
|
|
<runtimeosxx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>19.1.0-alpha.1.25163.1</runtimeosxx64MicrosoftNETCoreRuntimeMonoLLVMToolsVersion>
|
|
<!-- emscripten / Node
|
|
Note: when the name is updated, make sure to update dependency name in eng/pipelines/common/xplat-setup.yml
|
|
like - DarcDependenciesChanged.Microsoft_NET_Workload_Emscripten_Current_Manifest-9_0_100_Transport
|
|
-->
|
|
<MicrosoftNETWorkloadEmscriptenCurrentManifest90100TransportVersion>9.0.5-servicing.25203.2</MicrosoftNETWorkloadEmscriptenCurrentManifest90100TransportVersion>
|
|
<MicrosoftNETWorkloadEmscriptenCurrentManifest90100Version>9.0.5</MicrosoftNETWorkloadEmscriptenCurrentManifest90100Version>
|
|
<MicrosoftNETRuntimeEmscriptenVersion>$(MicrosoftNETWorkloadEmscriptenCurrentManifest90100Version)</MicrosoftNETRuntimeEmscriptenVersion>
|
|
<!-- workloads -->
|
|
<SwixPackageVersion>1.1.87-gba258badda</SwixPackageVersion>
|
|
<WixPackageVersion>1.0.0-v3.14.0.5722</WixPackageVersion>
|
|
<!-- JIT Tools -->
|
|
<runtimelinuxarm64MicrosoftNETCoreRuntimeJITToolsVersion>19.1.0-alpha.1.25163.1</runtimelinuxarm64MicrosoftNETCoreRuntimeJITToolsVersion>
|
|
<runtimelinuxx64MicrosoftNETCoreRuntimeJITToolsVersion>19.1.0-alpha.1.25163.1</runtimelinuxx64MicrosoftNETCoreRuntimeJITToolsVersion>
|
|
<runtimelinuxmuslarm64MicrosoftNETCoreRuntimeJITToolsVersion>19.1.0-alpha.1.25163.1</runtimelinuxmuslarm64MicrosoftNETCoreRuntimeJITToolsVersion>
|
|
<runtimelinuxmuslx64MicrosoftNETCoreRuntimeJITToolsVersion>19.1.0-alpha.1.25163.1</runtimelinuxmuslx64MicrosoftNETCoreRuntimeJITToolsVersion>
|
|
<runtimewinarm64MicrosoftNETCoreRuntimeJITToolsVersion>19.1.0-alpha.1.25163.1</runtimewinarm64MicrosoftNETCoreRuntimeJITToolsVersion>
|
|
<runtimewinx64MicrosoftNETCoreRuntimeJITToolsVersion>19.1.0-alpha.1.25163.1</runtimewinx64MicrosoftNETCoreRuntimeJITToolsVersion>
|
|
<runtimeosxarm64MicrosoftNETCoreRuntimeJITToolsVersion>19.1.0-alpha.1.25163.1</runtimeosxarm64MicrosoftNETCoreRuntimeJITToolsVersion>
|
|
<runtimeosxx64MicrosoftNETCoreRuntimeJITToolsVersion>19.1.0-alpha.1.25163.1</runtimeosxx64MicrosoftNETCoreRuntimeJITToolsVersion>
|
|
<!-- BrowserDebugProxy libs -->
|
|
<MicrosoftExtensionsLoggingVersion>3.1.7</MicrosoftExtensionsLoggingVersion>
|
|
<MicrosoftSymbolStoreVersion>1.0.406601</MicrosoftSymbolStoreVersion>
|
|
<!-- sdk version, for testing workloads -->
|
|
<SdkVersionForWorkloadTesting>$(MicrosoftDotNetApiCompatTaskVersion)</SdkVersionForWorkloadTesting>
|
|
<!--<SdkVersionForWorkloadTesting>9.0.102</SdkVersionForWorkloadTesting>-->
|
|
<runtimewinx64MicrosoftNETCoreRuntimeWasmNodeTransportPackageVersion>9.0.0-alpha.1.24175.1</runtimewinx64MicrosoftNETCoreRuntimeWasmNodeTransportPackageVersion>
|
|
<EmsdkPackageVersion>$(MicrosoftNETRuntimeEmscriptenVersion)</EmsdkPackageVersion>
|
|
<NodePackageVersion>$(runtimewinx64MicrosoftNETCoreRuntimeWasmNodeTransportPackageVersion)</NodePackageVersion>
|
|
<!-- The package path for python in src/mono/mono.proj needs to be updated if this changes-->
|
|
<EmsdkVersion>3.1.56</EmsdkVersion>
|
|
</PropertyGroup>
|
|
</Project>
|