我有一个通用的解决方案MyApp。在这个中,我有超过2个项目,如MyCommon,MyInclude,MyWeb。我想将样式表,脚本放在一个公共项目中,并在其他项目中引用它们。现在我通过在BundleConfig中添加它们来在MyWeb项目中引用我的样式表,如下所示:
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js",
"~/Scripts/respond.js"));
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/login.css",
"~/Content/site.css"));
}
所以,现在如果我将这些login.css,site.css放在MyApp解决方案中的MyInclude项目中,并将它们添加到此MyWeb项目中。我怎样才能做到这一点 ? 任何人都可以帮我这样做.. 提前谢谢..