1 write to HostOutputs
Microsoft.CodeAnalysis (1)
SourceGeneration\RunResults.cs (1)
99
this.
HostOutputs
= hostOutputs;
4 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() ?? ""));