Skip to content

Commit

Permalink
IE Mode 지원을 명시적으로 제거함
Browse files Browse the repository at this point in the history
  • Loading branch information
rkttu committed Dec 4, 2024
1 parent 89c8c9f commit bcffdd3
Show file tree
Hide file tree
Showing 21 changed files with 3,167 additions and 3,323 deletions.
6 changes: 0 additions & 6 deletions src/Spork/Components/Implementations/CommandLineArguments.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ public CommandLineArguments()
_installRaiDriveOption = new Option<bool?>(ConstantStrings.TableCloth_Switch_InstallRaiDrive)
{ IsRequired = false, Arity = ArgumentArity.Zero, Description = UIStringResources.TableCloth_Switch_InstallRaiDrive_Help, };

_enableIEModeOption = new Option<bool?>(ConstantStrings.TableCloth_Switch_EnableIEMode)
{ IsRequired = false, Arity = ArgumentArity.Zero, Description = UIStringResources.TableCloth_Switch_EnableIEMode_Help, };

_dryRunOption = new Option<bool>(ConstantStrings.TableCloth_Switch_DryRun)
{ IsRequired = false, Arity = ArgumentArity.Zero, Description = UIStringResources.TableCloth_Switch_DryRun_Help, };

Expand All @@ -53,7 +50,6 @@ public CommandLineArguments()
_installAdobeReaderOption,
_installHancomOfficeViewerOption,
_installRaiDriveOption,
_enableIEModeOption,
_dryRunOption,
_simulateFailureOption,
_siteIdListArgument,
Expand All @@ -80,7 +76,6 @@ public CommandLineArguments()
private readonly Option<bool?> _installAdobeReaderOption;
private readonly Option<bool?> _installHancomOfficeViewerOption;
private readonly Option<bool?> _installRaiDriveOption;
private readonly Option<bool?> _enableIEModeOption;
private readonly Option<bool> _dryRunOption;
private readonly Option<bool> _simulateFailureOption;
private readonly Argument<string[]> _siteIdListArgument;
Expand Down Expand Up @@ -122,7 +117,6 @@ public CommandLineArgumentModel GetCurrent()
installAdobeReader: parseResult.GetValueForOption(_installAdobeReaderOption),
installHancomOfficeViewer: parseResult.GetValueForOption(_installHancomOfficeViewerOption),
installRaiDrive: parseResult.GetValueForOption(_installRaiDriveOption),
enableInternetExplorerMode: parseResult.GetValueForOption(_enableIEModeOption),
showCommandLineHelp: parseResult.HasOption(_helpOption),
showVersionHelp: parseResult.HasOption(_versionOption),
dryRun: parseResult.GetValueForOption(_dryRunOption),
Expand Down
1 change: 0 additions & 1 deletion src/Spork/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ private static void ConfigureServices(IServiceCollection services)
.AddSingleton<IStepsPlayer, StepsPlayer>()
.AddKeyedSingleton<IStep, ConfigAhnLabSafeTransactionStep>(nameof(ConfigAhnLabSafeTransactionStep))
.AddKeyedSingleton<IStep, EdgeExtensionInstallStep>(nameof(EdgeExtensionInstallStep))
.AddKeyedSingleton<IStep, EnableInternetExplorerModeStep>(nameof(EnableInternetExplorerModeStep))
.AddKeyedSingleton<IStep, OpenWebSiteStep>(nameof(OpenWebSiteStep))
.AddKeyedSingleton<IStep, PackageInstallStep>(nameof(PackageInstallStep))
.AddKeyedSingleton<IStep, PowerShellScriptRunStep>(nameof(PowerShellScriptRunStep))
Expand Down
1 change: 0 additions & 1 deletion src/Spork/Spork.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,6 @@
<Compile Include="Steps\StepBase.cs" />
<Compile Include="Steps\Implementations\ConfigAhnLabSafeTransactionStep.cs" />
<Compile Include="Steps\Implementations\EdgeExtensionInstallStep.cs" />
<Compile Include="Steps\Implementations\EnableInternetExplorerModeStep.cs" />
<Compile Include="Steps\IStep.cs" />
<Compile Include="Steps\Implementations\OpenWebSiteStep.cs" />
<Compile Include="Steps\Implementations\PackageInstallStep.cs" />
Expand Down
51 changes: 0 additions & 51 deletions src/Spork/Steps/Implementations/EnableInternetExplorerModeStep.cs

This file was deleted.

Loading

0 comments on commit bcffdd3

Please sign in to comment.