Answers for "core 5 wwwroot not published"

C#
0

published net core did not have wwwroot

<ItemGroup>
   <Include="www**" CopyToPublishDirectory="Always"/>
</ItemGroup>
Posted by: Guest on October-05-2020
0

published net core did not have wwwroot

<ItemGroup>
    <Content Include="wwwroot***">
      <CopyToPublishDirectory>Always</CopyToPublishDirectory>
    </Content>
</ItemGroup>
Posted by: Guest on October-05-2020

Code answers related to "core 5 wwwroot not published"

C# Answers by Framework

Browse Popular Code Answers by Language