-
Notifications
You must be signed in to change notification settings - Fork 935
.NET: Suppressed CS8002 for Anthropic package #2461
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: Suppressed CS8002 for Anthropic package #2461
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 suppresses the CS8002 compiler warning for the Microsoft.Agents.AI.Anthropic project. CS8002 indicates that a referenced assembly does not have a strong name. This is necessary because the Anthropic NuGet package is not strong-named, and the project has TreatWarningsAsErrors set to true globally.
Key Changes:
- Added
CS8002to theNoWarnproperty in the Anthropic project file
No description provided.