1 write to HostOutputs
Microsoft.CodeAnalysis (1)
SourceGeneration\RunResults.cs (1)
99
this.
HostOutputs
= hostOutputs;
6 references to HostOutputs
Microsoft.CodeAnalysis (3)
SourceGeneration\IncrementalContexts.cs (3)
145
/// via <see cref="GeneratorRunResult.
HostOutputs
"/> and it is up to the host to decide how to use them.
158
/// via <see cref="GeneratorRunResult.
HostOutputs
"/> and it is up to the host to decide how to use them.
407
/// here are made available via the <see cref="GeneratorRunResult.
HostOutputs
"/> collection, and it is up the host to
Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler (1)
GeneratorExtensions.cs (1)
35
public static ImmutableArray<(string Key, string Value)> GetHostOutputs(this GeneratorRunResult runResult) => runResult.
HostOutputs
.ToImmutableArray().SelectAsArray(a => (a.Key, a.Value.ToString() ?? ""));
rzc (2)
RazorSourceGeneratorHostOutput.cs (2)
14
/// grant, and <see cref="GeneratorRunResult.
HostOutputs
"/> is an experimental API; both are isolated to
22
if (result.
HostOutputs
.TryGetValue(nameof(RazorGeneratorResult), out var value) &&