2019-04-20 04:51:22 +03:00
|
|
|
<!--
|
2018-12-14 01:35:02 +03:00
|
|
|
|
|
|
|
This file defines the versions of external dependencies used by ASP.NET Core.
|
|
|
|
This file might be updated by automation.
|
|
|
|
|
|
|
|
-->
|
2019-01-14 23:01:31 +03:00
|
|
|
<Project>
|
2019-06-08 03:19:41 +03:00
|
|
|
<PropertyGroup Label="Version settings">
|
2022-08-16 23:12:12 +03:00
|
|
|
<AspNetCoreMajorVersion>8</AspNetCoreMajorVersion>
|
2019-06-08 03:19:41 +03:00
|
|
|
<AspNetCoreMinorVersion>0</AspNetCoreMinorVersion>
|
|
|
|
<AspNetCorePatchVersion>0</AspNetCorePatchVersion>
|
2022-07-13 03:08:43 +03:00
|
|
|
<PreReleaseVersionIteration>1</PreReleaseVersionIteration>
|
2021-03-12 01:31:33 +03:00
|
|
|
<ValidateBaseline>true</ValidateBaseline>
|
2019-09-15 23:34:08 +03:00
|
|
|
<!--
|
|
|
|
When StabilizePackageVersion is set to 'true', this branch will produce stable outputs for 'Shipping' packages
|
|
|
|
-->
|
2020-10-23 03:23:28 +03:00
|
|
|
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>
|
2019-09-15 23:34:08 +03:00
|
|
|
<DotNetFinalVersionKind Condition="'$(StabilizePackageVersion)' == 'true'">release</DotNetFinalVersionKind>
|
2022-08-16 23:12:12 +03:00
|
|
|
<PreReleaseVersionLabel>alpha</PreReleaseVersionLabel>
|
|
|
|
<PreReleaseBrandingLabel>Alpha $(PreReleaseVersionIteration)</PreReleaseBrandingLabel>
|
2019-09-11 06:43:24 +03:00
|
|
|
<IncludePreReleaseLabelInPackageVersion>true</IncludePreReleaseLabelInPackageVersion>
|
2019-09-14 05:37:53 +03:00
|
|
|
<IncludePreReleaseLabelInPackageVersion Condition=" '$(DotNetFinalVersionKind)' == 'release' ">false</IncludePreReleaseLabelInPackageVersion>
|
2019-06-08 03:19:41 +03:00
|
|
|
<AspNetCoreMajorMinorVersion>$(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion)</AspNetCoreMajorMinorVersion>
|
|
|
|
<!-- Servicing builds have different characteristics for the way dependencies, baselines, and versions are handled. -->
|
2020-10-13 01:03:47 +03:00
|
|
|
<IsServicingBuild Condition=" '$(PreReleaseVersionLabel)' == 'servicing' ">true</IsServicingBuild>
|
2020-08-25 22:34:31 +03:00
|
|
|
<VersionPrefix>$(AspNetCoreMajorMinorVersion).$(AspNetCorePatchVersion)</VersionPrefix>
|
2020-11-10 20:51:47 +03:00
|
|
|
<!--
|
|
|
|
TargetingPackVersionPrefix is used by projects, like .deb and .rpm, which use slightly different version formats.
|
|
|
|
It's also used in root Directory.Build.targets to determine the version of the last-built targeting pack.
|
|
|
|
-->
|
2019-06-08 03:19:41 +03:00
|
|
|
<TargetingPackVersionPrefix>$(VersionPrefix)</TargetingPackVersionPrefix>
|
|
|
|
<ExperimentalVersionPrefix>0.3.$(AspNetCorePatchVersion)</ExperimentalVersionPrefix>
|
|
|
|
<!-- ANCM versioning is intentionally 10 + AspNetCoreMajorVersion because earlier versions of ANCM shipped as 8.x. -->
|
|
|
|
<AspNetCoreModuleVersionMajor>$([MSBuild]::Add(10, $(AspNetCoreMajorVersion)))</AspNetCoreModuleVersionMajor>
|
|
|
|
<AspNetCoreModuleVersionMinor>$(AspNetCoreMinorVersion)</AspNetCoreModuleVersionMinor>
|
|
|
|
<AspNetCoreModuleVersionRevision>$(AspNetCorePatchVersion)</AspNetCoreModuleVersionRevision>
|
|
|
|
<!-- This is used for error checking to ensure generated code and baselines are up to date when we increment the patch. -->
|
2020-08-25 22:34:31 +03:00
|
|
|
<PreviousAspNetCoreReleaseVersion Condition=" '$(AspNetCorePatchVersion)' != '0' ">$(AspNetCoreMajorMinorVersion).$([MSBuild]::Subtract($(AspNetCorePatchVersion), 1))</PreviousAspNetCoreReleaseVersion>
|
2020-10-12 22:07:13 +03:00
|
|
|
<!--
|
2020-10-27 10:04:33 +03:00
|
|
|
Update the packages referenced in Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj,
|
|
|
|
src\Components\WebAssembly\Sdk\testassets\Directory.Build.props, and
|
|
|
|
src\Razor\test\testassets\Directory.Build.props when this changes.
|
2020-10-12 22:07:13 +03:00
|
|
|
-->
|
2022-12-15 22:10:14 +03:00
|
|
|
<DefaultNetCoreTargetFramework>net8.0</DefaultNetCoreTargetFramework>
|
2019-06-08 03:19:41 +03:00
|
|
|
</PropertyGroup>
|
2019-05-24 01:35:49 +03:00
|
|
|
<PropertyGroup Label="Arcade settings">
|
2019-06-08 03:19:41 +03:00
|
|
|
<!-- Opt-in to Arcade tools for building VSIX projects. -->
|
|
|
|
<UsingToolVSSDK>true</UsingToolVSSDK>
|
|
|
|
<!-- Only use Microsoft.NETFramework.ReferenceAssemblies on non-windows builds. Using this on Windows breaks MVC runtime compilation. -->
|
|
|
|
<UsingToolNetFrameworkReferenceAssemblies Condition="'$(OS)' != 'Windows_NT'">true</UsingToolNetFrameworkReferenceAssemblies>
|
|
|
|
<!-- Disable XLIFF tasks -->
|
|
|
|
<UsingToolXliff>false</UsingToolXliff>
|
2019-05-24 01:35:49 +03:00
|
|
|
</PropertyGroup>
|
2019-02-06 23:07:59 +03:00
|
|
|
<!--
|
|
|
|
|
|
|
|
These versions should ONLY be updated by automation.
|
|
|
|
|
|
|
|
DO NOT UPDATE THESE MANUALLY. Use the `darc` command line tool to update this file so it stays in sync with
|
|
|
|
Version.Details.xml.
|
|
|
|
|
|
|
|
See https://github.com/dotnet/arcade/blob/master/Documentation/Darc.md for instructions on using darc.
|
|
|
|
|
|
|
|
-->
|
2019-01-14 23:01:31 +03:00
|
|
|
<PropertyGroup Label="Automated">
|
2020-04-06 11:06:22 +03:00
|
|
|
<!-- Packages from dotnet/runtime -->
|
2023-01-11 07:33:38 +03:00
|
|
|
<MicrosoftExtensionsDependencyModelVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsDependencyModelVersion>
|
|
|
|
<MicrosoftNETCoreAppRefVersion>8.0.0-alpha.1.23059.14</MicrosoftNETCoreAppRefVersion>
|
|
|
|
<MicrosoftNETCoreAppRuntimewinx64Version>8.0.0-alpha.1.23059.14</MicrosoftNETCoreAppRuntimewinx64Version>
|
|
|
|
<MicrosoftNETRuntimeMonoAOTCompilerTaskVersion>8.0.0-alpha.1.23059.14</MicrosoftNETRuntimeMonoAOTCompilerTaskVersion>
|
|
|
|
<MicrosoftNETRuntimeWebAssemblySdkVersion>8.0.0-alpha.1.23059.14</MicrosoftNETRuntimeWebAssemblySdkVersion>
|
|
|
|
<MicrosoftNETCoreAppRuntimeAOTwinx64CrossbrowserwasmVersion>8.0.0-alpha.1.23059.14</MicrosoftNETCoreAppRuntimeAOTwinx64CrossbrowserwasmVersion>
|
|
|
|
<MicrosoftNETCoreBrowserDebugHostTransportVersion>8.0.0-alpha.1.23059.14</MicrosoftNETCoreBrowserDebugHostTransportVersion>
|
|
|
|
<MicrosoftExtensionsCachingAbstractionsVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsCachingAbstractionsVersion>
|
|
|
|
<MicrosoftExtensionsCachingMemoryVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsCachingMemoryVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationAbstractionsVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsConfigurationAbstractionsVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationBinderVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsConfigurationBinderVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationCommandLineVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsConfigurationCommandLineVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationEnvironmentVariablesVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsConfigurationEnvironmentVariablesVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationFileExtensionsVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsConfigurationFileExtensionsVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationIniVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsConfigurationIniVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationJsonVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsConfigurationJsonVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsConfigurationVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationUserSecretsVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsConfigurationUserSecretsVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationXmlVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsConfigurationXmlVersion>
|
|
|
|
<MicrosoftExtensionsDependencyInjectionAbstractionsVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsDependencyInjectionAbstractionsVersion>
|
|
|
|
<MicrosoftExtensionsDependencyInjectionVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsDependencyInjectionVersion>
|
|
|
|
<MicrosoftExtensionsFileProvidersAbstractionsVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsFileProvidersAbstractionsVersion>
|
|
|
|
<MicrosoftExtensionsFileProvidersCompositeVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsFileProvidersCompositeVersion>
|
|
|
|
<MicrosoftExtensionsFileProvidersPhysicalVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsFileProvidersPhysicalVersion>
|
|
|
|
<MicrosoftExtensionsFileSystemGlobbingVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsFileSystemGlobbingVersion>
|
|
|
|
<MicrosoftExtensionsHostFactoryResolverSourcesVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsHostFactoryResolverSourcesVersion>
|
|
|
|
<MicrosoftExtensionsHostingAbstractionsVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsHostingAbstractionsVersion>
|
|
|
|
<MicrosoftExtensionsHostingVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsHostingVersion>
|
|
|
|
<MicrosoftExtensionsHttpVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsHttpVersion>
|
|
|
|
<MicrosoftExtensionsLoggingAbstractionsVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsLoggingAbstractionsVersion>
|
|
|
|
<MicrosoftExtensionsLoggingConfigurationVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsLoggingConfigurationVersion>
|
|
|
|
<MicrosoftExtensionsLoggingConsoleVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsLoggingConsoleVersion>
|
|
|
|
<MicrosoftExtensionsLoggingDebugVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsLoggingDebugVersion>
|
|
|
|
<MicrosoftExtensionsLoggingEventSourceVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsLoggingEventSourceVersion>
|
|
|
|
<MicrosoftExtensionsLoggingEventLogVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsLoggingEventLogVersion>
|
|
|
|
<MicrosoftExtensionsLoggingVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsLoggingVersion>
|
|
|
|
<MicrosoftExtensionsLoggingTraceSourceVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsLoggingTraceSourceVersion>
|
|
|
|
<MicrosoftExtensionsOptionsConfigurationExtensionsVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsOptionsConfigurationExtensionsVersion>
|
|
|
|
<MicrosoftExtensionsOptionsDataAnnotationsVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsOptionsDataAnnotationsVersion>
|
|
|
|
<MicrosoftExtensionsOptionsVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsOptionsVersion>
|
|
|
|
<MicrosoftExtensionsPrimitivesVersion>8.0.0-alpha.1.23059.14</MicrosoftExtensionsPrimitivesVersion>
|
|
|
|
<MicrosoftInternalRuntimeAspNetCoreTransportVersion>8.0.0-alpha.1.23059.14</MicrosoftInternalRuntimeAspNetCoreTransportVersion>
|
|
|
|
<SystemConfigurationConfigurationManagerVersion>8.0.0-alpha.1.23059.14</SystemConfigurationConfigurationManagerVersion>
|
|
|
|
<SystemDiagnosticsDiagnosticSourceVersion>8.0.0-alpha.1.23059.14</SystemDiagnosticsDiagnosticSourceVersion>
|
|
|
|
<SystemDiagnosticsEventLogVersion>8.0.0-alpha.1.23059.14</SystemDiagnosticsEventLogVersion>
|
|
|
|
<SystemDirectoryServicesProtocolsVersion>8.0.0-alpha.1.23059.14</SystemDirectoryServicesProtocolsVersion>
|
|
|
|
<SystemIOPipelinesVersion>8.0.0-alpha.1.23059.14</SystemIOPipelinesVersion>
|
|
|
|
<SystemNetHttpJsonVersion>8.0.0-alpha.1.23059.14</SystemNetHttpJsonVersion>
|
|
|
|
<SystemNetHttpWinHttpHandlerVersion>8.0.0-alpha.1.23059.14</SystemNetHttpWinHttpHandlerVersion>
|
|
|
|
<SystemReflectionMetadataVersion>8.0.0-alpha.1.23059.14</SystemReflectionMetadataVersion>
|
|
|
|
<SystemResourcesExtensionsVersion>8.0.0-alpha.1.23059.14</SystemResourcesExtensionsVersion>
|
|
|
|
<SystemSecurityCryptographyPkcsVersion>8.0.0-alpha.1.23059.14</SystemSecurityCryptographyPkcsVersion>
|
|
|
|
<SystemSecurityCryptographyXmlVersion>8.0.0-alpha.1.23059.14</SystemSecurityCryptographyXmlVersion>
|
|
|
|
<SystemSecurityPermissionsVersion>8.0.0-alpha.1.23059.14</SystemSecurityPermissionsVersion>
|
|
|
|
<SystemServiceProcessServiceControllerVersion>8.0.0-alpha.1.23059.14</SystemServiceProcessServiceControllerVersion>
|
|
|
|
<SystemTextEncodingsWebVersion>8.0.0-alpha.1.23059.14</SystemTextEncodingsWebVersion>
|
|
|
|
<SystemTextJsonVersion>8.0.0-alpha.1.23059.14</SystemTextJsonVersion>
|
|
|
|
<SystemThreadingAccessControlVersion>8.0.0-alpha.1.23059.14</SystemThreadingAccessControlVersion>
|
|
|
|
<SystemThreadingChannelsVersion>8.0.0-alpha.1.23059.14</SystemThreadingChannelsVersion>
|
|
|
|
<SystemThreadingRateLimitingVersion>8.0.0-alpha.1.23059.14</SystemThreadingRateLimitingVersion>
|
2019-02-20 20:53:53 +03:00
|
|
|
<!-- Only listed explicitly to workaround https://github.com/dotnet/cli/issues/10528 -->
|
2023-01-11 07:33:38 +03:00
|
|
|
<MicrosoftNETCorePlatformsVersion>8.0.0-alpha.1.23059.14</MicrosoftNETCorePlatformsVersion>
|
2020-01-08 20:08:27 +03:00
|
|
|
<!-- Packages from dotnet/efcore -->
|
2023-01-11 22:05:42 +03:00
|
|
|
<dotnetefVersion>8.0.0-alpha.1.23061.5</dotnetefVersion>
|
|
|
|
<MicrosoftEntityFrameworkCoreInMemoryVersion>8.0.0-alpha.1.23061.5</MicrosoftEntityFrameworkCoreInMemoryVersion>
|
|
|
|
<MicrosoftEntityFrameworkCoreRelationalVersion>8.0.0-alpha.1.23061.5</MicrosoftEntityFrameworkCoreRelationalVersion>
|
|
|
|
<MicrosoftEntityFrameworkCoreSqliteVersion>8.0.0-alpha.1.23061.5</MicrosoftEntityFrameworkCoreSqliteVersion>
|
|
|
|
<MicrosoftEntityFrameworkCoreSqlServerVersion>8.0.0-alpha.1.23061.5</MicrosoftEntityFrameworkCoreSqlServerVersion>
|
|
|
|
<MicrosoftEntityFrameworkCoreToolsVersion>8.0.0-alpha.1.23061.5</MicrosoftEntityFrameworkCoreToolsVersion>
|
|
|
|
<MicrosoftEntityFrameworkCoreVersion>8.0.0-alpha.1.23061.5</MicrosoftEntityFrameworkCoreVersion>
|
|
|
|
<MicrosoftEntityFrameworkCoreDesignVersion>8.0.0-alpha.1.23061.5</MicrosoftEntityFrameworkCoreDesignVersion>
|
2020-09-01 00:19:34 +03:00
|
|
|
<!-- Packages from dotnet/arcade -->
|
2023-01-11 07:38:11 +03:00
|
|
|
<MicrosoftDotNetBuildTasksInstallersVersion>8.0.0-beta.23058.1</MicrosoftDotNetBuildTasksInstallersVersion>
|
|
|
|
<MicrosoftDotNetBuildTasksTemplatingVersion>8.0.0-beta.23058.1</MicrosoftDotNetBuildTasksTemplatingVersion>
|
2022-07-21 01:55:35 +03:00
|
|
|
<!-- Packages from dotnet/source-build-externals -->
|
2023-01-09 18:12:50 +03:00
|
|
|
<MicrosoftSourceBuildIntermediatesourcebuildexternalsVersion>8.0.0-alpha.1.23055.2</MicrosoftSourceBuildIntermediatesourcebuildexternalsVersion>
|
2022-08-26 21:35:48 +03:00
|
|
|
<!-- Packages from dotnet/xdt -->
|
|
|
|
<MicrosoftWebXdtVersion>7.0.0-preview.22423.2</MicrosoftWebXdtVersion>
|
2019-01-14 23:01:31 +03:00
|
|
|
</PropertyGroup>
|
2019-02-06 23:07:59 +03:00
|
|
|
<!--
|
|
|
|
|
|
|
|
^^^^^^^^^^
|
|
|
|
SEE NOTE ABOVE.
|
|
|
|
|
|
|
|
Versions above this comment are updated automatically. Don't change them manually.
|
|
|
|
|
|
|
|
Versions below this comment are not managed by automation and can be changed as needed.
|
|
|
|
-->
|
2019-06-13 03:51:40 +03:00
|
|
|
<PropertyGroup Label="Dependency version settings">
|
|
|
|
<!--
|
|
|
|
Win-x64 is used here because we have picked an arbitrary runtime identifier to flow the version of the latest NETCore.App runtime.
|
|
|
|
All Runtime.$rid packages should have the same version.
|
|
|
|
-->
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftNETCoreAppRuntimeVersion>$(MicrosoftNETCoreAppRuntimewinx64Version)</MicrosoftNETCoreAppRuntimeVersion>
|
2020-11-30 06:46:55 +03:00
|
|
|
</PropertyGroup>
|
2019-02-06 23:07:59 +03:00
|
|
|
<PropertyGroup Label="Manual">
|
2022-11-09 02:10:29 +03:00
|
|
|
<!-- DiagnosticAdapter package pinned temporarily (??) until migrated/deprecated -->
|
|
|
|
<!-- This is the latest version found in dotnet-public. -->
|
|
|
|
<MicrosoftExtensionsDiagnosticAdapterVersion>5.0.0-preview.3.20215.2</MicrosoftExtensionsDiagnosticAdapterVersion>
|
2019-02-06 23:07:59 +03:00
|
|
|
<!-- Build tool dependencies -->
|
2019-06-08 03:19:41 +03:00
|
|
|
<MicrosoftVSSDKBuildToolsVersion>15.9.3032</MicrosoftVSSDKBuildToolsVersion>
|
2019-01-14 23:01:31 +03:00
|
|
|
<!-- Stable dotnet/corefx packages no longer updated for .NET Core 3 -->
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftCSharpVersion>4.7.0</MicrosoftCSharpVersion>
|
2021-06-18 08:54:06 +03:00
|
|
|
<MicrosoftWin32RegistryVersion>5.0.0</MicrosoftWin32RegistryVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<NETStandardLibraryVersion>2.0.3</NETStandardLibraryVersion>
|
|
|
|
<SystemBuffersVersion>4.5.0</SystemBuffersVersion>
|
|
|
|
<SystemCodeDomVersion>4.4.0</SystemCodeDomVersion>
|
|
|
|
<SystemCommandlineExperimentalVersion>0.3.0-alpha.19317.1</SystemCommandlineExperimentalVersion>
|
|
|
|
<SystemComponentModelVersion>4.3.0</SystemComponentModelVersion>
|
|
|
|
<SystemNetHttpVersion>4.3.4</SystemNetHttpVersion>
|
|
|
|
<SystemNetSocketsVersion>4.3.0</SystemNetSocketsVersion>
|
2022-05-04 00:16:39 +03:00
|
|
|
<SystemPrivateUriVersion>4.3.2</SystemPrivateUriVersion>
|
|
|
|
<SystemSecurityCryptographyX509CertificatesVersion>4.3.2</SystemSecurityCryptographyX509CertificatesVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<SystemRuntimeInteropServicesRuntimeInformationVersion>4.3.0</SystemRuntimeInteropServicesRuntimeInformationVersion>
|
2021-11-13 03:06:34 +03:00
|
|
|
<SystemThreadingTasksExtensionsVersion>4.5.4</SystemThreadingTasksExtensionsVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<SystemValueTupleVersion>4.5.0</SystemValueTupleVersion>
|
2019-01-14 23:01:31 +03:00
|
|
|
<!-- Packages developed by @aspnet, but manually updated as necessary. -->
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftAspNetWebApiClientVersion>5.2.6</MicrosoftAspNetWebApiClientVersion>
|
2021-12-01 22:10:51 +03:00
|
|
|
<MicrosoftAspNetCoreRazorLanguageVersion>6.0.0</MicrosoftAspNetCoreRazorLanguageVersion>
|
|
|
|
<MicrosoftAspNetCoreMvcRazorExtensionsVersion>6.0.0</MicrosoftAspNetCoreMvcRazorExtensionsVersion>
|
|
|
|
<MicrosoftCodeAnalysisRazorVersion>6.0.0</MicrosoftCodeAnalysisRazorVersion>
|
2019-01-14 23:01:31 +03:00
|
|
|
<!-- Partner teams -->
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftBclAsyncInterfacesVersion>1.0.0</MicrosoftBclAsyncInterfacesVersion>
|
2021-10-15 01:02:42 +03:00
|
|
|
<MicrosoftBCLHashCodeVersion>1.1.1</MicrosoftBCLHashCodeVersion>
|
2022-11-16 01:34:42 +03:00
|
|
|
<MicrosoftBuildVersion>17.4.0</MicrosoftBuildVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftAzureSignalRVersion>1.2.0</MicrosoftAzureSignalRVersion>
|
2022-11-16 01:34:42 +03:00
|
|
|
<MicrosoftBuildFrameworkVersion>17.4.0</MicrosoftBuildFrameworkVersion>
|
|
|
|
<MicrosoftBuildTasksCoreVersion>17.4.0</MicrosoftBuildTasksCoreVersion>
|
|
|
|
<MicrosoftBuildUtilitiesCoreVersion>17.4.0</MicrosoftBuildUtilitiesCoreVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftBuildLocatorVersion>1.2.6</MicrosoftBuildLocatorVersion>
|
2022-11-16 01:34:42 +03:00
|
|
|
<MicrosoftBuildUtilitiesCoreVersion>17.4.0</MicrosoftBuildUtilitiesCoreVersion>
|
2021-12-10 02:59:09 +03:00
|
|
|
<!--
|
|
|
|
Temporarily override the Microsoft.NET.Test.Sdk version Arcade defaults to. That's incompatible w/ test
|
|
|
|
framework in current .NET SDKs.
|
|
|
|
-->
|
|
|
|
<MicrosoftNETTestSdkVersion>17.1.0-preview-20211109-03</MicrosoftNETTestSdkVersion>
|
2022-11-09 02:10:29 +03:00
|
|
|
<!--
|
|
|
|
Also use a newer, publicly-released version of the templating engine than the Arcade default.
|
|
|
|
https://github.com/dotnet/templating/blob/main/docs/Localization.md recommends updating the version when
|
|
|
|
preview or stable versions are released to NuGet.org.
|
|
|
|
-->
|
2022-12-13 03:39:22 +03:00
|
|
|
<MicrosoftTemplateEngineAuthoringTasksVersion>8.0.100-alpha.1.22607.1</MicrosoftTemplateEngineAuthoringTasksVersion>
|
2021-09-18 06:49:03 +03:00
|
|
|
<!--
|
|
|
|
Versions of Microsoft.CodeAnalysis packages referenced by analyzers shipped in the SDK.
|
|
|
|
This need to be pinned since they're used in 3.1 apps and need to be loadable in VS 2019.
|
|
|
|
-->
|
|
|
|
<Analyzer_MicrosoftCodeAnalysisCSharpVersion>3.3.1</Analyzer_MicrosoftCodeAnalysisCSharpVersion>
|
|
|
|
<Analyzer_MicrosoftCodeAnalysisCSharpWorkspacesVersion>3.3.1</Analyzer_MicrosoftCodeAnalysisCSharpWorkspacesVersion>
|
2022-09-29 11:34:58 +03:00
|
|
|
<MicrosoftCodeAnalysisExternalAccessAspNetCoreVersion>4.4.0-3.22472.13</MicrosoftCodeAnalysisExternalAccessAspNetCoreVersion>
|
2022-09-29 22:01:56 +03:00
|
|
|
<MicrosoftCodeAnalysisCommonVersion>4.4.0-3.22472.13</MicrosoftCodeAnalysisCommonVersion>
|
|
|
|
<MicrosoftCodeAnalysisCSharpVersion>4.4.0-3.22472.13</MicrosoftCodeAnalysisCSharpVersion>
|
|
|
|
<MicrosoftCodeAnalysisCSharpWorkspacesVersion>4.4.0-3.22472.13</MicrosoftCodeAnalysisCSharpWorkspacesVersion>
|
2022-06-09 03:41:28 +03:00
|
|
|
<MicrosoftCodeAnalysisPublicApiAnalyzersVersion>3.3.3</MicrosoftCodeAnalysisPublicApiAnalyzersVersion>
|
2022-11-25 11:44:39 +03:00
|
|
|
<MicrosoftCodeAnalysisCSharpAnalyzerTestingXUnitVersion>1.1.2-beta1.22531.1</MicrosoftCodeAnalysisCSharpAnalyzerTestingXUnitVersion>
|
|
|
|
<MicrosoftCodeAnalysisCSharpCodeFixTestingXUnitVersion>1.1.2-beta1.22531.1</MicrosoftCodeAnalysisCSharpCodeFixTestingXUnitVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftCssParserVersion>1.0.0-20200708.1</MicrosoftCssParserVersion>
|
2022-03-01 03:33:03 +03:00
|
|
|
<MicrosoftIdentityModelLoggingVersion>6.15.1</MicrosoftIdentityModelLoggingVersion>
|
|
|
|
<MicrosoftIdentityModelProtocolsOpenIdConnectVersion>6.15.1</MicrosoftIdentityModelProtocolsOpenIdConnectVersion>
|
|
|
|
<MicrosoftIdentityModelProtocolsWsFederationVersion>6.15.1</MicrosoftIdentityModelProtocolsWsFederationVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftInternalAspNetCoreH2SpecAllVersion>2.2.1</MicrosoftInternalAspNetCoreH2SpecAllVersion>
|
|
|
|
<MicrosoftNETCoreWindowsApiSetsVersion>1.0.1</MicrosoftNETCoreWindowsApiSetsVersion>
|
|
|
|
<MicrosoftOwinSecurityCookiesVersion>3.0.1</MicrosoftOwinSecurityCookiesVersion>
|
|
|
|
<MicrosoftOwinTestingVersion>3.0.1</MicrosoftOwinTestingVersion>
|
|
|
|
<MicrosoftWebAdministrationVersion>11.1.0</MicrosoftWebAdministrationVersion>
|
2022-07-21 01:55:35 +03:00
|
|
|
<SystemIdentityModelTokensJwtVersion>6.21.0</SystemIdentityModelTokensJwtVersion>
|
2022-06-24 23:07:19 +03:00
|
|
|
<NuGetPackagingVersion>6.2.0</NuGetPackagingVersion>
|
|
|
|
<NuGetVersioningVersion>6.2.0</NuGetVersioningVersion>
|
|
|
|
<NuGetFrameworksVersion>6.2.0</NuGetFrameworksVersion>
|
2021-05-07 03:36:22 +03:00
|
|
|
<SystemComponentModelAnnotationsVersion>5.0.0</SystemComponentModelAnnotationsVersion>
|
2020-12-05 07:27:48 +03:00
|
|
|
<SystemNetExperimentalMsQuicVersion>5.0.0-alpha.20560.6</SystemNetExperimentalMsQuicVersion>
|
2021-06-18 08:54:06 +03:00
|
|
|
<SystemSecurityPrincipalWindowsVersion>5.0.0</SystemSecurityPrincipalWindowsVersion>
|
2022-11-09 02:10:29 +03:00
|
|
|
<!-- Packages from downlevel branches used for site extension build. -->
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension21Version>2.1.1</MicrosoftAspNetCoreAzureAppServicesSiteExtension21Version>
|
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension22Version>2.2.0</MicrosoftAspNetCoreAzureAppServicesSiteExtension22Version>
|
2023-01-12 02:31:39 +03:00
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension31Version>3.1.32-servicing-22566-10</MicrosoftAspNetCoreAzureAppServicesSiteExtension31Version>
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension31x64Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension31Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension31x64Version>
|
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension31x86Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension31Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension31x86Version>
|
2022-05-11 01:15:04 +03:00
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension50Version>5.0.17-servicing-22215-7</MicrosoftAspNetCoreAzureAppServicesSiteExtension50Version>
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension50x64Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension50Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension50x64Version>
|
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension50x86Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension50Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension50x86Version>
|
2023-01-12 02:31:39 +03:00
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension60Version>6.0.13-servicing-22580-13</MicrosoftAspNetCoreAzureAppServicesSiteExtension60Version>
|
2021-09-21 05:28:35 +03:00
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension60x64Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension60Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension60x64Version>
|
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension60x86Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension60Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension60x86Version>
|
2023-01-12 02:31:39 +03:00
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension70Version>7.0.2-servicing-22606-6</MicrosoftAspNetCoreAzureAppServicesSiteExtension70Version>
|
2022-11-15 23:52:11 +03:00
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension70x64Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension70Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension70x64Version>
|
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension70x86Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension70Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension70x86Version>
|
2019-01-14 23:01:31 +03:00
|
|
|
<!-- 3rd party dependencies -->
|
2020-11-13 21:52:40 +03:00
|
|
|
<AngleSharpVersion>0.9.9</AngleSharpVersion>
|
2021-05-21 21:34:10 +03:00
|
|
|
<BenchmarkDotNetVersion>0.13.0</BenchmarkDotNetVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<CastleCoreVersion>4.2.1</CastleCoreVersion>
|
|
|
|
<CommandLineParserVersion>2.3.0</CommandLineParserVersion>
|
2021-11-13 03:06:34 +03:00
|
|
|
<FSharpCoreVersion>6.0.0</FSharpCoreVersion>
|
2022-03-27 15:29:23 +03:00
|
|
|
<GoogleApiCommonProtosVersion>2.5.0</GoogleApiCommonProtosVersion>
|
2022-10-11 15:31:09 +03:00
|
|
|
<GoogleProtobufVersion>3.21.6</GoogleProtobufVersion>
|
2022-09-27 08:34:47 +03:00
|
|
|
<GrpcAspNetCoreVersion>2.49.0</GrpcAspNetCoreVersion>
|
|
|
|
<GrpcAspNetCoreServerVersion>2.49.0</GrpcAspNetCoreServerVersion>
|
|
|
|
<GrpcAuthVersion>2.49.0</GrpcAuthVersion>
|
|
|
|
<GrpcNetClientVersion>2.49.0</GrpcNetClientVersion>
|
|
|
|
<GrpcToolsVersion>2.49.0</GrpcToolsVersion>
|
2022-05-19 10:21:04 +03:00
|
|
|
<DuendeIdentityServerAspNetIdentityVersion>6.0.4</DuendeIdentityServerAspNetIdentityVersion>
|
|
|
|
<DuendeIdentityServerEntityFrameworkVersion>6.0.4</DuendeIdentityServerEntityFrameworkVersion>
|
|
|
|
<DuendeIdentityServerVersion>6.0.4</DuendeIdentityServerVersion>
|
|
|
|
<DuendeIdentityServerStorageVersion>6.0.4</DuendeIdentityServerStorageVersion>
|
|
|
|
<DuendeIdentityServerEntityFrameworkStorageVersion>6.0.4</DuendeIdentityServerEntityFrameworkStorageVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<MessagePackVersion>2.1.90</MessagePackVersion>
|
2021-09-08 20:03:44 +03:00
|
|
|
<MicrosoftIdentityWebVersion>1.16.0</MicrosoftIdentityWebVersion>
|
|
|
|
<MicrosoftIdentityWebMicrosoftGraphVersion>1.16.0</MicrosoftIdentityWebMicrosoftGraphVersion>
|
|
|
|
<MicrosoftIdentityWebUIVersion>1.16.0</MicrosoftIdentityWebUIVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<MessagePackAnalyzerVersion>$(MessagePackVersion)</MessagePackAnalyzerVersion>
|
|
|
|
<MoqVersion>4.10.0</MoqVersion>
|
|
|
|
<MonoCecilVersion>0.11.2</MonoCecilVersion>
|
2022-04-08 04:10:42 +03:00
|
|
|
<MonoTextTemplatingVersion>2.2.1</MonoTextTemplatingVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<NewtonsoftJsonBsonVersion>1.0.2</NewtonsoftJsonBsonVersion>
|
2021-08-12 00:59:29 +03:00
|
|
|
<NewtonsoftJsonVersion>13.0.1</NewtonsoftJsonVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<NSwagApiDescriptionClientVersion>13.0.4</NSwagApiDescriptionClientVersion>
|
2021-06-11 22:57:15 +03:00
|
|
|
<PhotinoNETVersion>1.1.6</PhotinoNETVersion>
|
Upgrade Playwright (#38414)
* Upgrade `playwright-sharp-tool`
https://www.nuget.org/packages/playwright-sharp-tool
Contributes towards https://github.com/dotnet/aspnetcore/issues/30882.
* Update to latest v1.16.1 from GitHub
https://github.com/microsoft/playwright-dotnet/releases/tag/v1.16.1
* Update to use Microsoft.Playwright
* Update references to reflect `Microsoft.Playwright`
* Update dotnet-tools.json
* Upgrade System.CommandLine
* Adapt to breaking API changes in Playwright
* Upgrade dotnet-serve
* Add Microsoft.Playwright.CLI
* Revert "Upgrade System.CommandLine"
This reverts commit cc46e9cfb7a5bd75cb6454aac07fbeb96e6040f7.
* Fix build
The build failed. Fix the build errors and run again.
C:\h\w\AA180980\w\9ED808A4\e\RunTests\RunTests.csproj : warning NU1604: Project dependency Microsoft.Playwright does not contain an inclusive lower bound. Include a lower bound in the dependency version to ensure consistent restore results.
C:\h\w\AA180980\w\9ED808A4\e\RunTests\TestRunner.cs(124,35): error CS7036: There is no argument given that corresponds to the required formal parameter 'arguments' of 'ProcessUtil.RunAsync(string, string, string?, string?, bool, IDictionary<string, string?>?, Action<string>?, Action<string>?, Action<int>?, CancellationToken)' [C:\h\w\AA180980\w\9ED808A4\e\RunTests\RunTests.csproj]
* Remove semaphore for websocket events
* Update playwrightSettings based on breaking changes
* npx based playwright install
* npm install playwright
* Install node in helix env
* Use DOTNET_ROLL_FORWARD with `dotnet` `playwright` tool
* Cleanup
* Update playwright tool usage
* DOTNET_ROLL_FORWARD in TestRunner
* Specify project dir
* Playwright install without cli
* Update TestRunner.cs
* Update TestRunner.cs
* Re-enable helix playwright tests
* Upgrade Playwright to 1.17.3, CLI to 1.2.2
* Fix spacing
* Remove DOTNET_ROLL_FORWARD
* PR Feedback
* Remove temp project workaround.
* Fix package lowerbound issue
* Update Versions.props
* Update BrowserManager.cs
* Remove `Installing Microsoft.Playwright.CLI`
* Disable playwright tests in helix
2022-01-12 03:21:28 +03:00
|
|
|
<MicrosoftPlaywrightVersion>1.17.3</MicrosoftPlaywrightVersion>
|
2020-11-18 00:12:17 +03:00
|
|
|
<PollyExtensionsHttpVersion>3.0.0</PollyExtensionsHttpVersion>
|
2022-02-19 04:26:05 +03:00
|
|
|
<PollyVersion>7.2.3</PollyVersion>
|
2022-12-16 02:13:59 +03:00
|
|
|
<SeleniumSupportVersion>4.7.0</SeleniumSupportVersion>
|
|
|
|
<SeleniumWebDriverChromeDriverVersion>108.0.5359.7100</SeleniumWebDriverChromeDriverVersion>
|
|
|
|
<SeleniumWebDriverVersion>4.7.0</SeleniumWebDriverVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<SerilogExtensionsLoggingVersion>1.4.0</SerilogExtensionsLoggingVersion>
|
|
|
|
<SerilogSinksFileVersion>4.0.0</SerilogSinksFileVersion>
|
2021-05-01 03:22:26 +03:00
|
|
|
<StackExchangeRedisVersion>2.2.4</StackExchangeRedisVersion>
|
2021-11-13 03:06:34 +03:00
|
|
|
<SystemReactiveLinqVersion>5.0.0</SystemReactiveLinqVersion>
|
2022-07-26 19:30:48 +03:00
|
|
|
<SwashbuckleAspNetCoreVersion>6.4.0</SwashbuckleAspNetCoreVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<XunitAbstractionsVersion>2.0.3</XunitAbstractionsVersion>
|
2022-08-28 06:51:56 +03:00
|
|
|
<XunitAnalyzersVersion>1.0.0</XunitAnalyzersVersion>
|
|
|
|
<XunitVersion>2.4.2</XunitVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<XunitAssertVersion>$(XunitVersion)</XunitAssertVersion>
|
|
|
|
<XunitExtensibilityCoreVersion>$(XunitVersion)</XunitExtensibilityCoreVersion>
|
|
|
|
<XunitExtensibilityExecutionVersion>$(XunitVersion)</XunitExtensibilityExecutionVersion>
|
2020-08-10 22:32:04 +03:00
|
|
|
<XUnitRunnerVisualStudioVersion>2.4.3</XUnitRunnerVisualStudioVersion>
|
2022-02-16 22:11:25 +03:00
|
|
|
<MicrosoftDataSqlClientVersion>4.0.1</MicrosoftDataSqlClientVersion>
|
2021-04-01 19:44:54 +03:00
|
|
|
<MicrosoftAspNetCoreAppVersion>6.0.0-preview.3.21167.1</MicrosoftAspNetCoreAppVersion>
|
2022-09-30 01:08:09 +03:00
|
|
|
<MicrosoftOpenApiVersion>1.4.3</MicrosoftOpenApiVersion>
|
2022-05-05 20:24:14 +03:00
|
|
|
<!-- dotnet tool versions (see also auto-updated DotnetEfVersion property). -->
|
2022-04-30 04:31:05 +03:00
|
|
|
<DotnetDumpVersion>6.0.322601</DotnetDumpVersion>
|
|
|
|
<DotnetServeVersion>1.10.93</DotnetServeVersion>
|
|
|
|
<MicrosoftPlaywrightCLIVersion>1.2.3</MicrosoftPlaywrightCLIVersion>
|
2019-06-08 03:19:41 +03:00
|
|
|
</PropertyGroup>
|
2020-06-27 09:44:36 +03:00
|
|
|
</Project>
|