Skip to content

Commit f571150

Browse files
authored
Merge pull request #531 from mjcheetham/cmdline
Update System.CommandLine to 2.0.0-beta1.21216.1
2 parents 2d845e2 + 179cd3b commit f571150

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/shared/Core.UI/HelperApplication.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ private void OnException(Exception ex, InvocationContext invocationContext)
4949
WriteException(ex);
5050
}
5151

52-
invocationContext.ResultCode = -1;
52+
invocationContext.ExitCode = -1;
5353
}
5454

5555
private bool WriteException(Exception ex)

src/shared/Core/Application.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ private void OnException(Exception ex, InvocationContext invocationContext)
128128
WriteException(ex);
129129
}
130130

131-
invocationContext.ResultCode = -1;
131+
invocationContext.ExitCode = -1;
132132
}
133133

134134
private bool WriteException(Exception ex)

src/shared/Core/Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
2121
<PackageReference Include="Microsoft.Identity.Client" Version="4.37.0" />
2222
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="2.19.2" />
23-
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20574.7" />
23+
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21216.1" />
2424
</ItemGroup>
2525

2626
</Project>

0 commit comments

Comments
 (0)