最近,我使用ASP.NET Core开发我的项目.我有一个这样的问题:我想在我的View页面中引用很多css和js文件,所以如果它存在一个可以将一些css或js组合成一个的工具.就像下面这样
<link href="~/Content/css/a1.css" rel="stylesheet" asp-append-version="true" />
<link href="~/Content/css/a2.css" rel="stylesheet" asp-append-version="true" />
我想结果是:
<link href="~/bundles/css/a.min.css" rel="stylesheet" asp-append-version="true" />
然后我在谷歌搜索它,我得到了工具Bundler& Minifier,Visual Studio中的扩展.我想知道如何在我的项目中编写bundleconfig.json文件?以及如何使用它来组合css或js文件?
最佳答案 您可以通过多种方式使用Bundler& asp.net核心项目中的Minifier.最常见的是使用BundlerMinifier.Core工具
要使用BundlerMinifier.Core工具,只需在现有project.json文件的tools部分中添加对BundlerMinifier.Core的引用,如下所示:
"tools": {
"BundlerMinifier.Core": "2.0.238",
"Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview2-final",
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
}
添加该工具后,您需要在项目中添加一个bundleconfig.json文件,该文件将用于配置您希望包含在捆绑包中的文件.最小配置如下:
[
{
"outputFileName": "wwwroot/css/site.min.css",
"inputFiles": [
"wwwroot/css/site.css"
]
},
{
"outputFileName": "wwwroot/js/site.min.js",
"inputFiles": [
"wwwroot/js/site.js"
],
"minify": {
"enabled": true,
"renameLocals": true
},
"sourceMap": false
},
{
"outputFileName": "wwwroot/js/semantic.validation.min.js",
"inputFiles": [
"wwwroot/js/semantic.validation.js"
],
"minify": {
"enabled": true,
"renameLocals": true
}
}
]
配置捆绑包后,可以通过以下命令捆绑和缩小现有文件:
dotnet bundle
Visual Studio还有一个Bundler & Minifier extension可用于帮助您捆绑和缩小文件.