| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- <!--
- This file defines the versions of external dependencies used by ASP.NET Core.
- This file might be updated by automation.
- -->
- <Project>
- <PropertyGroup Label="Version settings">
- <AspNetCoreMajorVersion>7</AspNetCoreMajorVersion>
- <AspNetCoreMinorVersion>0</AspNetCoreMinorVersion>
- <AspNetCorePatchVersion>0</AspNetCorePatchVersion>
- <PreReleaseVersionIteration>3</PreReleaseVersionIteration>
- <ValidateBaseline>true</ValidateBaseline>
- <!--
- When StabilizePackageVersion is set to 'true', this branch will produce stable outputs for 'Shipping' packages
- -->
- <StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>
- <DotNetFinalVersionKind Condition="'$(StabilizePackageVersion)' == 'true'">release</DotNetFinalVersionKind>
- <PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
- <PreReleaseBrandingLabel>Preview $(PreReleaseVersionIteration)</PreReleaseBrandingLabel>
- <IncludePreReleaseLabelInPackageVersion>true</IncludePreReleaseLabelInPackageVersion>
- <IncludePreReleaseLabelInPackageVersion Condition=" '$(DotNetFinalVersionKind)' == 'release' ">false</IncludePreReleaseLabelInPackageVersion>
- <AspNetCoreMajorMinorVersion>$(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion)</AspNetCoreMajorMinorVersion>
- <!-- Servicing builds have different characteristics for the way dependencies, baselines, and versions are handled. -->
- <IsServicingBuild Condition=" '$(PreReleaseVersionLabel)' == 'servicing' ">true</IsServicingBuild>
- <VersionPrefix>$(AspNetCoreMajorMinorVersion).$(AspNetCorePatchVersion)</VersionPrefix>
- <!--
- 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.
- -->
- <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. -->
- <PreviousAspNetCoreReleaseVersion Condition=" '$(AspNetCorePatchVersion)' != '0' ">$(AspNetCoreMajorMinorVersion).$([MSBuild]::Subtract($(AspNetCorePatchVersion), 1))</PreviousAspNetCoreReleaseVersion>
- <!--
- 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.
- -->
- <DefaultNetCoreTargetFramework>net7.0</DefaultNetCoreTargetFramework>
- </PropertyGroup>
- <PropertyGroup Label="Arcade settings">
- <!-- 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>
- </PropertyGroup>
- <!--
- 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.
- -->
- <PropertyGroup Label="Automated">
- <!-- Packages from dotnet/runtime -->
- <MicrosoftExtensionsDependencyModelVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsDependencyModelVersion>
- <MicrosoftNETCoreAppRefVersion>7.0.0-preview.3.22161.10</MicrosoftNETCoreAppRefVersion>
- <MicrosoftNETCoreAppRuntimewinx64Version>7.0.0-preview.3.22161.10</MicrosoftNETCoreAppRuntimewinx64Version>
- <MicrosoftNETRuntimeMonoAOTCompilerTaskVersion>7.0.0-preview.3.22161.10</MicrosoftNETRuntimeMonoAOTCompilerTaskVersion>
- <MicrosoftNETRuntimeWebAssemblySdkVersion>7.0.0-preview.3.22161.10</MicrosoftNETRuntimeWebAssemblySdkVersion>
- <MicrosoftNETCoreAppRuntimeAOTwinx64CrossbrowserwasmVersion>7.0.0-preview.3.22161.10</MicrosoftNETCoreAppRuntimeAOTwinx64CrossbrowserwasmVersion>
- <MicrosoftNETCoreBrowserDebugHostTransportVersion>7.0.0-preview.3.22161.10</MicrosoftNETCoreBrowserDebugHostTransportVersion>
- <MicrosoftExtensionsCachingAbstractionsVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsCachingAbstractionsVersion>
- <MicrosoftExtensionsCachingMemoryVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsCachingMemoryVersion>
- <MicrosoftExtensionsConfigurationAbstractionsVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsConfigurationAbstractionsVersion>
- <MicrosoftExtensionsConfigurationBinderVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsConfigurationBinderVersion>
- <MicrosoftExtensionsConfigurationCommandLineVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsConfigurationCommandLineVersion>
- <MicrosoftExtensionsConfigurationEnvironmentVariablesVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsConfigurationEnvironmentVariablesVersion>
- <MicrosoftExtensionsConfigurationFileExtensionsVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsConfigurationFileExtensionsVersion>
- <MicrosoftExtensionsConfigurationIniVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsConfigurationIniVersion>
- <MicrosoftExtensionsConfigurationJsonVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsConfigurationJsonVersion>
- <MicrosoftExtensionsConfigurationVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsConfigurationVersion>
- <MicrosoftExtensionsConfigurationUserSecretsVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsConfigurationUserSecretsVersion>
- <MicrosoftExtensionsConfigurationXmlVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsConfigurationXmlVersion>
- <MicrosoftExtensionsDependencyInjectionAbstractionsVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsDependencyInjectionAbstractionsVersion>
- <MicrosoftExtensionsDependencyInjectionVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsDependencyInjectionVersion>
- <MicrosoftExtensionsFileProvidersAbstractionsVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsFileProvidersAbstractionsVersion>
- <MicrosoftExtensionsFileProvidersCompositeVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsFileProvidersCompositeVersion>
- <MicrosoftExtensionsFileProvidersPhysicalVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsFileProvidersPhysicalVersion>
- <MicrosoftExtensionsFileSystemGlobbingVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsFileSystemGlobbingVersion>
- <MicrosoftExtensionsHostFactoryResolverSourcesVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsHostFactoryResolverSourcesVersion>
- <MicrosoftExtensionsHostingAbstractionsVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsHostingAbstractionsVersion>
- <MicrosoftExtensionsHostingVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsHostingVersion>
- <MicrosoftExtensionsHttpVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsHttpVersion>
- <MicrosoftExtensionsLoggingAbstractionsVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsLoggingAbstractionsVersion>
- <MicrosoftExtensionsLoggingConfigurationVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsLoggingConfigurationVersion>
- <MicrosoftExtensionsLoggingConsoleVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsLoggingConsoleVersion>
- <MicrosoftExtensionsLoggingDebugVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsLoggingDebugVersion>
- <MicrosoftExtensionsLoggingEventSourceVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsLoggingEventSourceVersion>
- <MicrosoftExtensionsLoggingEventLogVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsLoggingEventLogVersion>
- <MicrosoftExtensionsLoggingVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsLoggingVersion>
- <MicrosoftExtensionsLoggingTraceSourceVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsLoggingTraceSourceVersion>
- <MicrosoftExtensionsOptionsConfigurationExtensionsVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsOptionsConfigurationExtensionsVersion>
- <MicrosoftExtensionsOptionsDataAnnotationsVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsOptionsDataAnnotationsVersion>
- <MicrosoftExtensionsOptionsVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsOptionsVersion>
- <MicrosoftExtensionsPrimitivesVersion>7.0.0-preview.3.22161.10</MicrosoftExtensionsPrimitivesVersion>
- <MicrosoftInternalRuntimeAspNetCoreTransportVersion>7.0.0-preview.3.22161.10</MicrosoftInternalRuntimeAspNetCoreTransportVersion>
- <SystemDiagnosticsDiagnosticSourceVersion>7.0.0-preview.3.22161.10</SystemDiagnosticsDiagnosticSourceVersion>
- <SystemDiagnosticsEventLogVersion>7.0.0-preview.3.22161.10</SystemDiagnosticsEventLogVersion>
- <SystemDirectoryServicesProtocolsVersion>7.0.0-preview.3.22161.10</SystemDirectoryServicesProtocolsVersion>
- <SystemIOPipelinesVersion>7.0.0-preview.3.22161.10</SystemIOPipelinesVersion>
- <SystemNetHttpJsonVersion>7.0.0-preview.3.22161.10</SystemNetHttpJsonVersion>
- <SystemNetHttpWinHttpHandlerVersion>7.0.0-preview.3.22161.10</SystemNetHttpWinHttpHandlerVersion>
- <SystemReflectionMetadataVersion>7.0.0-preview.3.22161.10</SystemReflectionMetadataVersion>
- <SystemResourcesExtensionsVersion>7.0.0-preview.3.22161.10</SystemResourcesExtensionsVersion>
- <SystemSecurityCryptographyPkcsVersion>7.0.0-preview.3.22161.10</SystemSecurityCryptographyPkcsVersion>
- <SystemSecurityCryptographyXmlVersion>7.0.0-preview.3.22161.10</SystemSecurityCryptographyXmlVersion>
- <SystemSecurityPermissionsVersion>7.0.0-preview.3.22161.10</SystemSecurityPermissionsVersion>
- <SystemServiceProcessServiceControllerVersion>7.0.0-preview.3.22161.10</SystemServiceProcessServiceControllerVersion>
- <SystemTextEncodingsWebVersion>7.0.0-preview.3.22161.10</SystemTextEncodingsWebVersion>
- <SystemTextJsonVersion>7.0.0-preview.3.22161.10</SystemTextJsonVersion>
- <SystemThreadingAccessControlVersion>7.0.0-preview.3.22161.10</SystemThreadingAccessControlVersion>
- <SystemThreadingChannelsVersion>7.0.0-preview.3.22161.10</SystemThreadingChannelsVersion>
- <SystemThreadingRateLimitingVersion>7.0.0-preview.3.22161.10</SystemThreadingRateLimitingVersion>
- <!-- Only listed explicitly to workaround https://github.com/dotnet/cli/issues/10528 -->
- <MicrosoftNETCorePlatformsVersion>7.0.0-preview.3.22161.10</MicrosoftNETCorePlatformsVersion>
- <!-- Packages from dotnet/efcore -->
- <dotnetefVersion>7.0.0-preview.3.22159.9</dotnetefVersion>
- <MicrosoftEntityFrameworkCoreInMemoryVersion>7.0.0-preview.3.22159.9</MicrosoftEntityFrameworkCoreInMemoryVersion>
- <MicrosoftEntityFrameworkCoreRelationalVersion>7.0.0-preview.3.22159.9</MicrosoftEntityFrameworkCoreRelationalVersion>
- <MicrosoftEntityFrameworkCoreSqliteVersion>7.0.0-preview.3.22159.9</MicrosoftEntityFrameworkCoreSqliteVersion>
- <MicrosoftEntityFrameworkCoreSqlServerVersion>7.0.0-preview.3.22159.9</MicrosoftEntityFrameworkCoreSqlServerVersion>
- <MicrosoftEntityFrameworkCoreToolsVersion>7.0.0-preview.3.22159.9</MicrosoftEntityFrameworkCoreToolsVersion>
- <MicrosoftEntityFrameworkCoreVersion>7.0.0-preview.3.22159.9</MicrosoftEntityFrameworkCoreVersion>
- <MicrosoftEntityFrameworkCoreDesignVersion>7.0.0-preview.3.22159.9</MicrosoftEntityFrameworkCoreDesignVersion>
- <!-- Packages from dotnet/arcade -->
- <MicrosoftDotNetBuildTasksInstallersVersion>7.0.0-beta.22154.3</MicrosoftDotNetBuildTasksInstallersVersion>
- <MicrosoftDotNetBuildTasksTemplatingVersion>7.0.0-beta.22154.3</MicrosoftDotNetBuildTasksTemplatingVersion>
- </PropertyGroup>
- <!--
- ^^^^^^^^^^
- 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.
- -->
- <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.
- -->
- <MicrosoftNETCoreAppRuntimeVersion>$(MicrosoftNETCoreAppRuntimewinx64Version)</MicrosoftNETCoreAppRuntimeVersion>
- </PropertyGroup>
- <PropertyGroup Label="Manual">
- <!-- DiagnosticAdapter package pinned temporarily until migrated/deprecated -->
- <MicrosoftExtensionsDiagnosticAdapterVersion>5.0.0-preview.4.20180.4</MicrosoftExtensionsDiagnosticAdapterVersion>
- <!-- Build tool dependencies -->
- <MicrosoftVSSDKBuildToolsVersion>15.9.3032</MicrosoftVSSDKBuildToolsVersion>
- <!-- Stable dotnet/corefx packages no longer updated for .NET Core 3 -->
- <MicrosoftCSharpVersion>4.7.0</MicrosoftCSharpVersion>
- <MicrosoftWin32RegistryVersion>5.0.0</MicrosoftWin32RegistryVersion>
- <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>
- <SystemRuntimeInteropServicesRuntimeInformationVersion>4.3.0</SystemRuntimeInteropServicesRuntimeInformationVersion>
- <SystemThreadingTasksExtensionsVersion>4.5.4</SystemThreadingTasksExtensionsVersion>
- <SystemValueTupleVersion>4.5.0</SystemValueTupleVersion>
- <!-- Packages developed by @aspnet, but manually updated as necessary. -->
- <MicrosoftAspNetWebApiClientVersion>5.2.6</MicrosoftAspNetWebApiClientVersion>
- <MicrosoftAspNetCoreRazorLanguageVersion>6.0.0</MicrosoftAspNetCoreRazorLanguageVersion>
- <MicrosoftAspNetCoreMvcRazorExtensionsVersion>6.0.0</MicrosoftAspNetCoreMvcRazorExtensionsVersion>
- <MicrosoftCodeAnalysisRazorVersion>6.0.0</MicrosoftCodeAnalysisRazorVersion>
- <!-- Partner teams -->
- <MicrosoftBclAsyncInterfacesVersion>1.0.0</MicrosoftBclAsyncInterfacesVersion>
- <MicrosoftBCLHashCodeVersion>1.1.1</MicrosoftBCLHashCodeVersion>
- <MicrosoftBuildVersion>16.9.0</MicrosoftBuildVersion>
- <MicrosoftAzureSignalRVersion>1.2.0</MicrosoftAzureSignalRVersion>
- <MicrosoftBuildFrameworkVersion>16.9.0</MicrosoftBuildFrameworkVersion>
- <MicrosoftBuildTasksCoreVersion>16.9.0</MicrosoftBuildTasksCoreVersion>
- <MicrosoftBuildUtilitiesCoreVersion>16.9.0</MicrosoftBuildUtilitiesCoreVersion>
- <MicrosoftBuildLocatorVersion>1.2.6</MicrosoftBuildLocatorVersion>
- <MicrosoftBuildUtilitiesCoreVersion>16.9.0</MicrosoftBuildUtilitiesCoreVersion>
- <!--
- 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>
- <!--
- 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>
- <MicrosoftCodeAnalysisCommonVersion>4.2.0-2.22128.1</MicrosoftCodeAnalysisCommonVersion>
- <MicrosoftCodeAnalysisCSharpVersion>4.2.0-2.22128.1</MicrosoftCodeAnalysisCSharpVersion>
- <MicrosoftCodeAnalysisCSharpWorkspacesVersion>4.2.0-2.22128.1</MicrosoftCodeAnalysisCSharpWorkspacesVersion>
- <MicrosoftCodeAnalysisPublicApiAnalyzersVersion>3.3.0</MicrosoftCodeAnalysisPublicApiAnalyzersVersion>
- <MicrosoftCodeAnalysisCSharpAnalyzerTestingXUnitVersion>1.1.1-beta1.21413.1</MicrosoftCodeAnalysisCSharpAnalyzerTestingXUnitVersion>
- <MicrosoftCodeAnalysisCSharpCodeFixTestingXUnitVersion>1.1.1-beta1.21413.1</MicrosoftCodeAnalysisCSharpCodeFixTestingXUnitVersion>
- <MicrosoftCssParserVersion>1.0.0-20200708.1</MicrosoftCssParserVersion>
- <MicrosoftIdentityModelLoggingVersion>6.15.1</MicrosoftIdentityModelLoggingVersion>
- <MicrosoftIdentityModelProtocolsOpenIdConnectVersion>6.15.1</MicrosoftIdentityModelProtocolsOpenIdConnectVersion>
- <MicrosoftIdentityModelProtocolsWsFederationVersion>6.15.1</MicrosoftIdentityModelProtocolsWsFederationVersion>
- <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>
- <MicrosoftWebXdtVersion>1.4.0</MicrosoftWebXdtVersion>
- <SystemIdentityModelTokensJwtVersion>6.15.1</SystemIdentityModelTokensJwtVersion>
- <NuGetPackagingVersion>5.11.0</NuGetPackagingVersion>
- <NuGetVersioningVersion>5.11.0</NuGetVersioningVersion>
- <NuGetFrameworksVersion>5.11.0</NuGetFrameworksVersion>
- <SystemComponentModelAnnotationsVersion>5.0.0</SystemComponentModelAnnotationsVersion>
- <SystemNetExperimentalMsQuicVersion>5.0.0-alpha.20560.6</SystemNetExperimentalMsQuicVersion>
- <SystemSecurityPrincipalWindowsVersion>5.0.0</SystemSecurityPrincipalWindowsVersion>
- <!-- Packages from 2.1, 3.1, and 5.0 branches used for site extension build. -->
- <MicrosoftAspNetCoreAzureAppServicesSiteExtension21Version>2.1.1</MicrosoftAspNetCoreAzureAppServicesSiteExtension21Version>
- <MicrosoftAspNetCoreAzureAppServicesSiteExtension22Version>2.2.0</MicrosoftAspNetCoreAzureAppServicesSiteExtension22Version>
- <MicrosoftAspNetCoreAzureAppServicesSiteExtension31Version>3.1.23-servicing-22123-12</MicrosoftAspNetCoreAzureAppServicesSiteExtension31Version>
- <MicrosoftAspNetCoreAzureAppServicesSiteExtension31x64Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension31Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension31x64Version>
- <MicrosoftAspNetCoreAzureAppServicesSiteExtension31x86Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension31Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension31x86Version>
- <MicrosoftAspNetCoreAzureAppServicesSiteExtension50Version>5.0.15-servicing-22116-16</MicrosoftAspNetCoreAzureAppServicesSiteExtension50Version>
- <MicrosoftAspNetCoreAzureAppServicesSiteExtension50x64Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension50Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension50x64Version>
- <MicrosoftAspNetCoreAzureAppServicesSiteExtension50x86Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension50Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension50x86Version>
- <MicrosoftAspNetCoreAzureAppServicesSiteExtension60Version>6.0.3-servicing-22124-1</MicrosoftAspNetCoreAzureAppServicesSiteExtension60Version>
- <MicrosoftAspNetCoreAzureAppServicesSiteExtension60x64Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension60Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension60x64Version>
- <MicrosoftAspNetCoreAzureAppServicesSiteExtension60x86Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension60Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension60x86Version>
- <!-- 3rd party dependencies -->
- <AngleSharpVersion>0.9.9</AngleSharpVersion>
- <BenchmarkDotNetVersion>0.13.0</BenchmarkDotNetVersion>
- <CastleCoreVersion>4.2.1</CastleCoreVersion>
- <CommandLineParserVersion>2.3.0</CommandLineParserVersion>
- <FSharpCoreVersion>6.0.0</FSharpCoreVersion>
- <GoogleProtobufVersion>3.18.0</GoogleProtobufVersion>
- <GrpcAspNetCoreVersion>2.40.0</GrpcAspNetCoreVersion>
- <GrpcAuthVersion>2.40.0</GrpcAuthVersion>
- <GrpcNetClientVersion>2.40.0</GrpcNetClientVersion>
- <GrpcToolsVersion>2.40.0</GrpcToolsVersion>
- <DuendeIdentityServerAspNetIdentityVersion>5.2.0</DuendeIdentityServerAspNetIdentityVersion>
- <DuendeIdentityServerEntityFrameworkVersion>5.2.0</DuendeIdentityServerEntityFrameworkVersion>
- <DuendeIdentityServerVersion>5.2.0</DuendeIdentityServerVersion>
- <DuendeIdentityServerStorageVersion>5.2.0</DuendeIdentityServerStorageVersion>
- <DuendeIdentityServerEntityFrameworkStorageVersion>5.2.0</DuendeIdentityServerEntityFrameworkStorageVersion>
- <MessagePackVersion>2.1.90</MessagePackVersion>
- <MicrosoftIdentityWebVersion>1.16.0</MicrosoftIdentityWebVersion>
- <MicrosoftIdentityWebMicrosoftGraphVersion>1.16.0</MicrosoftIdentityWebMicrosoftGraphVersion>
- <MicrosoftIdentityWebUIVersion>1.16.0</MicrosoftIdentityWebUIVersion>
- <MessagePackAnalyzerVersion>$(MessagePackVersion)</MessagePackAnalyzerVersion>
- <MoqVersion>4.10.0</MoqVersion>
- <MonoCecilVersion>0.11.2</MonoCecilVersion>
- <NewtonsoftJsonBsonVersion>1.0.2</NewtonsoftJsonBsonVersion>
- <NewtonsoftJsonVersion>13.0.1</NewtonsoftJsonVersion>
- <NSwagApiDescriptionClientVersion>13.0.4</NSwagApiDescriptionClientVersion>
- <PhotinoNETVersion>1.1.6</PhotinoNETVersion>
- <MicrosoftPlaywrightVersion>1.17.3</MicrosoftPlaywrightVersion>
- <PollyExtensionsHttpVersion>3.0.0</PollyExtensionsHttpVersion>
- <PollyVersion>7.2.3</PollyVersion>
- <SeleniumSupportVersion>4.1.0</SeleniumSupportVersion>
- <SeleniumWebDriverChromeDriverVersion>98.0.4758.10200</SeleniumWebDriverChromeDriverVersion>
- <SeleniumWebDriverVersion>4.1.0</SeleniumWebDriverVersion>
- <SerilogExtensionsLoggingVersion>1.4.0</SerilogExtensionsLoggingVersion>
- <SerilogSinksFileVersion>4.0.0</SerilogSinksFileVersion>
- <StackExchangeRedisVersion>2.2.4</StackExchangeRedisVersion>
- <SystemReactiveLinqVersion>5.0.0</SystemReactiveLinqVersion>
- <SwashbuckleAspNetCoreVersion>6.2.3</SwashbuckleAspNetCoreVersion>
- <XunitAbstractionsVersion>2.0.3</XunitAbstractionsVersion>
- <XunitAnalyzersVersion>0.10.0</XunitAnalyzersVersion>
- <XunitVersion>2.4.1</XunitVersion>
- <XunitAssertVersion>$(XunitVersion)</XunitAssertVersion>
- <XunitExtensibilityCoreVersion>$(XunitVersion)</XunitExtensibilityCoreVersion>
- <XunitExtensibilityExecutionVersion>$(XunitVersion)</XunitExtensibilityExecutionVersion>
- <XUnitRunnerVisualStudioVersion>2.4.3</XUnitRunnerVisualStudioVersion>
- <MicrosoftDataSqlClientVersion>4.0.1</MicrosoftDataSqlClientVersion>
- <MicrosoftAspNetCoreAppVersion>6.0.0-preview.3.21167.1</MicrosoftAspNetCoreAppVersion>
- </PropertyGroup>
- <!-- Restore feeds -->
- <PropertyGroup Label="Restore feeds">
- <!-- In an orchestrated build, this may be overridden to other Azure feeds. -->
- <DotNetAssetRootUrl Condition="'$(DotNetAssetRootUrl)'==''">https://dotnetbuilds.azureedge.net/public/</DotNetAssetRootUrl>
- <DotNetPrivateAssetRootUrl Condition="'$(DotNetPrivateAssetRootUrl)'==''">https://dotnetclimsrc.blob.core.windows.net/dotnet/</DotNetPrivateAssetRootUrl>
- </PropertyGroup>
- </Project>
|