Adam Sitnik

Results 310 comments of Adam Sitnik
trafficstars

With our recent changes (#2033, #1987), it's possible. @3geek14 example: ```cs private static int Main(string[] args) { Option fakeOption = new("--fake-flag"); fakeOption.Description = "this is fake"; fakeOption.Validators.Add(result => { if...

> Do you know if there's also been any way added to ensure that certain options are validated (or at least type-checked) before other options? No such changes were made,...

fixed by #2073 https://github.com/dotnet/command-line-api/blob/22905db23895750c908bdb8948e9c5749aa34276/src/System.CommandLine/Command.cs#L87-L91 https://github.com/dotnet/command-line-api/blob/22905db23895750c908bdb8948e9c5749aa34276/src/System.CommandLine/Option.cs#L101-L105

Middleware has been removed in https://github.com/dotnet/command-line-api/pull/2100, for more details please refer to https://github.com/dotnet/command-line-api/issues/2071

Hi @Besen-Zeng > I installed the .net 7 SDK(64bit) , then typed " dotnet " in the Command prompt, Have you started a new terminal window after or before running...

Hi @ckyiamah Please excuse me, but I am not familiar enough with docker to provide help. I've googled the text error and got two following results: https://stackoverflow.com/questions/72334044/the-connection-to-the-server-localhost8080-was-refused-did-you-specify-the-r https://discuss.kubernetes.io/t/the-connection-to-the-server-localhost-8080-was-refused-did-you-specify-the-right-host-or-port/1464/5 Could you...

I don't understand one thing: in #76585 @steveisok has disabled this test by applying following attribute: ```cs [ActiveIssue("https://github.com/dotnet/runtime/issues/76140", TestPlatforms.LinuxBionic)] ``` but it keeps failing for `Mono_Release_LinuxBionic-Windows.10.Amd64.Android.Open` Why is that?

> Am I correct in observing that this test only fails in `linux-Debug-x64-mono_interpreter_release`? @steveisok If this is the case then we need some help from Mono Team.

The following two CI legs have been failing due to timeouts for a at least two weeks: - `Libraries Test Run release mono linux x64 Debug` - `Libraries Test Run...

> "'overlapped' was not allocated by this ThreadPoolBoundHandle instance" This is something very new to me Oo