Identity 900 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. commit 68b878f0e135f28260950fa485dcd53eae1da3a9
  2. Author: Nate McMaster <[email protected]>
  3. Date: Fri Nov 16 16:27:58 2018 -0800
  4. Upgrade packages and projects to target netcoreapp3.0 (aspnet/Identity#2072)
  5. * Upgrade dependencies
  6. * Change TFM on Microsoft.AspNetCore.Identity to netcoreapp3.0
  7. * Remove .NET Framework tests
  8. diff --git a/Directory.Build.targets b/Directory.Build.targets
  9. index 659aae39703..7e3f8df92e4 100644
  10. --- a/Directory.Build.targets
  11. +++ b/Directory.Build.targets
  12. @@ -1,10 +1,6 @@
  13. <Project>
  14. <PropertyGroup>
  15. - <RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">$(MicrosoftNETCoreApp20PackageVersion)</RuntimeFrameworkVersion>
  16. - <RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">$(MicrosoftNETCoreApp21PackageVersion)</RuntimeFrameworkVersion>
  17. - <RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp3.0' ">$(MicrosoftNETCoreApp30PackageVersion)</RuntimeFrameworkVersion>
  18. + <RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp3.0' ">$(MicrosoftNETCoreAppPackageVersion)</RuntimeFrameworkVersion>
  19. <NETStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard2.0' ">$(NETStandardLibrary20PackageVersion)</NETStandardImplicitPackageVersion>
  20. - <!-- aspnet/BuildTools#662 Don't police what version of NetCoreApp we use -->
  21. - <NETCoreAppMaximumVersion>99.9</NETCoreAppMaximumVersion>
  22. </PropertyGroup>
  23. </Project>
  24. diff --git a/NuGetPackageVerifier.json b/NuGetPackageVerifier.json
  25. index 63a774a5557..eff389943da 100644
  26. --- a/NuGetPackageVerifier.json
  27. +++ b/NuGetPackageVerifier.json
  28. @@ -7,8 +7,8 @@
  29. "Microsoft.AspNetCore.Identity.UI": {
  30. "Exclusions": {
  31. "DOC_MISSING": {
  32. - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.V3.dll": "This assembly is generated and contains precompiled razor pages",
  33. - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.V4.dll": "This assembly is generated and contains precompiled razor pages"
  34. + "lib/netcoreapp3.0/Microsoft.AspNetCore.Identity.UI.Views.V3.dll": "This assembly is generated and contains precompiled razor pages",
  35. + "lib/netcoreapp3.0/Microsoft.AspNetCore.Identity.UI.Views.V4.dll": "This assembly is generated and contains precompiled razor pages"
  36. }
  37. }
  38. }
  39. diff --git a/build/dependencies.props b/build/dependencies.props
  40. index 84d37ea37ac..5b75c34c51e 100644
  41. --- a/build/dependencies.props
  42. +++ b/build/dependencies.props
  43. @@ -4,66 +4,64 @@
  44. </PropertyGroup>
  45. <PropertyGroup Label="Package Versions">
  46. <AngleSharpPackageVersion>0.9.9</AngleSharpPackageVersion>
  47. - <InternalAspNetCoreSdkPackageVersion>3.0.0-alpha1-20181031.3</InternalAspNetCoreSdkPackageVersion>
  48. - <IdentityServer4PackageVersion>2.3.0-preview1-update2</IdentityServer4PackageVersion>
  49. <IdentityServer4AspNetIdentityPackageVersion>2.3.0-preview1-update2</IdentityServer4AspNetIdentityPackageVersion>
  50. <IdentityServer4EntityFrameworkPackageVersion>2.3.0-preview1-update1</IdentityServer4EntityFrameworkPackageVersion>
  51. - <MicrosoftAspNetCoreAuthenticationCookiesPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreAuthenticationCookiesPackageVersion>
  52. - <MicrosoftAspNetCoreAuthenticationFacebookPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreAuthenticationFacebookPackageVersion>
  53. - <MicrosoftAspNetCoreAuthenticationGooglePackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreAuthenticationGooglePackageVersion>
  54. - <MicrosoftAspNetCoreAuthenticationJwtBearerPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreAuthenticationJwtBearerPackageVersion>
  55. - <MicrosoftAspNetCoreAuthenticationOpenIdConnectPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreAuthenticationOpenIdConnectPackageVersion>
  56. - <MicrosoftAspNetCoreAuthenticationTwitterPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreAuthenticationTwitterPackageVersion>
  57. - <MicrosoftAspNetCoreAuthorizationPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreAuthorizationPackageVersion>
  58. - <MicrosoftAspNetCoreCookiePolicyPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreCookiePolicyPackageVersion>
  59. - <MicrosoftAspNetCoreCryptographyKeyDerivationPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreCryptographyKeyDerivationPackageVersion>
  60. - <MicrosoftAspNetCoreDataProtectionExtensionsPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreDataProtectionExtensionsPackageVersion>
  61. - <MicrosoftAspNetCoreDiagnosticsEntityFrameworkCorePackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreDiagnosticsEntityFrameworkCorePackageVersion>
  62. - <MicrosoftAspNetCoreDiagnosticsPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreDiagnosticsPackageVersion>
  63. - <MicrosoftAspNetCoreHostingAbstractionsPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreHostingAbstractionsPackageVersion>
  64. - <MicrosoftAspNetCoreHostingPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreHostingPackageVersion>
  65. - <MicrosoftAspNetCoreHttpAbstractionsPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreHttpAbstractionsPackageVersion>
  66. - <MicrosoftAspNetCoreHttpPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreHttpPackageVersion>
  67. - <MicrosoftAspNetCoreHttpsPolicyPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreHttpsPolicyPackageVersion>
  68. - <MicrosoftAspNetCoreMvcPackageVersion>3.0.0-a-alpha1-react-razor-design-19157</MicrosoftAspNetCoreMvcPackageVersion>
  69. - <MicrosoftAspNetCoreMvcTestingPackageVersion>3.0.0-a-alpha1-react-razor-design-19157</MicrosoftAspNetCoreMvcTestingPackageVersion>
  70. - <MicrosoftAspNetCoreRewritePackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreRewritePackageVersion>
  71. - <MicrosoftAspNetCoreServerIISIntegrationPackageVersion>2.2.0-rtm-10670</MicrosoftAspNetCoreServerIISIntegrationPackageVersion>
  72. - <MicrosoftAspNetCoreServerKestrelHttpsPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreServerKestrelHttpsPackageVersion>
  73. - <MicrosoftAspNetCoreServerKestrelPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreServerKestrelPackageVersion>
  74. - <MicrosoftAspNetCoreStaticFilesPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreStaticFilesPackageVersion>
  75. - <MicrosoftAspNetCoreTestHostPackageVersion>3.0.0-alpha1-10670</MicrosoftAspNetCoreTestHostPackageVersion>
  76. - <MicrosoftAspNetCoreTestingPackageVersion>3.0.0-alpha1-10657</MicrosoftAspNetCoreTestingPackageVersion>
  77. + <IdentityServer4PackageVersion>2.3.0-preview1-update2</IdentityServer4PackageVersion>
  78. + <InternalAspNetCoreSdkPackageVersion>3.0.0-build-20181114.5</InternalAspNetCoreSdkPackageVersion>
  79. + <MicrosoftAspNetCoreAuthenticationCookiesPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreAuthenticationCookiesPackageVersion>
  80. + <MicrosoftAspNetCoreAuthenticationFacebookPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreAuthenticationFacebookPackageVersion>
  81. + <MicrosoftAspNetCoreAuthenticationGooglePackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreAuthenticationGooglePackageVersion>
  82. + <MicrosoftAspNetCoreAuthenticationJwtBearerPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreAuthenticationJwtBearerPackageVersion>
  83. + <MicrosoftAspNetCoreAuthenticationOpenIdConnectPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreAuthenticationOpenIdConnectPackageVersion>
  84. + <MicrosoftAspNetCoreAuthenticationTwitterPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreAuthenticationTwitterPackageVersion>
  85. + <MicrosoftAspNetCoreAuthorizationPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreAuthorizationPackageVersion>
  86. + <MicrosoftAspNetCoreCookiePolicyPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreCookiePolicyPackageVersion>
  87. + <MicrosoftAspNetCoreCryptographyKeyDerivationPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreCryptographyKeyDerivationPackageVersion>
  88. + <MicrosoftAspNetCoreDataProtectionExtensionsPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreDataProtectionExtensionsPackageVersion>
  89. + <MicrosoftAspNetCoreDiagnosticsEntityFrameworkCorePackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreDiagnosticsEntityFrameworkCorePackageVersion>
  90. + <MicrosoftAspNetCoreDiagnosticsPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreDiagnosticsPackageVersion>
  91. + <MicrosoftAspNetCoreHostingAbstractionsPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreHostingAbstractionsPackageVersion>
  92. + <MicrosoftAspNetCoreHostingPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreHostingPackageVersion>
  93. + <MicrosoftAspNetCoreHttpAbstractionsPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreHttpAbstractionsPackageVersion>
  94. + <MicrosoftAspNetCoreHttpPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreHttpPackageVersion>
  95. + <MicrosoftAspNetCoreHttpsPolicyPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreHttpsPolicyPackageVersion>
  96. + <MicrosoftAspNetCoreMvcPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreMvcPackageVersion>
  97. + <MicrosoftAspNetCoreMvcTestingPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreMvcTestingPackageVersion>
  98. + <MicrosoftAspNetCoreRewritePackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreRewritePackageVersion>
  99. + <MicrosoftAspNetCoreServerIISIntegrationPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreServerIISIntegrationPackageVersion>
  100. + <MicrosoftAspNetCoreServerKestrelHttpsPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreServerKestrelHttpsPackageVersion>
  101. + <MicrosoftAspNetCoreServerKestrelPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreServerKestrelPackageVersion>
  102. + <MicrosoftAspNetCoreStaticFilesPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreStaticFilesPackageVersion>
  103. + <MicrosoftAspNetCoreTestHostPackageVersion>3.0.0-alpha1-10742</MicrosoftAspNetCoreTestHostPackageVersion>
  104. + <MicrosoftAspNetCoreTestingPackageVersion>3.0.0-preview-181113-11</MicrosoftAspNetCoreTestingPackageVersion>
  105. <MicrosoftAspNetIdentityEntityFrameworkPackageVersion>2.2.1</MicrosoftAspNetIdentityEntityFrameworkPackageVersion>
  106. - <MicrosoftEntityFrameworkCoreInMemoryPackageVersion>3.0.0-alpha1-10670</MicrosoftEntityFrameworkCoreInMemoryPackageVersion>
  107. - <MicrosoftEntityFrameworkCoreRelationalPackageVersion>3.0.0-alpha1-10670</MicrosoftEntityFrameworkCoreRelationalPackageVersion>
  108. - <MicrosoftEntityFrameworkCoreSqlitePackageVersion>3.0.0-alpha1-10670</MicrosoftEntityFrameworkCoreSqlitePackageVersion>
  109. - <MicrosoftEntityFrameworkCoreSqlServerPackageVersion>3.0.0-alpha1-10670</MicrosoftEntityFrameworkCoreSqlServerPackageVersion>
  110. - <MicrosoftEntityFrameworkCoreToolsPackageVersion>3.0.0-alpha1-10670</MicrosoftEntityFrameworkCoreToolsPackageVersion>
  111. - <MicrosoftExtensionsConfigurationBinderPackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsConfigurationBinderPackageVersion>
  112. - <MicrosoftExtensionsConfigurationCommandLinePackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsConfigurationCommandLinePackageVersion>
  113. - <MicrosoftExtensionsConfigurationEnvironmentVariablesPackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsConfigurationEnvironmentVariablesPackageVersion>
  114. - <MicrosoftExtensionsConfigurationFileExtensionsPackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsConfigurationFileExtensionsPackageVersion>
  115. - <MicrosoftExtensionsConfigurationJsonPackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsConfigurationJsonPackageVersion>
  116. - <MicrosoftExtensionsConfigurationPackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsConfigurationPackageVersion>
  117. - <MicrosoftExtensionsConfigurationUserSecretsPackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsConfigurationUserSecretsPackageVersion>
  118. - <MicrosoftExtensionsDependencyInjectionPackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsDependencyInjectionPackageVersion>
  119. - <MicrosoftExtensionsFileProvidersEmbeddedPackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsFileProvidersEmbeddedPackageVersion>
  120. - <MicrosoftExtensionsLoggingConfigurationPackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsLoggingConfigurationPackageVersion>
  121. - <MicrosoftExtensionsLoggingConsolePackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsLoggingConsolePackageVersion>
  122. - <MicrosoftExtensionsLoggingDebugPackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsLoggingDebugPackageVersion>
  123. - <MicrosoftExtensionsLoggingPackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsLoggingPackageVersion>
  124. - <MicrosoftExtensionsLoggingTestingPackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsLoggingTestingPackageVersion>
  125. - <MicrosoftExtensionsOptionsConfigurationExtensionsPackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsOptionsConfigurationExtensionsPackageVersion>
  126. - <MicrosoftExtensionsOptionsPackageVersion>3.0.0-alpha1-10670</MicrosoftExtensionsOptionsPackageVersion>
  127. - <MicrosoftExtensionsSecurityHelperSourcesPackageVersion>3.0.0-alpha1-10657</MicrosoftExtensionsSecurityHelperSourcesPackageVersion>
  128. - <MicrosoftNETCoreApp20PackageVersion>2.0.9</MicrosoftNETCoreApp20PackageVersion>
  129. - <MicrosoftNETCoreApp21PackageVersion>2.1.3</MicrosoftNETCoreApp21PackageVersion>
  130. - <MicrosoftNETCoreApp30PackageVersion>3.0.0-preview1-26907-05</MicrosoftNETCoreApp30PackageVersion>
  131. - <MicrosoftNETSdkRazorPackageVersion>3.0.0-a-alpha1-sdk-31869</MicrosoftNETSdkRazorPackageVersion>
  132. + <MicrosoftEntityFrameworkCoreInMemoryPackageVersion>3.0.0-preview-181109-02</MicrosoftEntityFrameworkCoreInMemoryPackageVersion>
  133. + <MicrosoftEntityFrameworkCoreRelationalPackageVersion>3.0.0-preview-181109-02</MicrosoftEntityFrameworkCoreRelationalPackageVersion>
  134. + <MicrosoftEntityFrameworkCoreSqlitePackageVersion>3.0.0-preview-181109-02</MicrosoftEntityFrameworkCoreSqlitePackageVersion>
  135. + <MicrosoftEntityFrameworkCoreSqlServerPackageVersion>3.0.0-preview-181109-02</MicrosoftEntityFrameworkCoreSqlServerPackageVersion>
  136. + <MicrosoftEntityFrameworkCoreToolsPackageVersion>3.0.0-preview-181109-02</MicrosoftEntityFrameworkCoreToolsPackageVersion>
  137. + <MicrosoftExtensionsConfigurationBinderPackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsConfigurationBinderPackageVersion>
  138. + <MicrosoftExtensionsConfigurationCommandLinePackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsConfigurationCommandLinePackageVersion>
  139. + <MicrosoftExtensionsConfigurationEnvironmentVariablesPackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsConfigurationEnvironmentVariablesPackageVersion>
  140. + <MicrosoftExtensionsConfigurationFileExtensionsPackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsConfigurationFileExtensionsPackageVersion>
  141. + <MicrosoftExtensionsConfigurationJsonPackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsConfigurationJsonPackageVersion>
  142. + <MicrosoftExtensionsConfigurationPackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsConfigurationPackageVersion>
  143. + <MicrosoftExtensionsConfigurationUserSecretsPackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsConfigurationUserSecretsPackageVersion>
  144. + <MicrosoftExtensionsDependencyInjectionPackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsDependencyInjectionPackageVersion>
  145. + <MicrosoftExtensionsFileProvidersEmbeddedPackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsFileProvidersEmbeddedPackageVersion>
  146. + <MicrosoftExtensionsLoggingConfigurationPackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsLoggingConfigurationPackageVersion>
  147. + <MicrosoftExtensionsLoggingConsolePackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsLoggingConsolePackageVersion>
  148. + <MicrosoftExtensionsLoggingDebugPackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsLoggingDebugPackageVersion>
  149. + <MicrosoftExtensionsLoggingPackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsLoggingPackageVersion>
  150. + <MicrosoftExtensionsLoggingTestingPackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsLoggingTestingPackageVersion>
  151. + <MicrosoftExtensionsOptionsConfigurationExtensionsPackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsOptionsConfigurationExtensionsPackageVersion>
  152. + <MicrosoftExtensionsOptionsPackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsOptionsPackageVersion>
  153. + <MicrosoftExtensionsSecurityHelperSourcesPackageVersion>3.0.0-preview-181113-11</MicrosoftExtensionsSecurityHelperSourcesPackageVersion>
  154. + <MicrosoftNETCoreAppPackageVersion>3.0.0-preview1-26907-05</MicrosoftNETCoreAppPackageVersion>
  155. + <MicrosoftNETSdkRazorPackageVersion>3.0.0-alpha1-10742</MicrosoftNETSdkRazorPackageVersion>
  156. <MicrosoftNETTestSdkPackageVersion>15.6.1</MicrosoftNETTestSdkPackageVersion>
  157. <MicrosoftOwinSecurityCookiesPackageVersion>3.0.1</MicrosoftOwinSecurityCookiesPackageVersion>
  158. - <MicrosoftOwinSecurityInteropPackageVersion>3.0.0-alpha1-10670</MicrosoftOwinSecurityInteropPackageVersion>
  159. + <MicrosoftOwinSecurityInteropPackageVersion>3.0.0-alpha1-10742</MicrosoftOwinSecurityInteropPackageVersion>
  160. <MoqPackageVersion>4.10.0</MoqPackageVersion>
  161. <NETStandardLibrary20PackageVersion>2.0.3</NETStandardLibrary20PackageVersion>
  162. <SystemComponentModelAnnotationsPackageVersion>4.6.0-preview1-26907-04</SystemComponentModelAnnotationsPackageVersion>
  163. diff --git a/build/repo.props b/build/repo.props
  164. index 17a98ac7e7d..4402da1d0d7 100644
  165. --- a/build/repo.props
  166. +++ b/build/repo.props
  167. @@ -8,8 +8,6 @@
  168. </PropertyGroup>
  169. <ItemGroup>
  170. - <DotNetCoreRuntime Include="$(MicrosoftNETCoreApp20PackageVersion)" />
  171. - <DotNetCoreRuntime Include="$(MicrosoftNETCoreApp21PackageVersion)" />
  172. - <DotNetCoreRuntime Include="$(MicrosoftNETCoreApp22PackageVersion)" />
  173. + <DotNetCoreRuntime Include="$(MicrosoftNETCoreAppPackageVersion)" />
  174. </ItemGroup>
  175. </Project>
  176. diff --git a/korebuild-lock.txt b/korebuild-lock.txt
  177. index 8494b2123ec..73613543d0a 100644
  178. --- a/korebuild-lock.txt
  179. +++ b/korebuild-lock.txt
  180. @@ -1,2 +1,2 @@
  181. -version:3.0.0-alpha1-20181031.3
  182. -commithash:93e5628f435045e3f2a766933dc5062048ac0426
  183. +version:3.0.0-build-20181114.5
  184. +commithash:880e9a204d4ee4a18dfd83c9fb05a192a28bca60
  185. diff --git a/samples/ApiAuthSample/ApiAuthSample.csproj b/samples/ApiAuthSample/ApiAuthSample.csproj
  186. index 310eb114976..d6f43b9d64c 100644
  187. --- a/samples/ApiAuthSample/ApiAuthSample.csproj
  188. +++ b/samples/ApiAuthSample/ApiAuthSample.csproj
  189. @@ -1,7 +1,7 @@
  190. <Project Sdk="Microsoft.NET.Sdk.Web">
  191. <PropertyGroup>
  192. - <TargetFrameworks>netcoreapp3.0;net461</TargetFrameworks>
  193. + <TargetFramework>netcoreapp3.0</TargetFramework>
  194. <UserSecretsId>aspnet-ApiAuthSample-12ED8ECC-9EF1-4D31-87B4-1405B3198E5E</UserSecretsId>
  195. </PropertyGroup>
  196. diff --git a/samples/IdentitySample.DefaultUI/IdentitySample.DefaultUI.csproj b/samples/IdentitySample.DefaultUI/IdentitySample.DefaultUI.csproj
  197. index 168eda9496a..39f6bb9d438 100644
  198. --- a/samples/IdentitySample.DefaultUI/IdentitySample.DefaultUI.csproj
  199. +++ b/samples/IdentitySample.DefaultUI/IdentitySample.DefaultUI.csproj
  200. @@ -2,7 +2,7 @@
  201. <PropertyGroup>
  202. <Description>Identity sample MVC application on ASP.NET Core using the default UI</Description>
  203. - <TargetFrameworks>netcoreapp3.0;net461</TargetFrameworks>
  204. + <TargetFramework>netcoreapp3.0</TargetFramework>
  205. <UserSecretsId>aspnetcore-2ff9bc27-5e8c-4484-90ca-e3aace89b72a</UserSecretsId>
  206. </PropertyGroup>
  207. diff --git a/samples/IdentitySample.Mvc/IdentitySample.Mvc.csproj b/samples/IdentitySample.Mvc/IdentitySample.Mvc.csproj
  208. index c45ff1af2ce..8b3e7f604a9 100644
  209. --- a/samples/IdentitySample.Mvc/IdentitySample.Mvc.csproj
  210. +++ b/samples/IdentitySample.Mvc/IdentitySample.Mvc.csproj
  211. @@ -2,7 +2,7 @@
  212. <PropertyGroup>
  213. <Description>Identity sample MVC application on ASP.NET Core</Description>
  214. - <TargetFrameworks>netcoreapp3.0;net461</TargetFrameworks>
  215. + <TargetFramework>netcoreapp3.0</TargetFramework>
  216. <UserSecretsId>aspnetcore-b3d20cbe-418e-4bf2-a0f4-57f91d067e07</UserSecretsId>
  217. </PropertyGroup>
  218. diff --git a/src/ApiAuth.IS/Microsoft.AspNetCore.ApiAuthorization.IdentityServer.csproj b/src/ApiAuth.IS/Microsoft.AspNetCore.ApiAuthorization.IdentityServer.csproj
  219. index 43405cd0184..1e0af1cd262 100644
  220. --- a/src/ApiAuth.IS/Microsoft.AspNetCore.ApiAuthorization.IdentityServer.csproj
  221. +++ b/src/ApiAuth.IS/Microsoft.AspNetCore.ApiAuthorization.IdentityServer.csproj
  222. @@ -1,7 +1,7 @@
  223. <Project Sdk="Microsoft.NET.Sdk">
  224. <PropertyGroup>
  225. - <TargetFramework>netstandard2.0</TargetFramework>
  226. + <TargetFramework>netcoreapp3.0</TargetFramework>
  227. <Description>ASP.NET Core API Authorization package powered by Identity Server.</Description>
  228. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  229. <PackageTags>aspnetcore;apiauth;identity</PackageTags>
  230. diff --git a/src/EF/Microsoft.AspNetCore.Identity.EntityFrameworkCore.csproj b/src/EF/Microsoft.AspNetCore.Identity.EntityFrameworkCore.csproj
  231. index 79339b9c1ec..69565262fba 100644
  232. --- a/src/EF/Microsoft.AspNetCore.Identity.EntityFrameworkCore.csproj
  233. +++ b/src/EF/Microsoft.AspNetCore.Identity.EntityFrameworkCore.csproj
  234. @@ -2,7 +2,7 @@
  235. <PropertyGroup>
  236. <Description>ASP.NET Core Identity provider that uses Entity Framework Core.</Description>
  237. - <TargetFramework>netstandard2.0</TargetFramework>
  238. + <TargetFramework>netcoreapp3.0</TargetFramework>
  239. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  240. <PackageTags>aspnetcore;entityframeworkcore;identity;membership</PackageTags>
  241. </PropertyGroup>
  242. diff --git a/src/Identity/Microsoft.AspNetCore.Identity.csproj b/src/Identity/Microsoft.AspNetCore.Identity.csproj
  243. index fc0fae70c8f..9ef7ddb110c 100644
  244. --- a/src/Identity/Microsoft.AspNetCore.Identity.csproj
  245. +++ b/src/Identity/Microsoft.AspNetCore.Identity.csproj
  246. @@ -2,7 +2,7 @@
  247. <PropertyGroup>
  248. <Description>ASP.NET Core Identity is the membership system for building ASP.NET Core web applications, including membership, login, and user data. ASP.NET Core Identity allows you to add login features to your application and makes it easy to customize data about the logged in user.</Description>
  249. - <TargetFramework>netstandard2.0</TargetFramework>
  250. + <TargetFramework>netcoreapp3.0</TargetFramework>
  251. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  252. <PackageTags>aspnetcore;identity;membership</PackageTags>
  253. </PropertyGroup>
  254. diff --git a/src/Specification.Tests/Microsoft.AspNetCore.Identity.Specification.Tests.csproj b/src/Specification.Tests/Microsoft.AspNetCore.Identity.Specification.Tests.csproj
  255. index 668159786b8..22a7b552f97 100644
  256. --- a/src/Specification.Tests/Microsoft.AspNetCore.Identity.Specification.Tests.csproj
  257. +++ b/src/Specification.Tests/Microsoft.AspNetCore.Identity.Specification.Tests.csproj
  258. @@ -2,7 +2,7 @@
  259. <PropertyGroup>
  260. <Description>Shared test suite for Asp.Net Identity Core store implementations.</Description>
  261. - <TargetFramework>netstandard2.0</TargetFramework>
  262. + <TargetFramework>netcoreapp3.0</TargetFramework>
  263. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  264. <PackageTags>aspnetcore;identity;membership</PackageTags>
  265. </PropertyGroup>
  266. diff --git a/src/UI/Microsoft.AspNetCore.Identity.UI.csproj b/src/UI/Microsoft.AspNetCore.Identity.UI.csproj
  267. index 7d4043f2ace..6f79a1e4bb0 100644
  268. --- a/src/UI/Microsoft.AspNetCore.Identity.UI.csproj
  269. +++ b/src/UI/Microsoft.AspNetCore.Identity.UI.csproj
  270. @@ -3,7 +3,7 @@
  271. <PropertyGroup>
  272. <Description>ASP.NET Core Identity UI is the default Razor Pages built-in UI for the ASP.NET Core Identity framework.</Description>
  273. <RazorAssemblyDescription>Compiled Razor views assembly for the ASP.NET Core Identity UI package.</RazorAssemblyDescription>
  274. - <TargetFramework>netstandard2.0</TargetFramework>
  275. + <TargetFramework>netcoreapp3.0</TargetFramework>
  276. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  277. <PackageTags>aspnetcore;identity;membership;razorpages</PackageTags>
  278. <GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
  279. diff --git a/test/Identity.FunctionalTests/Microsoft.AspNetCore.Identity.FunctionalTests.csproj b/test/Identity.FunctionalTests/Microsoft.AspNetCore.Identity.FunctionalTests.csproj
  280. index baf9ad55b01..3c201f9c7b8 100644
  281. --- a/test/Identity.FunctionalTests/Microsoft.AspNetCore.Identity.FunctionalTests.csproj
  282. +++ b/test/Identity.FunctionalTests/Microsoft.AspNetCore.Identity.FunctionalTests.csproj
  283. @@ -1,8 +1,7 @@
  284. <Project Sdk="Microsoft.NET.Sdk">
  285. <PropertyGroup>
  286. - <TargetFrameworks>$(StandardTestTfms)</TargetFrameworks>
  287. - <PlatformTarget Condition=" '$(TargetFramework)' == 'netcoreapp3.0' "></PlatformTarget>
  288. + <TargetFramework>netcoreapp3.0</TargetFramework>
  289. </PropertyGroup>
  290. <ItemGroup>
  291. @@ -27,7 +26,7 @@
  292. <Target Name="CopyViews" AfterTargets="Build" Condition="$(TargetFramework) != ''">
  293. <ItemGroup>
  294. - <_IdentityUIViewsAssemblies Include="$(MSBuildThisFileDirectory)..\..\src\UI\bin\$(Configuration)\netstandard2.0\Microsoft.AspNetCore.Identity.UI.Views.*.dll" />
  295. + <_IdentityUIViewsAssemblies Include="$(MSBuildThisFileDirectory)..\..\src\UI\bin\$(Configuration)\netcoreapp3.0\Microsoft.AspNetCore.Identity.UI.Views.*.dll" />
  296. </ItemGroup>
  297. <Copy
  298. SourceFiles="@(_IdentityUIViewsAssemblies)"
  299. diff --git a/test/Identity.Test/Microsoft.AspNetCore.Identity.Test.csproj b/test/Identity.Test/Microsoft.AspNetCore.Identity.Test.csproj
  300. index e6e124f3fcd..eea6850afc9 100644
  301. --- a/test/Identity.Test/Microsoft.AspNetCore.Identity.Test.csproj
  302. +++ b/test/Identity.Test/Microsoft.AspNetCore.Identity.Test.csproj
  303. @@ -1,7 +1,7 @@
  304. <Project Sdk="Microsoft.NET.Sdk">
  305. <PropertyGroup>
  306. - <TargetFrameworks>$(StandardTestTfms)</TargetFrameworks>
  307. + <TargetFramework>netcoreapp3.0</TargetFramework>
  308. </PropertyGroup>
  309. <ItemGroup>
  310. diff --git a/test/WebSites/Directory.Build.props b/test/WebSites/Directory.Build.props
  311. index 571723247ed..c8a4ec44406 100644
  312. --- a/test/WebSites/Directory.Build.props
  313. +++ b/test/WebSites/Directory.Build.props
  314. @@ -1,10 +1,4 @@
  315. <Project>
  316. <!-- Skip the parent directory so test websites do not get the test package references. -->
  317. <Import Project="..\..\Directory.Build.props" />
  318. -
  319. - <PropertyGroup>
  320. - <DeveloperBuildTestWebsiteTfms>netcoreapp3.0</DeveloperBuildTestWebsiteTfms>
  321. - <StandardTestWebsiteTfms>$(DeveloperBuildTestWebsiteTfms)</StandardTestWebsiteTfms>
  322. - <StandardTestWebsiteTfms Condition=" '$(DeveloperBuild)' != 'true' ">$(StandardTestWebsiteTfms)</StandardTestWebsiteTfms>
  323. - </PropertyGroup>
  324. </Project>
  325. diff --git a/test/WebSites/Identity.DefaultUI.WebSite/Identity.DefaultUI.WebSite.csproj b/test/WebSites/Identity.DefaultUI.WebSite/Identity.DefaultUI.WebSite.csproj
  326. index f70236936e3..17fa5548f4b 100644
  327. --- a/test/WebSites/Identity.DefaultUI.WebSite/Identity.DefaultUI.WebSite.csproj
  328. +++ b/test/WebSites/Identity.DefaultUI.WebSite/Identity.DefaultUI.WebSite.csproj
  329. @@ -1,7 +1,7 @@
  330. <Project Sdk="Microsoft.NET.Sdk.Web">
  331. <PropertyGroup>
  332. - <TargetFrameworks>$(StandardTestWebsiteTfms)</TargetFrameworks>
  333. + <TargetFramework>netcoreapp3.0</TargetFramework>
  334. <UserSecretsId>aspnet-Identity.DefaultUI.WebSite-80C658D8-CED7-467F-9B47-75DA3BC1A16D</UserSecretsId>
  335. </PropertyGroup>