Skip to content

Commit

Permalink
#79 Support App_Browsers and App_Themes out of box (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-tyulkin authored Aug 11, 2024
1 parent d176021 commit bddc7f4
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,10 @@
<Content Include="**\*.master" Exclude="$(DefaultWebFormsItemExcludes)" />
<Content Include="**\*.svc" Exclude="$(DefaultWebFormsItemExcludes)" />
</ItemGroup>

<!-- Support App_Browsers and App_Themes folders https://github.com/CZEMacLeod/MSBuild.SDK.SystemWeb/issues/79 -->
<ItemGroup>
<Content Include="App_Browsers\*.browser" Exclude="$(DefaultWebFormsItemExcludes)" Condition="Exists('App_Browsers')" />
<Content Include="App_Themes\**\*" Exclude="$(DefaultWebFormsItemExcludes)" Condition="Exists('App_Themes')" />
</ItemGroup>
</Project>

0 comments on commit bddc7f4

Please sign in to comment.