Browse Source

Merge pull request #101 from volosoft/EngincanV/issue-100

Fix the wrong physical path
pull/104/head
Berkan Sasmaz 5 years ago
committed by GitHub
parent
commit
a45b877589
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/EventHub.Web/EventHubWebModule.cs

2
src/EventHub.Web/EventHubWebModule.cs

@ -185,7 +185,7 @@ namespace EventHub.Web
{
Configure<AbpVirtualFileSystemOptions>(options =>
{
options.FileSets.ReplaceEmbeddedByPhysical<EventHubDomainSharedModule>(Path.Combine(hostingEnvironment.ContentRootPath, $"..{Path.DirectorySeparatorChar}EventHub.Domain"));
options.FileSets.ReplaceEmbeddedByPhysical<EventHubDomainSharedModule>(Path.Combine(hostingEnvironment.ContentRootPath, $"..{Path.DirectorySeparatorChar}EventHub.Domain.Shared"));
options.FileSets.ReplaceEmbeddedByPhysical<EventHubApplicationContractsModule>(Path.Combine(hostingEnvironment.ContentRootPath, $"..{Path.DirectorySeparatorChar}EventHub.Application.Contracts"));
options.FileSets.ReplaceEmbeddedByPhysical<EventHubWebThemeModule>(Path.Combine(hostingEnvironment.ContentRootPath, $"..{Path.DirectorySeparatorChar}EventHub.Web.Theme"));
options.FileSets.ReplaceEmbeddedByPhysical<EventHubWebModule>(hostingEnvironment.ContentRootPath);

Loading…
Cancel
Save