-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BLOCKED] System.CommandLine update #111864
base: main
Are you sure you want to change the base?
Conversation
…uild 20250122.1 Microsoft.SourceBuild.Intermediate.command-line-api , System.CommandLine From Version 0.1.552801 -> To Version 0.1.607201
Tagging subscribers to this area: @dotnet/area-system-console |
if (!Version.TryParse(result.Tokens.Single().Value, out Version? parsed)) | ||
{ | ||
result.AddError($"'{result.Tokens[0].Value}' is not a valid Version"); | ||
return default; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: presumably parsed here is already default / null, so this line could just be removed?
I am adding NO-MERGE to make sure it's not merged before Preview 1 snap (VMR could suffer as most of our repos have dependency to S.CL) |
/azp list |
/azp run runtime-libraries stress-ssl |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run runtime-libraries stress-http |
Azure Pipelines successfully started running 1 pipeline(s). |
…cts do not import the repo infrastructure intentionally
# Conflicts: # src/coreclr/tools/InjectResource/Program.cs
/azp run runtime-libraries stress-ssl |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run runtime-libraries stress-http |
Azure Pipelines successfully started running 1 pipeline(s). |
…estoreSources to specify required feed
/azp run runtime-libraries stress-http |
1 similar comment
/azp run runtime-libraries stress-http |
Azure Pipelines successfully started running 1 pipeline(s). |
1 similar comment
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run runtime-libraries stress-http |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run runtime-libraries stress-ssl |
Azure Pipelines successfully started running 1 pipeline(s). |
@@ -3,12 +3,14 @@ | |||
<OutputType>Exe</OutputType> | |||
<TargetFramework>$(NetCoreAppCurrent)</TargetFramework> | |||
<Nullable>enable</Nullable> | |||
<!-- the custom feed is required for System.CommandLine --> | |||
<RestoreSources>https://api.nuget.org/v3/index.json;https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries/nuget/v3/index.json</RestoreSources> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the custom feed is required
We already have:
Line 18 in 4008f82
<add key="dotnet-libraries" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries/nuget/v3/index.json" /> |
was it failing without this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The stress projects disable all settings that come from the root of the repo on purpose.
Draft Pull Request was automatically closed for 30 days of inactivity. Please let us know if you'd like to reopen it. |
Edit: this PR is blocked until NuGet/NuGet.Client#6236 gets merged (ETA is April).
This PR consists of three changes: