Skip to content

Commit 29a4add

Browse files
committed
⬆️ Update installer dependencies
refs oleg-shilo/wixsharp#1887
1 parent 0c11124 commit 29a4add

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

HTCC-Installer/HTCC-Installer.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
</PropertyGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="System.CommandLine" Version="2.0.0-beta6.25358.103" />
22-
<PackageReference Include="WixSharp.Core" Version="2.7.4" />
21+
<PackageReference Include="System.CommandLine" Version="2.0.2" />
22+
<PackageReference Include="WixSharp.Core" Version="2.12.1" />
2323
</ItemGroup>
2424

2525
</Project>

HTCC-Installer/Program.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
};
4040
command.SetAction(parseResult => CreateInstaller(parseResult.GetValue(inputRootArg)!,
4141
parseResult.GetValue(signingKeyArg), parseResult.GetValue(timestampServerArg), parseResult.GetValue(stampFileArg)));
42-
return await new CommandLineConfiguration(command).InvokeAsync(args);
42+
43+
return await command.Parse(args).InvokeAsync();
4344

4445
async Task SetProjectVersionFromJson(ManagedProject project, DirectoryInfo inputRoot)
4546
{

0 commit comments

Comments
 (0)