File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
JsonApiDotNetCoreTests/IntegrationTests/HostingInIIS Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 11using JetBrains . Annotations ;
22using JsonApiDotNetCore . Configuration ;
33using Microsoft . AspNetCore . Builder ;
4- using Microsoft . AspNetCore . Hosting ;
54using Microsoft . EntityFrameworkCore ;
6- using Microsoft . Extensions . Logging ;
75using TestBuildingBlocks ;
86
97namespace JsonApiDotNetCoreTests . IntegrationTests . HostingInIIS ;
@@ -20,10 +18,10 @@ protected override void SetJsonApiOptions(JsonApiOptions options)
2018 options . IncludeTotalResourceCount = true ;
2119 }
2220
23- public override void Configure ( IApplicationBuilder app , IWebHostEnvironment environment , ILoggerFactory loggerFactory )
21+ public override void Configure ( IApplicationBuilder app )
2422 {
2523 app . UsePathBase ( "/iis-application-virtual-directory" ) ;
2624
27- base . Configure ( app , environment , loggerFactory ) ;
25+ base . Configure ( app ) ;
2826 }
2927}
Original file line number Diff line number Diff line change 11using JsonApiDotNetCore . Configuration ;
22using Microsoft . AspNetCore . Builder ;
3- using Microsoft . AspNetCore . Hosting ;
43using Microsoft . EntityFrameworkCore ;
54using Microsoft . Extensions . DependencyInjection ;
6- using Microsoft . Extensions . Logging ;
75
86namespace TestBuildingBlocks ;
97
@@ -24,7 +22,7 @@ protected virtual void SetJsonApiOptions(JsonApiOptions options)
2422 options . SerializerOptions . WriteIndented = true ;
2523 }
2624
27- public virtual void Configure ( IApplicationBuilder app , IWebHostEnvironment environment , ILoggerFactory loggerFactory )
25+ public virtual void Configure ( IApplicationBuilder app )
2826 {
2927 app . UseRouting ( ) ;
3028 app . UseJsonApi ( ) ;
You can’t perform that action at this time.
0 commit comments