Skip to content

Commit 872e461

Browse files
committed
Bump to new SDK
1 parent 1fe52ee commit 872e461

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
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.21165.3"
3+
"version": "6.0.100-preview.3.21167.3"
44
},
55
"tools": {
6-
"dotnet": "6.0.100-preview.3.21165.3",
6+
"dotnet": "6.0.100-preview.3.21167.3",
77
"runtimes": {
88
"dotnet/x64": [
99
"2.1.25",

src/Azure/AzureAD/Authentication.AzureADB2C.UI/src/Microsoft.AspNetCore.Authentication.AzureADB2C.UI.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<PackageTags>aspnetcore;authentication;AzureADB2C</PackageTags>
88
<GenerateDocumentationFile>true</GenerateDocumentationFile>
99
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
10-
<NoWarn>RS0016</NoWarn>
1110
</PropertyGroup>
1211

1312
<ItemGroup>

src/Mvc/test/WebSites/ControllersFromServicesWebSite/Startup.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@ public void ConfigureServices(IServiceCollection services)
2525
.AddControllersWithViews()
2626
.ConfigureApplicationPartManager(manager => manager.ApplicationParts.Clear())
2727
.AddApplicationPart(typeof(TimeScheduleController).GetTypeInfo().Assembly)
28+
.ConfigureApplicationPartManager(manager =>
29+
{
30+
manager.ApplicationParts.Add(new TypesPart(
31+
typeof(AnotherController),
32+
typeof(ComponentFromServicesViewComponent),
33+
typeof(InServicesTagHelper)));
34+
})
2835
.AddControllersAsServices()
2936
.AddViewComponentsAsServices()
3037
.AddTagHelpersAsServices();

0 commit comments

Comments
 (0)