Skip to content

Commit 21d3307

Browse files
committed
Update version to pick up bug fix
1 parent 8ff2cfb commit 21d3307

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"sdk": {
3-
"version": "6.0.100-preview.3.21160.15"
3+
"version": "6.0.100-preview.3.21165.3"
44
},
55
"tools": {
6-
"dotnet": "6.0.100-preview.3.21160.15",
6+
"dotnet": "6.0.100-preview.3.21165.3",
77
"runtimes": {
88
"dotnet/x64": [
99
"2.1.25",

src/Identity/UI/src/IdentityBuilderUIExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public static IdentityBuilder AddDefaultUI(this IdentityBuilder builder)
4747
private static readonly IDictionary<UIFramework, string> _assemblyMap =
4848
new Dictionary<UIFramework, string>()
4949
{
50-
[UIFramework.Bootstrap4] = "Microsoft.AspNetCore.Identity.UI.Views.V4",
50+
[UIFramework.Bootstrap4] = "Microsoft.AspNetCore.Identity.UI.",
5151
};
5252

5353
private static void AddRelatedParts(IdentityBuilder builder)

src/Identity/UI/src/Microsoft.AspNetCore.Identity.UI.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
<EnableDefaultRazorGenerateItems>false</EnableDefaultRazorGenerateItems>
1010
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
1111
<NoWarn>RS0016</NoWarn>
12-
<RazorTargetName>Microsoft.AspNetCore.Identity.UI.Views.V4</RazorTargetName>
1312

1413
<DisableStaticWebAssetsBuildPropsFileGeneration>true</DisableStaticWebAssetsBuildPropsFileGeneration>
1514
<StaticWebAssetsDisableProjectBuildPropsFileGeneration>true</StaticWebAssetsDisableProjectBuildPropsFileGeneration>
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
using Microsoft.AspNetCore.Mvc.ApplicationParts;
5-
6-
[assembly: RelatedAssembly("Microsoft.AspNetCore.Identity.UI.Views.V4")]
4+
using Microsoft.AspNetCore.Mvc.ApplicationParts;

src/Identity/test/Identity.FunctionalTests/Infrastructure/ServerFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ private static void AddRelatedParts(IServiceCollection services, string framewor
156156
var _assemblyMap =
157157
new Dictionary<UIFramework, string>()
158158
{
159-
[UIFramework.Bootstrap4] = "Microsoft.AspNetCore.Identity.UI.Views.V4",
159+
[UIFramework.Bootstrap4] = "Microsoft.AspNetCore.Identity.UI",
160160
};
161161

162162
var mvcBuilder = services

0 commit comments

Comments
 (0)