mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
* Add a minimum console demo app * Remove hardcoded values from sample. * Make console project .net 9.0 only. * Move minimum console demo to demo folder. * Fix framework issue with demo project. * Undo unintended commit. * Address PR comments * Fix build issue. * Address PR Comments * Rename Agent to AIAgent in new console app.
9 lines
675 B
INI
9 lines
675 B
INI
# Suppressing errors for Sample projects under dotnet/samples folder
|
|
[*.cs]
|
|
dotnet_diagnostic.CA2007.severity = none # Do not directly await a Task
|
|
dotnet_diagnostic.CS1591.severity = none # Missing XML comment for publicly visible type or member
|
|
dotnet_diagnostic.IDE1006.severity = warning # Naming rule violations
|
|
dotnet_diagnostic.VSTHRD111.severity = none # Use .ConfigureAwait(bool) is hidden by default, set to none to prevent IDE from changing on autosave
|
|
dotnet_diagnostic.CA1716.severity = none # Add summary to documentation comment.
|
|
dotnet_diagnostic.CA2000.severity = none # Call System.IDisposable.Dispose on object before all references to it are out of scope
|