Apply required changes
This commit is contained in:
parent
376f3edfd7
commit
24b0930381
1 changed files with 5 additions and 5 deletions
|
@ -9,31 +9,31 @@ namespace OpenTK.Rewrite
|
||||||
public class Options
|
public class Options
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Set the path to the target assembly that should be rewritten.
|
/// Gets or sets the path to the target assembly that should be rewritten.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Option('a', "assembly", Required = true,
|
[Option('a', "assembly", Required = true,
|
||||||
HelpText = "The path to the target assembly that should be rewritten.")]
|
HelpText = "The path to the target assembly that should be rewritten.")]
|
||||||
public string TargetAssembly { get; set; }
|
public string TargetAssembly { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Set the path to the strong name key which should be used to sign or resign the assembly.
|
/// Get or sets the path to the strong name key which should be used to sign or resign the assembly.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Option('k', "signing-key",
|
[Option('k', "signing-key",
|
||||||
HelpText = "The path to the strong name key which should be used to sign or resign the assembly.")]
|
HelpText = "The path to the strong name key which should be used to sign or resign the assembly.")]
|
||||||
public string StrongNameKey { get; set; }
|
public string StrongNameKey { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Enable calls to GL.GetError(), wrapped around each native call.
|
/// Gets or sets a value indicating whether enable calls to GL.GetError(), wrapped around each native call.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Option('d', "debug", Default = false,
|
[Option('d', "debug", Default = false,
|
||||||
HelpText = "Enable calls to GL.GetError(), wrapped around each native call.")]
|
HelpText = "Enable calls to GL.GetError(), wrapped around each native call.")]
|
||||||
public bool EnableDebugCalls { get; set; }
|
public bool EnableDebugCalls { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Force native calls to use DllImport instead of GetProcAddress.
|
/// Gets or sets a value indicating whether force native calls to use DllImport instead of GetProcAddress.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Option("dllimport", Default = false,
|
[Option("dllimport", Default = false,
|
||||||
HelpText = "Force native calls to use DllImport instead of GetProcAddress.")]
|
HelpText = "Force native calls to use DllImport instead of GetProcAddress.")]
|
||||||
public bool UseDLLImport { get; set; }
|
public bool UseDLLImport { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue