hishamco / hishambinateya.com

Hisham's Blog
http://www.hishambinateya.com/
2 stars 1 forks source link

Theming in ASP.NET Core #38

Open hishamco opened 5 years ago

phnogues commented 5 years ago

Thanks for your example, it's perfect. I had to change app.UseStaticFiles method by :

app.UseStaticFiles(new StaticFileOptions() { FileProvider = new PhysicalFileProvider(Path.Combine(env.ContentRootPath, $@"Views/Themes/{appSettings.Value.Theme}")), RequestPath = string.Empty });

👍

hishamco commented 5 years ago

Happy to hear that helps you