Answers for "ASP.NET 5 where to add bundleConfig.cs"

C#
0

bundle.config in mvc is missing

using System.Web.Optimization;

protected void Application_Start()
{
    AreaRegistration.RegisterAllAreas();
    RouteConfig.RegisterRoutes(RouteTable.Routes);
    BundleConfig.RegisterBundles(BundleTable.Bundles);
}
Posted by: Guest on June-19-2020
0

bundle.config in mvc is missing

Install-Package Microsoft.AspNet.Web.Optimization
Posted by: Guest on June-19-2020

C# Answers by Framework

Browse Popular Code Answers by Language