mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-24 07:09:42 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
29 lines
1.2 KiB
C#
29 lines
1.2 KiB
C#
namespace SabreTools.Data.Models.WiseInstaller.Actions
|
|
{
|
|
/// <summary>
|
|
/// Set Files/Buffers
|
|
///
|
|
/// This action sets the FILES= and BUFFERS= lines in Config.sys. If either is currently
|
|
/// lower than the minimum specified in this action, it is increased to the specified value. If
|
|
/// either is already greater than the minimum specified in this action, it is not changed.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This action is called through Call DLL Function and is mapped to "f21".
|
|
/// </remarks>
|
|
/// <see href="https://www.manualslib.com/manual/404969/Symantec-Wisescript-Editor-8-0-Reference-For-Wise-Package-Studio-V1-0.html"/>
|
|
public class SetFilesBuffers : FunctionData
|
|
{
|
|
/// <summary>
|
|
/// Minimum files to be specfied in FILES= in CONFIG.SYS
|
|
/// </summary>
|
|
/// <remarks>Blank means leave unchanged</remarks>
|
|
public string? MinimumFiles { get; set; }
|
|
|
|
/// <summary>
|
|
/// Minimum buffers to be specfied in BUFFERS= in CONFIG.SYS
|
|
/// </summary>
|
|
/// <remarks>Blank means leave unchanged</remarks>
|
|
public string? MinimumBuffers { get; set; }
|
|
}
|
|
}
|