我有一个基于默认模板构建的简单 ASP.NET Core 站点。我需要更新 site.min.css,因为 site.css 已经更新。
这是在 Jetbrains Rider 中的 OS X 上。MSDN 文档说(在 Windows 上!)只需重建项目就会更新缩小的文件。
bundleconfig.json 文件没有改变:
// Configure bundling and minification for the project.
// More info at https://go.microsoft.com/fwlink/?LinkId=808241
[
{
"outputFileName": "wwwroot/css/site.min.css",
// An array of relative input file paths. Globbing patterns supported
"inputFiles": [
"wwwroot/css/site.css"
]
},
{
"outputFileName": "wwwroot/js/site.min.js",
"inputFiles": [
"wwwroot/js/site.js"
],
// Optionally specify minification options
"minify": {
"enabled": true,
"renameLocals": true
},
// Optionally generate .map file
"sourceMap": false
}
]
如何从 IDE 或 CLI(命令行界面)更新缩小的文件?