mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
* Add skeleton dotnet project structure * Fix casing in import statement. * Moving tests folder to be a sibling of src. * Update tests to use directory.builds.props and only build necessary frameworks. * Move more test props to directory.build.props * Add AotCompatible flag and .net 8.0 * Rename Tests to UnitTests * Add global.json file * Update publish mapping for unit tests to debug, to reduce build times.
7 lines
454 B
INI
7 lines
454 B
INI
# Suppressing errors for Test projects under dotnet 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
|