问题描述
在vs2017中使用Bower Package Manager面临两个困难
Face two difficulties with bower package manager in vs2017
-
在Visual Studio 2017中,在
bower.json
下找不到任何.bowerrc
文件,那么如何设置目录属性?通过管理Bower软件包UI 安装后,软件包会将文件存储在bower_components
文件夹
In Visual Studio 2017, can not find any
.bowerrc
file underbower.json
, so how to set the directory property? After Installation via Manage Bower Packages UI, packages store files inbower_components
folder
如何使用这些软件包,如VS 2013之类的早期版本一样,在BundleConfig.cs
中编写语法来管理客户端软件包,如下所示.现在在VS 2017中,如何在C#Core 2 ASP.NET MVC项目中使用这些软件包?
How to use those packages, as in previous versions like VS 2013 write syntax in BundleConfig.cs
to manage client packages like below. Now in VS 2017, how to use those packages in a C# Core 2 ASP.NET MVC project?
BundleConfig.cs
:
public class BundleConfig
{
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/bower_components/jquery/dist/jquery.js",
"~/bower_components/jquery-file-upload/js/vendor/jquery.ui.widget.js",
"~/bower_components/jquery-file-upload/js/jquery.fileupload.js",
"~/bower_components/jquery-file-upload/js/jquery.iframe-transport.js"));
}
}
推荐答案
我遇到了同样的问题.
在与bower.json
文件相同的文件夹中,创建名为.bowerrc
的文件.在其中粘贴:
In the same folder as your bower.json
file create the file called .bowerrc
. Inside it paste:
{
"directory": "wwwroot/lib"
}
这篇关于如何在Visual Studio 2017中使用Bower程序包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!