patbef-Simulator/Simulator/App_Start/BundleConfig.cs

16 lines
434 B
C#
Raw Permalink Normal View History

2024-01-29 16:28:09 +01:00
using System.Web;
using System.Web.Optimization;
namespace Simulator
{
public class BundleConfig
{
// Weitere Informationen zur Bündelung finden Sie unter https://go.microsoft.com/fwlink/?LinkId=301862.
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/style.css"));
}
}
}