Created
February 7, 2020 19:36
-
-
Save sayedihashimi/48ac9c92cc57c555130a97c53ec4e7aa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ItemGroup> | |
<!-- Don't publish the SPA source files, but do show them in the project files list --> | |
<Content Remove="$(SpaRoot)**" /> | |
<!-- remove duplicate .json files from Content --> | |
<Content Remove="appsettings.json;appsettings.Development.json;bundleconfig.json" /> | |
<Content Include="appsettings.json" Condition="Exists('appsettings.json')" /> | |
<Content Include="appsettings.Development.json" Condition="Exists('appsettings.Development.json')" /> | |
<Content Include="bundleconfig.json" Condition="Exists('bundleconfig.json')" /> | |
<!-- remove .ts files from None, they should be in TypeScriptCompile instead --> | |
<None Remove="**/*.ts" /> | |
</ItemGroup> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment