Difference between revisions of "GetDotNetHost error in CI"

From Logic Wiki
Jump to: navigation, search
(Created page with "Category:TFS Category:CI Error : The "GetDotNetHost" task could not be loaded from the assembly Solution : add this line <MvcRazorCompileOnPublish>false</MvcRazor...")
 
(No difference)

Latest revision as of 10:08, 3 April 2019


Error : The "GetDotNetHost" task could not be loaded from the assembly

Solution : add this line

<MvcRazorCompileOnPublish>false</MvcRazorCompileOnPublish>

into

 <PropertyGroup>
   <TargetFramework>netcoreapp2.0</TargetFramework>
   <MvcRazorCompileOnPublish>false</MvcRazorCompileOnPublish>    
 </PropertyGroup>