Created
July 25, 2014 15:15
-
-
Save ryanlewis/75880d759580118dbd3e to your computer and use it in GitHub Desktop.
How we add all assets in our Web projects
This file contains 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
<Project> | |
<Target Name="BeforeBuild"> | |
<Exec WorkingDirectory="..\.." Command="powershell.exe .\grunt-build.ps1 -target $(Configuration)" /> | |
<ItemGroup> | |
<Content Include="css\**\*.css" /> | |
<Content Include="js\**\*.js" /> | |
<Content Include="js\**\*.js.map" /> | |
<Content Include="fonts\**\*.*" /> | |
<Content Include="img\**\*.png" /> | |
<Content Include="img\**\*.gif" /> | |
<Content Include="img\**\*.jpg" /> | |
<Content Include="img\**\*.jpeg" /> | |
<Content Include="img\**\*.svg" /> | |
<Content Include="media\**\*.*" /> | |
<Content Include="usync\**\*.config" /> | |
</ItemGroup> | |
</Target> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment