-
Notifications
You must be signed in to change notification settings - Fork 10.2k
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
Fix handling for more method signature types #60464
Conversation
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.
Copilot reviewed 8 out of 8 changed files in this pull request and generated 1 comment.
...Api/test/Microsoft.AspNetCore.OpenApi.SourceGenerators.Tests/AdditionalTextsTests.Schemas.cs
Outdated
Show resolved
Hide resolved
@BrennanConroy For your review: found some issues while bug bashing the XML doc support implementation. |
@@ -9,7 +9,7 @@ namespace Microsoft.AspNetCore.OpenApi.Build.Tests; | |||
|
|||
public class GenerateAdditionalXmlFilesForOpenApiTests | |||
{ | |||
private static readonly TimeSpan _defaultProcessTimeout = TimeSpan.FromSeconds(45); | |||
private static readonly TimeSpan _defaultProcessTimeout = TimeSpan.FromSeconds(120); |
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.
Tiny nit:
private static readonly TimeSpan _defaultProcessTimeout = TimeSpan.FromSeconds(120); | |
private static readonly TimeSpan _defaultProcessTimeout = TimeSpan.FromMinutes(2); |
Addresses #60417.