blogifierdotnet / Blogifier

Blogifier is an open-source publishing platform Written in ASP.NET and Blazor WebAssembly. With Blogifier make a personal blog or a website.
https://blogifier.net
MIT License
1.28k stars 518 forks source link

What tools were used to compile static files in Blogifier? #311

Closed LinQiaoPorco closed 2 years ago

LinQiaoPorco commented 2 years ago

Hi,

Except npm, what tools were used to compile static files into wwwroot/themes? Gulp or something else? I would like to keep the same routine with your repo. It would be fantastic to have a manual or intro added to README.md for better understanding.

Thanks!

david-randoll commented 2 years ago

I think it is just the dotnet publish command. You can learn more about it on Microsoft site:

https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-publish

LinQiaoPorco commented 2 years ago

I think it is just the dotnet publish command. You can learn more about it on Microsoft site:

https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-publish

Thanks!