fixing my bullshit
This commit is contained in:
parent
2397f3cca9
commit
9d822a80f2
@ -35,27 +35,27 @@
|
||||
|
||||
switch (argSplit[0].ToLower())
|
||||
{
|
||||
case "OutputFolderName".ToLower():
|
||||
case "outputfoldername":
|
||||
{
|
||||
outputFolderPath = argSplit[1];
|
||||
break;
|
||||
}
|
||||
case "SourceFolderPath".ToLower():
|
||||
case "sourcefolderpath":
|
||||
{
|
||||
sourceFolderPath = argSplit[1];
|
||||
break;
|
||||
}
|
||||
case "TargetFolderPath".ToLower():
|
||||
case "targetfolderpath":
|
||||
{
|
||||
targetFolderPath = argSplit[1];
|
||||
break;
|
||||
}
|
||||
case "AutoZip".ToLower():
|
||||
case "autozip":
|
||||
{
|
||||
autoZip = bool.Parse(argSplit[1]);
|
||||
break;
|
||||
}
|
||||
case "AutoClose".ToLower():
|
||||
case "autoclose":
|
||||
{
|
||||
autoClose = bool.Parse(argSplit[1]);
|
||||
break;
|
||||
|
@ -4,8 +4,8 @@
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
||||
<Nullable>enable</Nullable>
|
||||
<AssemblyVersion>2.7</AssemblyVersion>
|
||||
<FileVersion>2.7</FileVersion>
|
||||
<AssemblyVersion>2.8</AssemblyVersion>
|
||||
<FileVersion>2.8</FileVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -99,7 +99,7 @@ namespace PatcherUtils
|
||||
ProcessStartInfo procInfo = new ProcessStartInfo()
|
||||
{
|
||||
FileName = SevenZExePath,
|
||||
Arguments = $"a {DestinationPath} {SourcePath}"
|
||||
Arguments = $"a -mm=LZMA {DestinationPath} {SourcePath}"
|
||||
};
|
||||
|
||||
Process.Start(procInfo);
|
||||
|
Loading…
x
Reference in New Issue
Block a user