Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
rkttu committed Dec 30, 2024
2 parents 406ae7f + 821d4fa commit 49a5f9b
Show file tree
Hide file tree
Showing 28 changed files with 3,194 additions and 3,505 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
4 changes: 2 additions & 2 deletions src/Spork/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
[assembly: AssemblyProduct("TableCloth")]
[assembly: AssemblyCopyright("(c) rkttu.com, 2021")]
[assembly: AssemblyTrademark("TableCloth")]
[assembly: AssemblyVersion("1.13.2.0")]
[assembly: AssemblyFileVersion("1.13.2.0")]
[assembly: AssemblyVersion("1.14.0.0")]
[assembly: AssemblyFileVersion("1.14.0.0")]
[assembly: Guid("36e7b617-ca94-4ecb-ad65-39fe94ce265b")]
[assembly: ComVisible(true)]

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 49a5f9b

Please sign in to comment.