I tried to deploy Blogifier directly using GitHub. But the app start failed with the following message:
Cannot find compilation library location for package 'Microsoft.Win32.Registry'
To fix it I had to add the following line to the Blogifier.Web.csproj file:
<MvcRazorExcludeRefAssembliesFromPublish>false</MvcRazorExcludeRefAssembliesFromPublish>
That fixed the deployment for me and every push is now built and deployed automatically. 😄
I tried to deploy Blogifier directly using GitHub. But the app start failed with the following message:
To fix it I had to add the following line to the Blogifier.Web.csproj file:
<MvcRazorExcludeRefAssembliesFromPublish>false</MvcRazorExcludeRefAssembliesFromPublish>
That fixed the deployment for me and every push is now built and deployed automatically. 😄