-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip; Add support for async database calls, requiring widespread use o…
…f async/await. Refactor to use async/await for improved performance Converted synchronous methods to asynchronous across multiple files to enhance performance and responsiveness. Updated method signatures to return Task or Task<T> and used await for asynchronous operations. Added using System.Threading.Tasks; to support async programming. Modified test methods to be asynchronous. Improved handling of long-running operations, particularly I/O-bound tasks, to prevent blocking the main thread. Added GlobalSuppressions.cs to manage platform compatibility warnings for System.Drawing.
- Loading branch information
1 parent
64f7141
commit 9b0fe2e
Showing
265 changed files
with
9,490 additions
and
9,143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// This file is used by Code Analysis to maintain SuppressMessage | ||
// attributes that are applied to this project. | ||
// Project-level suppressions either have no target or are given | ||
// a specific target and scoped to a namespace, type, member, etc. | ||
|
||
using System.Diagnostics.CodeAnalysis; | ||
|
||
#if !DRAWINGCOMPAT | ||
[assembly: SuppressMessage("Interoperability", "CA1416:Validate platform compatibility", | ||
Justification = "System.Drawing usage is intentional")] | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.