From bb5ee2722dfedbfacd11595814b88d591d31bf25 Mon Sep 17 00:00:00 2001 From: Quoc Truong Date: Tue, 24 Nov 2015 15:03:38 -0800 Subject: [PATCH] Switch profile and configuration --- Engine/Commands/InvokeScriptAnalyzerCommand.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Engine/Commands/InvokeScriptAnalyzerCommand.cs b/Engine/Commands/InvokeScriptAnalyzerCommand.cs index d00a1b3ed..5136555ed 100644 --- a/Engine/Commands/InvokeScriptAnalyzerCommand.cs +++ b/Engine/Commands/InvokeScriptAnalyzerCommand.cs @@ -159,15 +159,15 @@ public SwitchParameter SuppressedOnly /// /// Returns path to the file that contains user profile for ScriptAnalyzer /// - [Alias("Configuration")] + [Alias("Profile")] [Parameter(Mandatory = false)] [ValidateNotNull] - public string Profile + public string Configuration { - get { return profile; } - set { profile = value; } + get { return configuration; } + set { configuration = value; } } - private string profile; + private string configuration; #endregion Parameters @@ -188,7 +188,7 @@ protected override void BeginProcessing() this.excludeRule, this.severity, this.suppressedOnly, - this.profile); + this.configuration); } ///