Apply required changes

This commit is contained in:
VperuS 2017-11-20 06:14:44 +02:00 committed by GitHub
parent 376f3edfd7
commit 24b0930381
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,28 +9,28 @@ namespace OpenTK.Rewrite
public class Options
{
/// <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>
[Option('a', "assembly", Required = true,
HelpText = "The path to the target assembly that should be rewritten.")]
public string TargetAssembly { get; set; }
/// <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>
[Option('k', "signing-key",
HelpText = "The path to the strong name key which should be used to sign or resign the assembly.")]
public string StrongNameKey { get; set; }
/// <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>
[Option('d', "debug", Default = false,
HelpText = "Enable calls to GL.GetError(), wrapped around each native call.")]
public bool EnableDebugCalls { get; set; }
/// <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>
[Option("dllimport", Default = false,
HelpText = "Force native calls to use DllImport instead of GetProcAddress.")]