Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Engine/SpecialVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ static SpecialVars()
internal const string ProgressPreference = "ProgressPreference";
internal const string InformationPreference = "InformationPreference";
internal const string ErrorView = "ErrorView";
internal const string PSNativeCommandUseErrorActionPreference = "PSNativeCommandUseErrorActionPreference";

internal static readonly string[] PreferenceVariables = new string[]
{
Expand All @@ -103,7 +104,8 @@ static SpecialVars()
ConfirmPreference,
ProgressPreference,
InformationPreference,
ErrorView
ErrorView,
PSNativeCommandUseErrorActionPreference,
};

internal static readonly Type[] PreferenceVariableTypes = new Type[]
Expand All @@ -117,6 +119,7 @@ static SpecialVars()
/* ProgressPreference */ typeof(Enum),
/* InformationPreference */ typeof(ActionPreference),
/* ErrorView */ typeof(Enum), //ErrorView type not available on PS3
/* PSNativeCommandUseErrorActionPreference */ typeof(bool),
};

internal enum AutomaticVariable
Expand Down