0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 10:52:19 +01:00

Support nuget contentFiles, used for some project types (#27856)

This commit is contained in:
Jesse Mandel 2018-12-16 07:19:19 -08:00 committed by XhmikosR
parent 4c547f2175
commit 3e519c3726
2 changed files with 6 additions and 0 deletions

View File

@ -24,5 +24,8 @@
<file src="less\**\*.less" target="content\Content\bootstrap" /> <file src="less\**\*.less" target="content\Content\bootstrap" />
<file src="fonts\*.*" target="content\Content\fonts" /> <file src="fonts\*.*" target="content\Content\fonts" />
<file src="dist\js\bootstrap*.js" target="content\Scripts" /> <file src="dist\js\bootstrap*.js" target="content\Scripts" />
<file src="less\**\*.less" target="contentFiles\Content\bootstrap" />
<file src="fonts\*.*" target="contentFiles\Content\fonts" />
<file src="dist\js\bootstrap*.js" target="contentFiles\Scripts" />
</files> </files>
</package> </package>

View File

@ -24,5 +24,8 @@
<file src="dist\css\*.*" target="content\Content" /> <file src="dist\css\*.*" target="content\Content" />
<file src="dist\fonts\*.*" target="content\fonts" /> <file src="dist\fonts\*.*" target="content\fonts" />
<file src="dist\js\bootstrap*.js" target="content\Scripts" /> <file src="dist\js\bootstrap*.js" target="content\Scripts" />
<file src="dist\css\*.*" target="contentFiles\Content" />
<file src="dist\fonts\*.*" target="contentFiles\fonts" />
<file src="dist\js\bootstrap*.js" target="contentFiles\Scripts" />
</files> </files>
</package> </package>