2 implementations of RunAsync
Microsoft.DotNet.ApiDiff (2)
FileOutputDiffGenerator.cs (1)
90
public async Task
RunAsync
(CancellationToken cancellationToken)
MemoryOutputDiffGenerator.cs (1)
88
public 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)
64
await generator.
RunAsync
(CancellationToken.None);
Diff.Disk.Tests.cs (6)
97
await generator.
RunAsync
(CancellationToken.None);
255
await generator.
RunAsync
(CancellationToken.None);
286
await generator.
RunAsync
(CancellationToken.None);
376
await generator.
RunAsync
(CancellationToken.None);
401
await generator.
RunAsync
(CancellationToken.None);
440
await generator.
RunAsync
(CancellationToken.None);
Microsoft.DotNet.ApiDiff.Tool (1)
Program.cs (1)
202
return diffGenerator.
RunAsync
(cancellationToken);