-
Notifications
You must be signed in to change notification settings - Fork 942
.NET: Temporarily suppress CS8002 error #2462
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
.NET: Temporarily suppress CS8002 error #2462
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.
Pull request overview
This PR centralizes the suppression of the CS8002 compiler warning by moving it from a project-specific configuration to a global setting that applies to all .NET projects in the repository.
- Moved CS8002 warning suppression from Microsoft.Agents.AI.Anthropic project file to the global Directory.Build.props
- This applies the suppression repository-wide rather than just to the Anthropic project
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| dotnet/Directory.Build.props | Added CS8002 to the global NoWarn list, making the warning suppression apply to all .NET projects in the repository |
| dotnet/src/Microsoft.Agents.AI.Anthropic/Microsoft.Agents.AI.Anthropic.csproj | Removed project-specific CS8002 suppression as it's now handled globally |
No description provided.