From c8f4e63d92b4a2d7eeb9dfe5bf72f1fb7aef3130 Mon Sep 17 00:00:00 2001 From: Engincan VESKE Date: Fri, 1 Apr 2022 09:48:36 +0300 Subject: [PATCH] Fix the wrong physical path for EventHubDomainSharedModule --- src/EventHub.Web/EventHubWebModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EventHub.Web/EventHubWebModule.cs b/src/EventHub.Web/EventHubWebModule.cs index 94373fd..115168d 100644 --- a/src/EventHub.Web/EventHubWebModule.cs +++ b/src/EventHub.Web/EventHubWebModule.cs @@ -185,7 +185,7 @@ namespace EventHub.Web { Configure(options => { - options.FileSets.ReplaceEmbeddedByPhysical(Path.Combine(hostingEnvironment.ContentRootPath, $"..{Path.DirectorySeparatorChar}EventHub.Domain")); + options.FileSets.ReplaceEmbeddedByPhysical(Path.Combine(hostingEnvironment.ContentRootPath, $"..{Path.DirectorySeparatorChar}EventHub.Domain.Shared")); options.FileSets.ReplaceEmbeddedByPhysical(Path.Combine(hostingEnvironment.ContentRootPath, $"..{Path.DirectorySeparatorChar}EventHub.Application.Contracts")); options.FileSets.ReplaceEmbeddedByPhysical(Path.Combine(hostingEnvironment.ContentRootPath, $"..{Path.DirectorySeparatorChar}EventHub.Web.Theme")); options.FileSets.ReplaceEmbeddedByPhysical(hostingEnvironment.ContentRootPath);