File tree 2 files changed +3
-7
lines changed
JsonApiDotNetCoreTests/IntegrationTests/HostingInIIS 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 1
1
using JetBrains . Annotations ;
2
2
using JsonApiDotNetCore . Configuration ;
3
3
using Microsoft . AspNetCore . Builder ;
4
- using Microsoft . AspNetCore . Hosting ;
5
4
using Microsoft . EntityFrameworkCore ;
6
- using Microsoft . Extensions . Logging ;
7
5
using TestBuildingBlocks ;
8
6
9
7
namespace JsonApiDotNetCoreTests . IntegrationTests . HostingInIIS ;
@@ -20,10 +18,10 @@ protected override void SetJsonApiOptions(JsonApiOptions options)
20
18
options . IncludeTotalResourceCount = true ;
21
19
}
22
20
23
- public override void Configure ( IApplicationBuilder app , IWebHostEnvironment environment , ILoggerFactory loggerFactory )
21
+ public override void Configure ( IApplicationBuilder app )
24
22
{
25
23
app . UsePathBase ( "/iis-application-virtual-directory" ) ;
26
24
27
- base . Configure ( app , environment , loggerFactory ) ;
25
+ base . Configure ( app ) ;
28
26
}
29
27
}
Original file line number Diff line number Diff line change 1
1
using JsonApiDotNetCore . Configuration ;
2
2
using Microsoft . AspNetCore . Builder ;
3
- using Microsoft . AspNetCore . Hosting ;
4
3
using Microsoft . EntityFrameworkCore ;
5
4
using Microsoft . Extensions . DependencyInjection ;
6
- using Microsoft . Extensions . Logging ;
7
5
8
6
namespace TestBuildingBlocks ;
9
7
@@ -24,7 +22,7 @@ protected virtual void SetJsonApiOptions(JsonApiOptions options)
24
22
options . SerializerOptions . WriteIndented = true ;
25
23
}
26
24
27
- public virtual void Configure ( IApplicationBuilder app , IWebHostEnvironment environment , ILoggerFactory loggerFactory )
25
+ public virtual void Configure ( IApplicationBuilder app )
28
26
{
29
27
app . UseRouting ( ) ;
30
28
app . UseJsonApi ( ) ;
You can’t perform that action at this time.
0 commit comments