statiqdev / Statiq.Web

Statiq Web is a flexible static site generator written in .NET.
https://statiq.dev/web
Other
1.64k stars 235 forks source link

Add a targets file #905

Closed daveaglick closed 4 years ago

daveaglick commented 4 years ago

See https://github.com/statiqdev/Statiq.Framework/issues/106 - Statiq Web has some additional folders so a separate targets file could be added for it:

<ItemGroup>
  <Compile Remove="theme\**" />
  <Compile Remove="extensions\**" />
  <Compile Remove="archetypes\**" />
<ItemGroup>
  <None Include="theme\**">
    <CopyToOutputDirectory>Never</CopyToOutputDirectory>
  </None>
  <None Include="extensions\**">
    <CopyToOutputDirectory>Never</CopyToOutputDirectory>
  </None>
  <None Include="archetypes\**">
    <CopyToOutputDirectory>Never</CopyToOutputDirectory>
  </None>
</ItemGroup>

See theme extensions (#902) and archetypes (#901)

daveaglick commented 4 years ago

This is done, will go out with next release