Reputation: 21
enter image description hereI have a problem with core 2.1.when I create a project mvc with core 2.1 I don't have wwwroot in my project. would you please help me?
Upvotes: 0
Views: 3102
Reputation: 361
If there is a section that had folder add your folder
<ItemGroup>
<Folder Include="Controllers\" />
<Folder Include="Views\" />
<Folder Include="wwwroot\" />
</ItemGroup>
If it is not just add
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
Upvotes: 2
Reputation: 878
This problem seems to occur when the wwwroot folder is empty. Adding files below wwwroot and reloading the project makes the wwwroot folder appear as expected.
Upvotes: 2