File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
e2e/sample-apps/UmbracoSampleApp Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ public static class AppBuilderHelper
2424 public static async Task < WebApplication > CreateApp ( string [ ] args )
2525 {
2626 var builder = WebApplication . CreateBuilder ( args ) ;
27+
28+ // Use Kestrel for the web server instead of IIS Express (IIS Express is not supported on cross-platform)
2729 builder . WebHost . UseKestrel ( ) ;
2830
2931 builder . CreateUmbracoBuilder ( )
@@ -88,7 +90,7 @@ public void Compose(IUmbracoBuilder builder)
8890 public class UmbracoApplicationNotificationHandler : INotificationHandler < UmbracoApplicationStartedNotification >
8991 {
9092 private readonly DatabaseService databaseService ;
91- public UmbracoApplicationNotificationHandler ( DatabaseService databaseService )
93+ public UmbracoApplicationNotificationHandler ( DatabaseService databaseService )
9294 {
9395 this . databaseService = databaseService ;
9496 }
You can’t perform that action at this time.
0 commit comments