2 implementations of RunAsync
Microsoft.DotNet.ApiDiff (2)
FileOutputDiffGenerator.cs (1)
90public async Task RunAsync(CancellationToken cancellationToken)
MemoryOutputDiffGenerator.cs (1)
88public async Task RunAsync(CancellationToken cancellationToken)
13 references to RunAsync
Microsoft.DotNet.ApiDiff (5)
DiffGeneratorFactory.cs (4)
39/// <param name="writeToDisk">If <see langword="true"/>, when calling <see cref="IDiffGenerator.RunAsync"/>, the generated markdown files get written to disk, and no item is added to the <see cref="IDiffGenerator.RunAsync"/> dictionary. If <see langword="false"/>, when calling <see cref="IDiffGenerator.RunAsync"/>, the generated markdown files get added to the <see cref="IDiffGenerator.RunAsync"/> dictionary (with the file path as the dictionary key) and none of them is written to disk. This is meant for testing purposes.</param>
IDiffGenerator.cs (1)
9/// Gets the results of the diff. The key is the assembly name and the value is the diff. This dictionary might get populated after calling <see cref="RunAsync" />, depending on the use case.
Microsoft.DotNet.ApiDiff.Tests (7)
Diff.Base.Tests.cs (1)
64await generator.RunAsync(CancellationToken.None);
Diff.Disk.Tests.cs (6)
97await generator.RunAsync(CancellationToken.None); 255await generator.RunAsync(CancellationToken.None); 286await generator.RunAsync(CancellationToken.None); 376await generator.RunAsync(CancellationToken.None); 401await generator.RunAsync(CancellationToken.None); 440await generator.RunAsync(CancellationToken.None);
Microsoft.DotNet.ApiDiff.Tool (1)
Program.cs (1)
202return diffGenerator.RunAsync(cancellationToken);