From: VperuS Date: Mon, 20 Nov 2017 04:14:44 +0000 (+0200) Subject: Apply required changes X-Git-Tag: v3.0.0~19^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=24b09303814591dc5dacbba3547c76610b4e4cdb;p=platform%2Fcore%2Fcsapi%2Fopentk.git Apply required changes --- diff --git a/src/Generator.Rewrite/Options.cs b/src/Generator.Rewrite/Options.cs index e325d61..4aeca6c 100644 --- a/src/Generator.Rewrite/Options.cs +++ b/src/Generator.Rewrite/Options.cs @@ -9,31 +9,31 @@ namespace OpenTK.Rewrite public class Options { /// - /// Set the path to the target assembly that should be rewritten. + /// Gets or sets the path to the target assembly that should be rewritten. /// [Option('a', "assembly", Required = true, HelpText = "The path to the target assembly that should be rewritten.")] public string TargetAssembly { get; set; } /// - /// 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. /// [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; } /// - /// 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. /// [Option('d', "debug", Default = false, HelpText = "Enable calls to GL.GetError(), wrapped around each native call.")] public bool EnableDebugCalls { get; set; } /// - /// 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. /// [Option("dllimport", Default = false, HelpText = "Force native calls to use DllImport instead of GetProcAddress.")] public bool UseDLLImport { get; set; } } -} \ No newline at end of file +}