We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da8b261 commit 6a99902Copy full SHA for 6a99902
1 file changed
src/tools/BootstrapBlazor.CssBundler/BundlerOptions.cs
@@ -13,10 +13,10 @@ sealed class BundlerOptions
13
14
public List<string> InputFiles { get; set; } = [];
15
16
- public static BundlerOptions LoadFromConfigFile(string configFile)
+ public static List<BundlerOptions> LoadFromConfigFile(string configFile)
17
{
18
var json = File.ReadAllText(configFile);
19
20
- return JsonSerializer.Deserialize<BundlerOptions>(json, JsonSerializerOptions.Web) ?? new();
+ return JsonSerializer.Deserialize<List<BundlerOptions>>(json, JsonSerializerOptions.Web) ?? new();
21
}
22
0 commit comments