You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The current implementation relies on ISystemClock for managing time-related operations. However, with the introduction of native time support in .NET 8, there's an opportunity to enhance the system by utilizing the new native time capabilities.
Describe the solution you'd like
Update the codebase to replace the usage of ISystemClock with the native time support introduced in .NET 8. This will involve refactoring the relevant sections of the code to leverage the new time functionalities provided by the .NET 8 framework.
Describe alternatives you've considered
An alternative could be to continue using ISystemClock, but considering that .NET 8 provides native time support, it makes sense to migrate to the native solution for improved performance and consistency across the codebase.
Additional context
The adoption of native time in .NET 8 can bring alignment with the latest advancements in the .NET framework. It's essential to test and validate the changes thoroughly to ensure compatibility and reliability across different scenarios.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
The current implementation relies on
ISystemClock
for managing time-related operations. However, with the introduction of native time support in .NET 8, there's an opportunity to enhance the system by utilizing the new native time capabilities.Describe the solution you'd like
Update the codebase to replace the usage of
ISystemClock
with the native time support introduced in .NET 8. This will involve refactoring the relevant sections of the code to leverage the new time functionalities provided by the .NET 8 framework.Describe alternatives you've considered
An alternative could be to continue using
ISystemClock
, but considering that .NET 8 provides native time support, it makes sense to migrate to the native solution for improved performance and consistency across the codebase.Additional context
The adoption of native time in .NET 8 can bring alignment with the latest advancements in the .NET framework. It's essential to test and validate the changes thoroughly to ensure compatibility and reliability across different scenarios.
The text was updated successfully, but these errors were encountered: