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">
|
2020-10-12 22:07:13 +03:00
|
|
|
<AspNetCoreMajorVersion>6</AspNetCoreMajorVersion>
|
2019-06-08 03:19:41 +03:00
|
|
|
<AspNetCoreMinorVersion>0</AspNetCoreMinorVersion>
|
|
|
|
<AspNetCorePatchVersion>0</AspNetCorePatchVersion>
|
2021-01-27 08:58:01 +03:00
|
|
|
<PreReleaseVersionIteration>2</PreReleaseVersionIteration>
|
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>
|
2021-01-23 00:08:10 +03:00
|
|
|
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
|
|
|
|
<PreReleaseBrandingLabel>Preview $(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>
|
|
|
|
<!-- Targeting packs do not produce patch versions in servicing builds. No API changes are allowed in patches. -->
|
2020-08-25 22:34:31 +03:00
|
|
|
<TargetingPackVersionPrefix Condition="'$(IsTargetingPackBuilding)' != 'true'">$(AspNetCoreMajorMinorVersion).0</TargetingPackVersionPrefix>
|
2019-06-08 03:19:41 +03:00
|
|
|
<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
|
|
|
-->
|
2020-10-27 10:04:33 +03:00
|
|
|
<DefaultNetCoreTargetFramework>net6.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 -->
|
2021-02-06 17:41:11 +03:00
|
|
|
<MicrosoftExtensionsDependencyModelVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsDependencyModelVersion>
|
|
|
|
<MicrosoftNETCoreAppRefVersion>6.0.0-preview.2.21105.12</MicrosoftNETCoreAppRefVersion>
|
|
|
|
<MicrosoftNETCoreAppRuntimewinx64Version>6.0.0-preview.2.21105.12</MicrosoftNETCoreAppRuntimewinx64Version>
|
|
|
|
<MicrosoftNETCoreBrowserDebugHostTransportVersion>6.0.0-preview.2.21105.12</MicrosoftNETCoreBrowserDebugHostTransportVersion>
|
|
|
|
<MicrosoftWin32RegistryVersion>6.0.0-preview.2.21105.12</MicrosoftWin32RegistryVersion>
|
|
|
|
<MicrosoftWin32SystemEventsVersion>6.0.0-preview.2.21105.12</MicrosoftWin32SystemEventsVersion>
|
|
|
|
<MicrosoftExtensionsCachingAbstractionsVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsCachingAbstractionsVersion>
|
|
|
|
<MicrosoftExtensionsCachingMemoryVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsCachingMemoryVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationAbstractionsVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsConfigurationAbstractionsVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationBinderVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsConfigurationBinderVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationCommandLineVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsConfigurationCommandLineVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationEnvironmentVariablesVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsConfigurationEnvironmentVariablesVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationFileExtensionsVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsConfigurationFileExtensionsVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationIniVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsConfigurationIniVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationJsonVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsConfigurationJsonVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsConfigurationVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationUserSecretsVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsConfigurationUserSecretsVersion>
|
|
|
|
<MicrosoftExtensionsConfigurationXmlVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsConfigurationXmlVersion>
|
|
|
|
<MicrosoftExtensionsDependencyInjectionAbstractionsVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsDependencyInjectionAbstractionsVersion>
|
|
|
|
<MicrosoftExtensionsDependencyInjectionVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsDependencyInjectionVersion>
|
|
|
|
<MicrosoftExtensionsFileProvidersAbstractionsVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsFileProvidersAbstractionsVersion>
|
|
|
|
<MicrosoftExtensionsFileProvidersCompositeVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsFileProvidersCompositeVersion>
|
|
|
|
<MicrosoftExtensionsFileProvidersPhysicalVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsFileProvidersPhysicalVersion>
|
|
|
|
<MicrosoftExtensionsFileSystemGlobbingVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsFileSystemGlobbingVersion>
|
|
|
|
<MicrosoftExtensionsHostFactoryResolverSourcesVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsHostFactoryResolverSourcesVersion>
|
|
|
|
<MicrosoftExtensionsHostingAbstractionsVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsHostingAbstractionsVersion>
|
|
|
|
<MicrosoftExtensionsHostingVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsHostingVersion>
|
|
|
|
<MicrosoftExtensionsHttpVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsHttpVersion>
|
|
|
|
<MicrosoftExtensionsLoggingAbstractionsVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsLoggingAbstractionsVersion>
|
|
|
|
<MicrosoftExtensionsLoggingConfigurationVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsLoggingConfigurationVersion>
|
|
|
|
<MicrosoftExtensionsLoggingConsoleVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsLoggingConsoleVersion>
|
|
|
|
<MicrosoftExtensionsLoggingDebugVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsLoggingDebugVersion>
|
|
|
|
<MicrosoftExtensionsLoggingEventSourceVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsLoggingEventSourceVersion>
|
|
|
|
<MicrosoftExtensionsLoggingEventLogVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsLoggingEventLogVersion>
|
|
|
|
<MicrosoftExtensionsLoggingVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsLoggingVersion>
|
|
|
|
<MicrosoftExtensionsLoggingTraceSourceVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsLoggingTraceSourceVersion>
|
|
|
|
<MicrosoftExtensionsOptionsConfigurationExtensionsVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsOptionsConfigurationExtensionsVersion>
|
|
|
|
<MicrosoftExtensionsOptionsDataAnnotationsVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsOptionsDataAnnotationsVersion>
|
|
|
|
<MicrosoftExtensionsOptionsVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsOptionsVersion>
|
|
|
|
<MicrosoftExtensionsPrimitivesVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsPrimitivesVersion>
|
|
|
|
<MicrosoftExtensionsInternalTransportVersion>6.0.0-preview.2.21105.12</MicrosoftExtensionsInternalTransportVersion>
|
|
|
|
<SystemComponentModelAnnotationsVersion>6.0.0-preview.2.21105.12</SystemComponentModelAnnotationsVersion>
|
|
|
|
<SystemDiagnosticsDiagnosticSourceVersion>6.0.0-preview.2.21105.12</SystemDiagnosticsDiagnosticSourceVersion>
|
|
|
|
<SystemDiagnosticsEventLogVersion>6.0.0-preview.2.21105.12</SystemDiagnosticsEventLogVersion>
|
|
|
|
<SystemDirectoryServicesProtocolsVersion>6.0.0-preview.2.21105.12</SystemDirectoryServicesProtocolsVersion>
|
|
|
|
<SystemDrawingCommonVersion>6.0.0-preview.2.21105.12</SystemDrawingCommonVersion>
|
|
|
|
<SystemIOPipelinesVersion>6.0.0-preview.2.21105.12</SystemIOPipelinesVersion>
|
|
|
|
<SystemNetHttpJsonVersion>6.0.0-preview.2.21105.12</SystemNetHttpJsonVersion>
|
|
|
|
<SystemNetHttpWinHttpHandlerVersion>6.0.0-preview.2.21105.12</SystemNetHttpWinHttpHandlerVersion>
|
|
|
|
<SystemReflectionMetadataVersion>6.0.0-preview.2.21105.12</SystemReflectionMetadataVersion>
|
|
|
|
<SystemResourcesExtensionsVersion>6.0.0-preview.2.21105.12</SystemResourcesExtensionsVersion>
|
|
|
|
<SystemRuntimeCompilerServicesUnsafeVersion>6.0.0-preview.2.21105.12</SystemRuntimeCompilerServicesUnsafeVersion>
|
2020-07-22 01:21:30 +03:00
|
|
|
<!-- System.Security.AccessControl should only be referenced in Dependencies.props and RTMVersions.csproj. -->
|
2021-02-06 17:41:11 +03:00
|
|
|
<SystemSecurityAccessControlVersion>6.0.0-preview.2.21105.12</SystemSecurityAccessControlVersion>
|
|
|
|
<SystemSecurityCryptographyCngVersion>6.0.0-preview.2.21105.12</SystemSecurityCryptographyCngVersion>
|
|
|
|
<SystemSecurityCryptographyPkcsVersion>6.0.0-preview.2.21105.12</SystemSecurityCryptographyPkcsVersion>
|
|
|
|
<SystemSecurityCryptographyXmlVersion>6.0.0-preview.2.21105.12</SystemSecurityCryptographyXmlVersion>
|
|
|
|
<SystemSecurityPermissionsVersion>6.0.0-preview.2.21105.12</SystemSecurityPermissionsVersion>
|
|
|
|
<SystemSecurityPrincipalWindowsVersion>6.0.0-preview.2.21105.12</SystemSecurityPrincipalWindowsVersion>
|
|
|
|
<SystemServiceProcessServiceControllerVersion>6.0.0-preview.2.21105.12</SystemServiceProcessServiceControllerVersion>
|
|
|
|
<SystemTextEncodingsWebVersion>6.0.0-preview.2.21105.12</SystemTextEncodingsWebVersion>
|
|
|
|
<SystemTextJsonVersion>6.0.0-preview.2.21105.12</SystemTextJsonVersion>
|
|
|
|
<SystemThreadingChannelsVersion>6.0.0-preview.2.21105.12</SystemThreadingChannelsVersion>
|
|
|
|
<SystemWindowsExtensionsVersion>6.0.0-preview.2.21105.12</SystemWindowsExtensionsVersion>
|
2019-02-20 20:53:53 +03:00
|
|
|
<!-- Only listed explicitly to workaround https://github.com/dotnet/cli/issues/10528 -->
|
2021-02-06 17:41:11 +03:00
|
|
|
<MicrosoftNETCorePlatformsVersion>6.0.0-preview.2.21105.12</MicrosoftNETCorePlatformsVersion>
|
2020-01-08 20:08:27 +03:00
|
|
|
<!-- Packages from dotnet/efcore -->
|
2021-02-05 02:06:08 +03:00
|
|
|
<dotnetefVersion>6.0.0-preview.2.21104.1</dotnetefVersion>
|
|
|
|
<MicrosoftEntityFrameworkCoreInMemoryVersion>6.0.0-preview.2.21104.1</MicrosoftEntityFrameworkCoreInMemoryVersion>
|
|
|
|
<MicrosoftEntityFrameworkCoreRelationalVersion>6.0.0-preview.2.21104.1</MicrosoftEntityFrameworkCoreRelationalVersion>
|
|
|
|
<MicrosoftEntityFrameworkCoreSqliteVersion>6.0.0-preview.2.21104.1</MicrosoftEntityFrameworkCoreSqliteVersion>
|
|
|
|
<MicrosoftEntityFrameworkCoreSqlServerVersion>6.0.0-preview.2.21104.1</MicrosoftEntityFrameworkCoreSqlServerVersion>
|
|
|
|
<MicrosoftEntityFrameworkCoreToolsVersion>6.0.0-preview.2.21104.1</MicrosoftEntityFrameworkCoreToolsVersion>
|
|
|
|
<MicrosoftEntityFrameworkCoreVersion>6.0.0-preview.2.21104.1</MicrosoftEntityFrameworkCoreVersion>
|
|
|
|
<MicrosoftEntityFrameworkCoreDesignVersion>6.0.0-preview.2.21104.1</MicrosoftEntityFrameworkCoreDesignVersion>
|
2020-09-01 00:19:34 +03:00
|
|
|
<!-- Packages from dotnet/arcade -->
|
2021-02-01 17:48:53 +03:00
|
|
|
<MicrosoftDotNetBuildTasksInstallersVersion>6.0.0-beta.21078.12</MicrosoftDotNetBuildTasksInstallersVersion>
|
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>
|
2019-06-13 03:51:40 +03:00
|
|
|
</PropertyGroup>
|
2020-11-30 06:46:55 +03:00
|
|
|
<!--
|
|
|
|
We ship ref/ assemblies for runtime packages in our targeting targeting pack. When servicing that targeting pack,
|
|
|
|
these assemblies must not change. Must also compile our assemblies against the initial ref/ assemblies for runtime
|
|
|
|
packages. But, need to test against the latest implementation assemblies and ship them in our shared framework.
|
|
|
|
Upshot is we need Major.Minor.0 runtime packages for compilation and the targeting pack and Major.Minor.Latest
|
|
|
|
runtime packages for everything else. This is not an issue for assemblies available in Microsoft.NETCore.App.Ref or
|
|
|
|
Microsoft.Extensions.Internal.Transport because it is next to impossible we would service those packages.
|
|
|
|
|
|
|
|
System.Security.AccessControl should only be referenced in Dependencies.props and RepoTasks.csproj. Because
|
|
|
|
it's a transitive reference, we reship the ref/ assembly in Microsoft.AspNetCore.App.Ref. dotnet/runtime ships
|
|
|
|
the implementation assemblies in Microsoft.NETCore.App.Runtime.* packages.
|
|
|
|
|
|
|
|
If testing this configuration prior to servicing, update the versions of dependencies too. E.g. change
|
|
|
|
`$(SystemSecurityPrincipalWindowsV0PackageVersion)` if you change `$(SystemSecurityAccessControlV0PackageVersion)`
|
|
|
|
because System.Security.AccessControl will otherwise be loadable. This should not be necessary in servicing.
|
|
|
|
-->
|
|
|
|
<PropertyGroup Condition=" '$(IsServicingBuild)' == 'true' ">
|
|
|
|
<MicrosoftWin32RegistryV0PackageVersion>$(MicrosoftWin32RegistryPackageVersion.Split('.')[0]).$(MicrosoftWin32RegistryPackageVersion.Split('.')[1]).0</MicrosoftWin32RegistryV0PackageVersion>
|
|
|
|
<MicrosoftWin32SystemEventsV0PackageVersion>$(MicrosoftWin32SystemEventsPackageVersion.Split('.')[0]).$(MicrosoftWin32SystemEventsPackageVersion.Split('.')[1]).0</MicrosoftWin32SystemEventsV0PackageVersion>
|
|
|
|
<SystemDiagnosticsEventLogV0PackageVersion>$(SystemDiagnosticsEventLogPackageVersion.Split('.')[0]).$(SystemDiagnosticsEventLogPackageVersion.Split('.')[1]).0</SystemDiagnosticsEventLogV0PackageVersion>
|
|
|
|
<SystemDrawingCommonV0PackageVersion>$(SystemDrawingCommonPackageVersion.Split('.')[0]).$(SystemDrawingCommonPackageVersion.Split('.')[1]).0</SystemDrawingCommonV0PackageVersion>
|
|
|
|
<SystemIOPipelinesV0PackageVersion>$(SystemIOPipelinesPackageVersion.Split('.')[0]).$(SystemIOPipelinesPackageVersion.Split('.')[1]).0</SystemIOPipelinesV0PackageVersion>
|
|
|
|
<SystemSecurityAccessControlV0PackageVersion>$(SystemSecurityAccessControlPackageVersion.Split('.')[0]).$(SystemSecurityAccessControlPackageVersion.Split('.')[1]).0</SystemSecurityAccessControlV0PackageVersion>
|
|
|
|
<SystemSecurityCryptographyCngV0PackageVersion>$(SystemSecurityCryptographyCngPackageVersion.Split('.')[0]).$(SystemSecurityCryptographyCngPackageVersion.Split('.')[1]).0</SystemSecurityCryptographyCngV0PackageVersion>
|
|
|
|
<SystemSecurityCryptographyPkcsV0PackageVersion>$(SystemSecurityCryptographyPkcsPackageVersion.Split('.')[0]).$(SystemSecurityCryptographyPkcsPackageVersion.Split('.')[1]).0</SystemSecurityCryptographyPkcsV0PackageVersion>
|
|
|
|
<SystemSecurityCryptographyXmlV0PackageVersion>$(SystemSecurityCryptographyXmlPackageVersion.Split('.')[0]).$(SystemSecurityCryptographyXmlPackageVersion.Split('.')[1]).0</SystemSecurityCryptographyXmlV0PackageVersion>
|
|
|
|
<SystemSecurityPermissionsV0PackageVersion>$(SystemSecurityPermissionsPackageVersion.Split('.')[0]).$(SystemSecurityPermissionsPackageVersion.Split('.')[1]).0</SystemSecurityPermissionsV0PackageVersion>
|
|
|
|
<SystemSecurityPrincipalWindowsV0PackageVersion>$(SystemSecurityPrincipalWindowsPackageVersion.Split('.')[0]).$(SystemSecurityPrincipalWindowsPackageVersion.Split('.')[1]).0</SystemSecurityPrincipalWindowsV0PackageVersion>
|
|
|
|
<SystemWindowsExtensionsV0PackageVersion>$(SystemWindowsExtensionsPackageVersion.Split('.')[0]).$(SystemWindowsExtensionsPackageVersion.Split('.')[1]).0</SystemWindowsExtensionsV0PackageVersion>
|
|
|
|
</PropertyGroup>
|
2019-02-06 23:07:59 +03:00
|
|
|
<PropertyGroup Label="Manual">
|
2020-09-12 01:41:05 +03:00
|
|
|
<!-- Packages from dotnet/roslyn -->
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftNetCompilersToolsetVersion>3.8.0-5.20519.18</MicrosoftNetCompilersToolsetVersion>
|
2020-04-03 21:38:48 +03:00
|
|
|
<!-- DiagnosticAdapter package pinned temporarily until migrated/deprecated -->
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftExtensionsDiagnosticAdapterVersion>5.0.0-preview.4.20180.4</MicrosoftExtensionsDiagnosticAdapterVersion>
|
2019-02-06 23:07:59 +03:00
|
|
|
<!-- Build tool dependencies -->
|
2020-11-13 21:52:40 +03:00
|
|
|
<InternalAspNetCoreBuildTasksVersion>3.0.0-build-20190530.3</InternalAspNetCoreBuildTasksVersion>
|
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>
|
|
|
|
<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.3</SystemThreadingTasksExtensionsVersion>
|
|
|
|
<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
|
|
|
<LibuvVersion>1.10.0</LibuvVersion>
|
|
|
|
<MicrosoftAspNetWebApiClientVersion>5.2.6</MicrosoftAspNetWebApiClientVersion>
|
|
|
|
<MonoWebAssemblyInteropVersion>3.1.1-preview4.19614.4</MonoWebAssemblyInteropVersion>
|
2019-01-14 23:01:31 +03:00
|
|
|
<!-- Partner teams -->
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftBclAsyncInterfacesVersion>1.0.0</MicrosoftBclAsyncInterfacesVersion>
|
|
|
|
<MicrosoftBuildVersion>15.8.166</MicrosoftBuildVersion>
|
|
|
|
<MicrosoftAzureSignalRVersion>1.2.0</MicrosoftAzureSignalRVersion>
|
|
|
|
<MicrosoftBuildFrameworkVersion>15.8.166</MicrosoftBuildFrameworkVersion>
|
|
|
|
<MicrosoftBuildLocatorVersion>1.2.6</MicrosoftBuildLocatorVersion>
|
|
|
|
<MicrosoftBuildUtilitiesCoreVersion>15.8.166</MicrosoftBuildUtilitiesCoreVersion>
|
|
|
|
<MicrosoftCodeAnalysisCommonVersion>3.7.0</MicrosoftCodeAnalysisCommonVersion>
|
|
|
|
<MicrosoftCodeAnalysisCSharpVersion>3.7.0</MicrosoftCodeAnalysisCSharpVersion>
|
|
|
|
<MicrosoftCodeAnalysisCSharpWorkspacesVersion>3.7.0</MicrosoftCodeAnalysisCSharpWorkspacesVersion>
|
|
|
|
<MicrosoftCodeAnalysisPublicApiAnalyzersVersion>3.3.0</MicrosoftCodeAnalysisPublicApiAnalyzersVersion>
|
|
|
|
<MicrosoftCodeAnalysisFxCopAnalyzersVersion>3.0.0</MicrosoftCodeAnalysisFxCopAnalyzersVersion>
|
|
|
|
<MicrosoftCssParserVersion>1.0.0-20200708.1</MicrosoftCssParserVersion>
|
|
|
|
<MicrosoftIdentityModelClientsActiveDirectoryVersion>3.19.8</MicrosoftIdentityModelClientsActiveDirectoryVersion>
|
|
|
|
<MicrosoftIdentityModelLoggingVersion>6.7.1</MicrosoftIdentityModelLoggingVersion>
|
|
|
|
<MicrosoftIdentityModelProtocolsOpenIdConnectVersion>6.7.1</MicrosoftIdentityModelProtocolsOpenIdConnectVersion>
|
|
|
|
<MicrosoftIdentityModelProtocolsWsFederationVersion>6.7.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.7.1</SystemIdentityModelTokensJwtVersion>
|
|
|
|
<NuGetVersioningVersion>5.7.0</NuGetVersioningVersion>
|
2020-12-05 07:27:48 +03:00
|
|
|
<SystemNetExperimentalMsQuicVersion>5.0.0-alpha.20560.6</SystemNetExperimentalMsQuicVersion>
|
2020-09-11 01:03:35 +03:00
|
|
|
<!-- Packages from 2.1, 3.1, and 5.0 branches used for site extension build. -->
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension21Version>2.1.1</MicrosoftAspNetCoreAzureAppServicesSiteExtension21Version>
|
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension22Version>2.2.0</MicrosoftAspNetCoreAzureAppServicesSiteExtension22Version>
|
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension31Version>3.1.10-servicing-20520-4</MicrosoftAspNetCoreAzureAppServicesSiteExtension31Version>
|
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension31x64Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension31Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension31x64Version>
|
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension31x86Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension31Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension31x86Version>
|
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension50Version>5.0.0-rtm-20529-7</MicrosoftAspNetCoreAzureAppServicesSiteExtension50Version>
|
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension50x64Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension50Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension50x64Version>
|
|
|
|
<MicrosoftAspNetCoreAzureAppServicesSiteExtension50x86Version>$(MicrosoftAspNetCoreAzureAppServicesSiteExtension50Version)</MicrosoftAspNetCoreAzureAppServicesSiteExtension50x86Version>
|
2019-01-14 23:01:31 +03:00
|
|
|
<!-- 3rd party dependencies -->
|
2020-11-13 21:52:40 +03:00
|
|
|
<AngleSharpVersion>0.9.9</AngleSharpVersion>
|
|
|
|
<BenchmarkDotNetVersion>0.12.1</BenchmarkDotNetVersion>
|
|
|
|
<CastleCoreVersion>4.2.1</CastleCoreVersion>
|
|
|
|
<CommandLineParserVersion>2.3.0</CommandLineParserVersion>
|
|
|
|
<FSharpCoreVersion>4.2.1</FSharpCoreVersion>
|
|
|
|
<GoogleProtobufVersion>3.13.0</GoogleProtobufVersion>
|
|
|
|
<GrpcAspNetCoreVersion>2.32.0</GrpcAspNetCoreVersion>
|
|
|
|
<GrpcAuthVersion>2.32.0</GrpcAuthVersion>
|
|
|
|
<GrpcNetClientVersion>2.32.0</GrpcNetClientVersion>
|
|
|
|
<GrpcToolsVersion>2.32.0</GrpcToolsVersion>
|
|
|
|
<IdentityServer4AspNetIdentityVersion>4.1.0</IdentityServer4AspNetIdentityVersion>
|
|
|
|
<IdentityServer4EntityFrameworkVersion>4.1.0</IdentityServer4EntityFrameworkVersion>
|
|
|
|
<IdentityServer4Version>4.1.0</IdentityServer4Version>
|
|
|
|
<IdentityServer4StorageVersion>4.1.0</IdentityServer4StorageVersion>
|
|
|
|
<IdentityServer4EntityFrameworkStorageVersion>4.1.0</IdentityServer4EntityFrameworkStorageVersion>
|
|
|
|
<MessagePackVersion>2.1.90</MessagePackVersion>
|
|
|
|
<MicrosoftIdentityWebVersion>1.1.0</MicrosoftIdentityWebVersion>
|
|
|
|
<MicrosoftIdentityWebMicrosoftGraphVersion>1.1.0</MicrosoftIdentityWebMicrosoftGraphVersion>
|
|
|
|
<MicrosoftIdentityWebUIVersion>1.1.0</MicrosoftIdentityWebUIVersion>
|
|
|
|
<MessagePackAnalyzerVersion>$(MessagePackVersion)</MessagePackAnalyzerVersion>
|
|
|
|
<MoqVersion>4.10.0</MoqVersion>
|
|
|
|
<MonoCecilVersion>0.11.2</MonoCecilVersion>
|
|
|
|
<NewtonsoftJsonBsonVersion>1.0.2</NewtonsoftJsonBsonVersion>
|
|
|
|
<NewtonsoftJsonVersion>12.0.2</NewtonsoftJsonVersion>
|
|
|
|
<NSwagApiDescriptionClientVersion>13.0.4</NSwagApiDescriptionClientVersion>
|
2020-11-18 00:12:17 +03:00
|
|
|
<PollyExtensionsHttpVersion>3.0.0</PollyExtensionsHttpVersion>
|
|
|
|
<PollyVersion>7.1.0</PollyVersion>
|
|
|
|
<SeleniumSupportVersion>4.0.0-alpha07</SeleniumSupportVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<SeleniumWebDriverMicrosoftDriverVersion>17.17134.0</SeleniumWebDriverMicrosoftDriverVersion>
|
2020-11-18 00:12:17 +03:00
|
|
|
<SeleniumWebDriverChromeDriverVersion>87.0.4280.2000-beta</SeleniumWebDriverChromeDriverVersion>
|
|
|
|
<SeleniumWebDriverVersion>4.0.0-alpha07</SeleniumWebDriverVersion>
|
2020-11-13 21:52:40 +03:00
|
|
|
<SerilogExtensionsLoggingVersion>1.4.0</SerilogExtensionsLoggingVersion>
|
|
|
|
<SerilogSinksFileVersion>4.0.0</SerilogSinksFileVersion>
|
|
|
|
<StackExchangeRedisVersion>2.0.593</StackExchangeRedisVersion>
|
|
|
|
<SystemReactiveLinqVersion>3.1.1</SystemReactiveLinqVersion>
|
|
|
|
<SwashbuckleAspNetCoreVersion>5.6.3</SwashbuckleAspNetCoreVersion>
|
|
|
|
<XunitAbstractionsVersion>2.0.3</XunitAbstractionsVersion>
|
|
|
|
<XunitAnalyzersVersion>0.10.0</XunitAnalyzersVersion>
|
2019-02-25 23:26:44 +03:00
|
|
|
<XunitVersion>2.4.1</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>
|
2020-11-13 21:52:40 +03:00
|
|
|
<MicrosoftDataSqlClientVersion>1.0.19249.1</MicrosoftDataSqlClientVersion>
|
2019-06-08 03:19:41 +03:00
|
|
|
</PropertyGroup>
|
|
|
|
<!-- Restore feeds -->
|
|
|
|
<PropertyGroup Label="Restore feeds">
|
2019-08-06 21:05:09 +03:00
|
|
|
<!-- In an orchestrated build, this may be overridden to other Azure feeds. -->
|
2019-06-08 03:19:41 +03:00
|
|
|
<DotNetAssetRootUrl Condition="'$(DotNetAssetRootUrl)'==''">https://dotnetcli.blob.core.windows.net/dotnet/</DotNetAssetRootUrl>
|
2019-12-15 20:23:03 +03:00
|
|
|
<DotNetPrivateAssetRootUrl Condition="'$(DotNetPrivateAssetRootUrl)'==''">https://dotnetclimsrc.blob.core.windows.net/dotnet/</DotNetPrivateAssetRootUrl>
|
2019-01-14 23:01:31 +03:00
|
|
|
</PropertyGroup>
|
2020-06-27 09:44:36 +03:00
|
|
|
</Project>
|