-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathBundlerOptions.cs
More file actions
22 lines (16 loc) · 727 Bytes
/
BundlerOptions.cs
File metadata and controls
22 lines (16 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License
// See the LICENSE file in the project root for more information.
// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone
using System.Text.Json;
namespace BootstrapBlazor.CssBundler;
sealed class BundlerOptions
{
public string? OutputFileName { get; set; }
public List<string> InputFiles { get; set; } = [];
public static List<BundlerOptions> LoadFromConfigFile(string configFile)
{
var json = File.ReadAllText(configFile);
return JsonSerializer.Deserialize<List<BundlerOptions>>(json, JsonSerializerOptions.Web) ?? [];
}
}