Resolved mediator source geenrator conflict with tests
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
namespace LiteCharms.Features;
|
||||
|
||||
public sealed class CancellationTokenProvider : IDisposable
|
||||
{
|
||||
private readonly CancellationTokenSource source = new();
|
||||
|
||||
public CancellationToken Token => source.Token;
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
source.Cancel();
|
||||
source.Dispose();
|
||||
|
||||
GC.SuppressFinalize(this);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user