临河任务调度
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 line
324B

  1. using Volo.Abp.Bundling;
  2. namespace Himp.TaskScheduling.Blazor.Host.Client;
  3. public class TaskSchedulingBlazorHostBundleContributor : IBundleContributor
  4. {
  5. public void AddScripts(BundleContext context)
  6. {
  7. }
  8. public void AddStyles(BundleContext context)
  9. {
  10. context.Add("main.css", true);
  11. }
  12. }