-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDownloadOptions.cs
28 lines (24 loc) · 1.07 KB
/
DownloadOptions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
namespace MinecraftJars.Core.Downloads;
public class DownloadOptions
{
/// <summary>
/// Define if the plugin should use an online query to get the file size of the JAR if necessary
/// Note: Can in increase load time for the plugin
/// </summary>
public bool LoadFilesize { get; set; } = true;
/// <summary>
/// In case the plugin needs to build the JAR instead of providing download information
/// it can be configured whether the plugin should actually execute the build
/// Note: It will increase execution time for the plugin dramatically
/// </summary>
public bool BuildJar { get; set; } = false;
/// <summary>
/// If for the building purpose JAVA is required the path to the JAVA binary can be provided
/// In case it is not provided the PATH environment variable will be utilized
/// </summary>
public string JavaBin { get; set; } = "java";
/// <summary>
/// Optional callback function to show output of the build execution
/// </summary>
public Action<string>? BuildJarOutput;
}