Skip to content

Commit 65ff6e9

Browse files
author
Nate McMaster
committed
Merge branch release/2.1 into release/2.2
2 parents 7e38b56 + edcee85 commit 65ff6e9

File tree

599 files changed

+1012
-2418
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

599 files changed

+1012
-2418
lines changed

Directory.Build.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@
9292

9393
<PropertyGroup>
9494
<StandardTestTfms>netcoreapp2.2;net461</StandardTestTfms>
95+
<!-- Projects which reference Microsoft.AspNetCore.Mvc.Testing should import this targets file to ensure dependency .deps.json files are copied into test output. -->
96+
<MvcTestingTargets>$(MSBuildThisFileDirectory)src\Mvc\src\Microsoft.AspNetCore.Mvc.Testing\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Testing.targets</MvcTestingTargets>
9597
</PropertyGroup>
9698

9799
<Import Project="eng\Dependencies.props" />

Directory.Build.targets

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222

2323
<PropertyGroup Condition=" '$(IsPackageInThisPatch)' != 'true' AND '$(BaselinePackageVersion)' != '' ">
2424
<!-- This keeps assembly and package versions consistent across patches. If a package is not included in a patch, its version should stay at the baseline. -->
25-
<AssemblyVersion>$(BaselinePackageVersion).0</AssemblyVersion>
25+
<AssemblyVersion Condition="$(BaselinePackageVersion.Contains('-'))">$(BaselinePackageVersion.Substring(0, $(BaselinePackageVersion.IndexOf('-')))).0</AssemblyVersion>
26+
<AssemblyVersion Condition="! $(BaselinePackageVersion.Contains('-'))">$(BaselinePackageVersion).0</AssemblyVersion>
2627
<!--
2728
Ideally, we would also set the project version to match the baseline in case NuGet turns a ProjectReference into a nuspec depenendency, but
2829
NuGet does not currently handle conflicts between packages and projects which have the same package id/version.

build/artifacts.props

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
<PackageArtifact Include="dotnet-sql-cache" Category="ship" />
2020
<PackageArtifact Include="dotnet-user-secrets" Category="ship" />
2121
<PackageArtifact Include="dotnet-watch" Category="ship" />
22-
<PackageArtifact Include="Microsoft.AspNet.Identity.AspNetCoreCompat" Category="noship" />
2322
<PackageArtifact Include="Microsoft.AspNetCore.All" Category="ship" />
2423
<PackageArtifact Include="Microsoft.AspNetCore.ApiAuthorization.IdentityServer" Category="noship" />
2524
<PackageArtifact Include="Microsoft.AspNetCore.App" Category="ship" />

build/buildorder.props

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
<ItemGroup>
1010
<RepositoryBuildOrder Include="EntityFrameworkCore" Order="8" />
11-
<RepositoryBuildOrder Include="Identity" Order="15" RootPath="$(RepositoryRoot)src\Identity\" />
1211
<RepositoryBuildOrder Include="MvcPrecompilation" Order="15" RootPath="$(RepositoryRoot)src\MvcPrecompilation\" />
1312
<RepositoryBuildOrder Include="Scaffolding" Order="15" />
1413
<RepositoryBuildOrder Include="AzureIntegration" Order="15" RootPath="$(RepositoryRoot)src\AzureIntegration\" />

build/dependencies.props

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
<MicrosoftEntityFrameworkCoreInMemoryPackageVersion>2.2.0</MicrosoftEntityFrameworkCoreInMemoryPackageVersion>
1111
<MicrosoftEntityFrameworkCorePackageVersion>2.2.0</MicrosoftEntityFrameworkCorePackageVersion>
1212
<MicrosoftEntityFrameworkCoreRelationalPackageVersion>2.2.0</MicrosoftEntityFrameworkCoreRelationalPackageVersion>
13+
<MicrosoftEntityFrameworkCoreSqlitePackageVersion>2.2.0</MicrosoftEntityFrameworkCoreSqlitePackageVersion>
1314
<MicrosoftEntityFrameworkCoreSqlServerPackageVersion>2.2.0</MicrosoftEntityFrameworkCoreSqlServerPackageVersion>
15+
<MicrosoftEntityFrameworkCoreToolsPackageVersion>2.2.0</MicrosoftEntityFrameworkCoreToolsPackageVersion>
1416
</PropertyGroup>
1517

1618
<Import Project="$(DotNetPackageVersionPropsPath)" Condition="'$(DotNetPackageVersionPropsPath)' != ''" />
@@ -131,9 +133,9 @@
131133
<DevDependency_MicrosoftExtensionsDependencyModelPackageVersion>2.0.0</DevDependency_MicrosoftExtensionsDependencyModelPackageVersion>
132134
<DevDependency_WindowsAzureStoragePackageVersion>8.7.0</DevDependency_WindowsAzureStoragePackageVersion>
133135
<FSharpCorePackageVersion>4.2.1</FSharpCorePackageVersion>
134-
<IdentityServer4PackageVersion>2.3.0-preview1-update2</IdentityServer4PackageVersion>
135-
<IdentityServer4AspNetIdentityPackageVersion>2.3.0-preview1-update2</IdentityServer4AspNetIdentityPackageVersion>
136-
<IdentityServer4EntityFrameworkPackageVersion>2.3.0-preview1-update1</IdentityServer4EntityFrameworkPackageVersion>
136+
<IdentityServer4AspNetIdentityPackageVersion>2.3.0</IdentityServer4AspNetIdentityPackageVersion>
137+
<IdentityServer4EntityFrameworkPackageVersion>2.3.0</IdentityServer4EntityFrameworkPackageVersion>
138+
<IdentityServer4PackageVersion>2.3.0</IdentityServer4PackageVersion>
137139
<GoogleProtobufPackageVersion>3.1.0</GoogleProtobufPackageVersion>
138140
<LibuvPackageVersion>1.10.0</LibuvPackageVersion>
139141
<MessagePackPackageVersion>1.7.3.4</MessagePackPackageVersion>

build/repo.props

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@
7171
"
7272
Condition=" '$(MSBuildRuntimeType)' == 'Core' " />
7373

74+
<!-- Exclude the WPF samples for now because they use classic .csproj, which is not yet supported in our build. -->
75+
<ProjectToExclude Include="$(RepositoryRoot)src\Identity\Identity\samples\NativeWPFClient\NativeWPFClient.csproj;" />
76+
7477
<!-- Exclude the websockets samples for now because they use classic .csproj, which is not yet supported in our build. -->
7578
<ProjectToExclude Include="
7679
$(RepositoryRoot)src\Middleware\WebSockets\samples\**\*.csproj;
@@ -95,6 +98,7 @@
9598
$(RepositoryRoot)src\Hosting\**\*.*proj;
9699
$(RepositoryRoot)src\Http\**\*.*proj;
97100
$(RepositoryRoot)src\Html\**\*.*proj;
101+
$(RepositoryRoot)src\Identity\**\*.*proj;
98102
$(RepositoryRoot)src\Servers\**\*.csproj;
99103
$(RepositoryRoot)src\Servers\**\*.pkgproj;
100104
$(RepositoryRoot)src\Security\**\*.*proj;

build/submodules.props

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747

4848
<ItemGroup>
4949
<ShippedRepository Include="AzureIntegration" RootPath="$(RepositoryRoot)src\AzureIntegration\" />
50-
<ShippedRepository Include="Identity" RootPath="$(RepositoryRoot)src\Identity\" />
5150
<ShippedRepository Include="MetaPackages" RootPath="$(RepositoryRoot)src\MetaPackages\" PatchPolicy="CascadeVersions" />
5251
<ShippedRepository Include="MvcPrecompilation" RootPath="$(RepositoryRoot)src\MvcPrecompilation\"/>
5352
<ShippedRepository Include="SignalR" RootPath="$(RepositoryRoot)src\SignalR\" />

eng/Baseline.Designer.props

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,19 @@
3131
<BaselinePackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="[2.2.0, )" />
3232
<BaselinePackageReference Include="Microsoft.Extensions.ObjectPool" Version="[2.2.0, )" />
3333
</ItemGroup>
34+
<!-- Package: Microsoft.AspNetCore.ApiAuthorization.IdentityServer-->
35+
<PropertyGroup Condition=" '$(PackageId)' == 'Microsoft.AspNetCore.ApiAuthorization.IdentityServer' ">
36+
<BaselinePackageVersion>2.2.0-preview-35687</BaselinePackageVersion>
37+
</PropertyGroup>
38+
<ItemGroup Condition=" '$(PackageId)' == 'Microsoft.AspNetCore.ApiAuthorization.IdentityServer' AND '$(TargetFramework)' == 'netstandard2.0' ">
39+
<BaselinePackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="[2.2.0, )" />
40+
<BaselinePackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="[2.2.0, )" />
41+
<BaselinePackageReference Include="IdentityServer4" Version="[2.3.0-preview1-update2, )" />
42+
<BaselinePackageReference Include="IdentityServer4.AspNetIdentity" Version="[2.3.0-preview1-update2, )" />
43+
<BaselinePackageReference Include="IdentityServer4.EntityFramework" Version="[2.3.0-preview1-update1, )" />
44+
<BaselinePackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="[2.2.0, )" />
45+
<BaselinePackageReference Include="Microsoft.AspNetCore.Mvc" Version="[2.2.0, )" />
46+
</ItemGroup>
3447
<!-- Package: Microsoft.AspNetCore.AspNetCoreModule-->
3548
<PropertyGroup Condition=" '$(PackageId)' == 'Microsoft.AspNetCore.AspNetCoreModule' ">
3649
<BaselinePackageVersion>2.2.0</BaselinePackageVersion>
@@ -444,6 +457,48 @@
444457
<BaselinePackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="[2.2.0, )" />
445458
<BaselinePackageReference Include="Microsoft.Extensions.Options" Version="[2.2.0, )" />
446459
</ItemGroup>
460+
<!-- Package: Microsoft.AspNetCore.Identity.EntityFrameworkCore-->
461+
<PropertyGroup Condition=" '$(PackageId)' == 'Microsoft.AspNetCore.Identity.EntityFrameworkCore' ">
462+
<BaselinePackageVersion>2.2.0</BaselinePackageVersion>
463+
</PropertyGroup>
464+
<ItemGroup Condition=" '$(PackageId)' == 'Microsoft.AspNetCore.Identity.EntityFrameworkCore' AND '$(TargetFramework)' == 'netstandard2.0' ">
465+
<BaselinePackageReference Include="Microsoft.AspNetCore.Identity" Version="[2.2.0, )" />
466+
<BaselinePackageReference Include="Microsoft.Extensions.Identity.Stores" Version="[2.2.0, )" />
467+
<BaselinePackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="[2.2.0, )" />
468+
</ItemGroup>
469+
<!-- Package: Microsoft.AspNetCore.Identity.Specification.Tests-->
470+
<PropertyGroup Condition=" '$(PackageId)' == 'Microsoft.AspNetCore.Identity.Specification.Tests' ">
471+
<BaselinePackageVersion>2.2.0</BaselinePackageVersion>
472+
</PropertyGroup>
473+
<ItemGroup Condition=" '$(PackageId)' == 'Microsoft.AspNetCore.Identity.Specification.Tests' AND '$(TargetFramework)' == 'netstandard2.0' ">
474+
<BaselinePackageReference Include="Microsoft.AspNetCore.Identity" Version="[2.2.0, )" />
475+
<BaselinePackageReference Include="Microsoft.Extensions.Configuration" Version="[2.2.0, )" />
476+
<BaselinePackageReference Include="Microsoft.Extensions.DependencyInjection" Version="[2.2.0, )" />
477+
<BaselinePackageReference Include="Microsoft.Extensions.Logging" Version="[2.2.0, )" />
478+
<BaselinePackageReference Include="xunit.assert" Version="[2.3.1, )" />
479+
<BaselinePackageReference Include="xunit.extensibility.core" Version="[2.3.1, )" />
480+
</ItemGroup>
481+
<!-- Package: Microsoft.AspNetCore.Identity.UI-->
482+
<PropertyGroup Condition=" '$(PackageId)' == 'Microsoft.AspNetCore.Identity.UI' ">
483+
<BaselinePackageVersion>2.2.0</BaselinePackageVersion>
484+
</PropertyGroup>
485+
<ItemGroup Condition=" '$(PackageId)' == 'Microsoft.AspNetCore.Identity.UI' AND '$(TargetFramework)' == 'netstandard2.0' ">
486+
<BaselinePackageReference Include="Microsoft.AspNetCore.Identity" Version="[2.2.0, )" />
487+
<BaselinePackageReference Include="Microsoft.Extensions.Identity.Stores" Version="[2.2.0, )" />
488+
<BaselinePackageReference Include="Microsoft.AspNetCore.Mvc" Version="[2.2.0, )" />
489+
<BaselinePackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="[2.2.0, )" />
490+
<BaselinePackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="[2.2.0, )" />
491+
</ItemGroup>
492+
<!-- Package: Microsoft.AspNetCore.Identity-->
493+
<PropertyGroup Condition=" '$(PackageId)' == 'Microsoft.AspNetCore.Identity' ">
494+
<BaselinePackageVersion>2.2.0</BaselinePackageVersion>
495+
</PropertyGroup>
496+
<ItemGroup Condition=" '$(PackageId)' == 'Microsoft.AspNetCore.Identity' AND '$(TargetFramework)' == 'netstandard2.0' ">
497+
<BaselinePackageReference Include="Microsoft.Extensions.Identity.Core" Version="[2.2.0, )" />
498+
<BaselinePackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="[2.2.0, )" />
499+
<BaselinePackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="[2.2.0, )" />
500+
<BaselinePackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="[2.2.0, )" />
501+
</ItemGroup>
447502
<!-- Package: Microsoft.AspNetCore.JsonPatch-->
448503
<PropertyGroup Condition=" '$(PackageId)' == 'Microsoft.AspNetCore.JsonPatch' ">
449504
<BaselinePackageVersion>2.2.0</BaselinePackageVersion>
@@ -1027,6 +1082,25 @@
10271082
<BaselinePackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="[2.2.0, )" />
10281083
<BaselinePackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="[2.2.0, )" />
10291084
</ItemGroup>
1085+
<!-- Package: Microsoft.Extensions.Identity.Core-->
1086+
<PropertyGroup Condition=" '$(PackageId)' == 'Microsoft.Extensions.Identity.Core' ">
1087+
<BaselinePackageVersion>2.2.0</BaselinePackageVersion>
1088+
</PropertyGroup>
1089+
<ItemGroup Condition=" '$(PackageId)' == 'Microsoft.Extensions.Identity.Core' AND '$(TargetFramework)' == 'netstandard2.0' ">
1090+
<BaselinePackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="[2.2.0, )" />
1091+
<BaselinePackageReference Include="Microsoft.Extensions.Logging" Version="[2.2.0, )" />
1092+
<BaselinePackageReference Include="Microsoft.Extensions.Options" Version="[2.2.0, )" />
1093+
<BaselinePackageReference Include="System.ComponentModel.Annotations" Version="[4.5.0, )" />
1094+
</ItemGroup>
1095+
<!-- Package: Microsoft.Extensions.Identity.Stores-->
1096+
<PropertyGroup Condition=" '$(PackageId)' == 'Microsoft.Extensions.Identity.Stores' ">
1097+
<BaselinePackageVersion>2.2.0</BaselinePackageVersion>
1098+
</PropertyGroup>
1099+
<ItemGroup Condition=" '$(PackageId)' == 'Microsoft.Extensions.Identity.Stores' AND '$(TargetFramework)' == 'netstandard2.0' ">
1100+
<BaselinePackageReference Include="Microsoft.Extensions.Identity.Core" Version="[2.2.0, )" />
1101+
<BaselinePackageReference Include="Microsoft.Extensions.Logging" Version="[2.2.0, )" />
1102+
<BaselinePackageReference Include="System.ComponentModel.Annotations" Version="[4.5.0, )" />
1103+
</ItemGroup>
10301104
<!-- Package: Microsoft.Net.Http.Headers-->
10311105
<PropertyGroup Condition=" '$(PackageId)' == 'Microsoft.Net.Http.Headers' ">
10321106
<BaselinePackageVersion>2.2.0</BaselinePackageVersion>

eng/Baseline.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ build of ASP.NET Core 2.2.x. Update this list when preparing for a new patch.
1010
<Package Id="dotnet-user-secrets" Version="2.2.0" />
1111
<Package Id="dotnet-watch" Version="2.2.0" />
1212
<Package Id="Microsoft.AspNetCore.Antiforgery" Version="2.2.0" />
13+
<Package Id="Microsoft.AspNetCore.ApiAuthorization.IdentityServer" Version="2.2.0-preview-35687" />
1314
<Package Id="Microsoft.AspNetCore.AspNetCoreModule" Version="2.2.0" />
1415
<Package Id="Microsoft.AspNetCore.AspNetCoreModuleV2" Version="2.2.0" />
1516
<Package Id="Microsoft.AspNetCore.Authentication.Abstractions" Version="2.2.0" />
@@ -57,6 +58,10 @@ build of ASP.NET Core 2.2.x. Update this list when preparing for a new patch.
5758
<Package Id="Microsoft.AspNetCore.Http" Version="2.2.0" />
5859
<Package Id="Microsoft.AspNetCore.HttpOverrides" Version="2.2.0" />
5960
<Package Id="Microsoft.AspNetCore.HttpsPolicy" Version="2.2.0" />
61+
<Package Id="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="2.2.0" />
62+
<Package Id="Microsoft.AspNetCore.Identity.Specification.Tests" Version="2.2.0" />
63+
<Package Id="Microsoft.AspNetCore.Identity.UI" Version="2.2.0" />
64+
<Package Id="Microsoft.AspNetCore.Identity" Version="2.2.0" />
6065
<Package Id="Microsoft.AspNetCore.JsonPatch" Version="2.2.0" />
6166
<Package Id="Microsoft.AspNetCore.Localization.Routing" Version="2.2.0" />
6267
<Package Id="Microsoft.AspNetCore.Localization" Version="2.2.0" />
@@ -109,6 +114,8 @@ build of ASP.NET Core 2.2.x. Update this list when preparing for a new patch.
109114
<Package Id="Microsoft.AspNetCore" Version="2.2.0" />
110115
<Package Id="Microsoft.CodeAnalysis.Razor" Version="2.2.0" />
111116
<Package Id="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="2.2.0" />
117+
<Package Id="Microsoft.Extensions.Identity.Core" Version="2.2.0" />
118+
<Package Id="Microsoft.Extensions.Identity.Stores" Version="2.2.0" />
112119
<Package Id="Microsoft.Net.Http.Headers" Version="2.2.0" />
113120
<Package Id="Microsoft.Net.Sdk.Razor" Version="2.2.0" />
114121
<Package Id="Microsoft.Owin.Security.Interop" Version="2.2.0" />

eng/Dependencies.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ and are generated based on the last package release.
3333
<LatestPackageReference Include="Microsoft.CSharp" Version="$(MicrosoftCSharpPackageVersion)" />
3434
<LatestPackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="$(MicrosoftEntityFrameworkCoreInMemoryPackageVersion)" />
3535
<LatestPackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="$(MicrosoftEntityFrameworkCoreRelationalPackageVersion)" />
36+
<LatestPackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="$(MicrosoftEntityFrameworkCoreSqlitePackageVersion)" />
3637
<LatestPackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="$(MicrosoftEntityFrameworkCoreSqlServerPackageVersion)" />
38+
<LatestPackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="$(MicrosoftEntityFrameworkCoreToolsPackageVersion)" />
3739
<LatestPackageReference Include="Microsoft.EntityFrameworkCore" Version="$(MicrosoftEntityFrameworkCorePackageVersion)" />
3840
<LatestPackageReference Include="Microsoft.Extensions.ActivatorUtilities.Sources" Version="$(MicrosoftExtensionsActivatorUtilitiesSourcesPackageVersion)" />
3941
<LatestPackageReference Include="Microsoft.Extensions.Caching.Memory" Version="$(MicrosoftExtensionsCachingMemoryPackageVersion)" />
@@ -42,6 +44,7 @@ and are generated based on the last package release.
4244
<LatestPackageReference Include="Microsoft.Extensions.CommandLineUtils.Sources" Version="$(MicrosoftExtensionsCommandLineUtilsSourcesPackageVersion)" />
4345
<LatestPackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="$(MicrosoftExtensionsConfigurationCommandLinePackageVersion)" />
4446
<LatestPackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="$(MicrosoftExtensionsConfigurationEnvironmentVariablesPackageVersion)" />
47+
<LatestPackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="$(MicrosoftExtensionsConfigurationFileExtensionsPackageVersion)" />
4548
<LatestPackageReference Include="Microsoft.Extensions.Configuration.Json" Version="$(MicrosoftExtensionsConfigurationJsonPackageVersion)" />
4649
<LatestPackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="$(MicrosoftExtensionsConfigurationUserSecretsPackageVersion)" />
4750
<LatestPackageReference Include="Microsoft.Extensions.Configuration" Version="$(MicrosoftExtensionsConfigurationPackageVersion)" />
@@ -97,6 +100,9 @@ and are generated based on the last package release.
97100
<LatestPackageReference Include="BenchmarkDotNet" Version="0.10.13" />
98101
<LatestPackageReference Include="FSharp.Core" Version="4.2.1" />
99102
<LatestPackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
103+
<LatestPackageReference Include="IdentityServer4" Version="$(IdentityServer4PackageVersion)" />
104+
<LatestPackageReference Include="IdentityServer4.AspNetIdentity" Version="$(IdentityServer4AspNetIdentityPackageVersion)" />
105+
<LatestPackageReference Include="IdentityServer4.EntityFramework" Version="$(IdentityServer4EntityFrameworkPackageVersion)" />
100106
<LatestPackageReference Include="Moq" Version="4.10.0" />
101107
<!-- This version is required by MSBuild tasks or Visual Studio extensions. -->
102108
<LatestPackageReference Include="Newtonsoft.Json" Version="9.0.1" Condition="'$(UseMSBuildJsonNet)' == 'true'" />

0 commit comments

Comments
 (0)