Skip to content

Commit

Permalink
cmdline: update System.CommandLine to 2.0.0-beta1.21216.1
Browse files Browse the repository at this point in the history
Update the System.CommandLine package to 2.0.0-beta1.21216.1 to
hopefully fix some problems with dotnet-suggest registration caused by
Process::UseShellExecute differences between .NET Framework and .NET
(Core).

jonsequitur/command-line-api@ad22b69
dotnet/command-line-api#1254
git-ecosystem#505
  • Loading branch information
mjcheetham authored and ImgBotApp committed Nov 2, 2022
1 parent 6aed335 commit 327887f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/shared/Core.UI/HelperApplication.cs
Expand Up @@ -49,7 +49,7 @@ private void OnException(Exception ex, InvocationContext invocationContext)
WriteException(ex);
}

invocationContext.ResultCode = -1;
invocationContext.ExitCode = -1;
}

private bool WriteException(Exception ex)
Expand Down
2 changes: 1 addition & 1 deletion src/shared/Core/Application.cs
Expand Up @@ -128,7 +128,7 @@ private void OnException(Exception ex, InvocationContext invocationContext)
WriteException(ex);
}

invocationContext.ResultCode = -1;
invocationContext.ExitCode = -1;
}

private bool WriteException(Exception ex)
Expand Down
2 changes: 1 addition & 1 deletion src/shared/Core/Core.csproj
Expand Up @@ -20,7 +20,7 @@
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.37.0" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="2.19.2" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20574.7" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21216.1" />
</ItemGroup>

</Project>

0 comments on commit 327887f

Please sign in to comment.