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);
}
///