69fa995982
* . * . * pnp * ok * compiles * ? * e * set * .ToArray() * n * ... * ok * pnp * . * . * mapster
15 lines
484 B
C#
15 lines
484 B
C#
using Microsoft.CodeAnalysis;
|
|
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|
|
|
namespace ProxyInterfaceSourceGenerator.Models;
|
|
|
|
internal record Context
|
|
{
|
|
public GeneratorExecutionContext GeneratorExecutionContext { get; init; }
|
|
|
|
// public List<ContextData> GeneratedData { get; } = new List<ContextData>();
|
|
|
|
public IDictionary<InterfaceDeclarationSyntax, ProxyData> Candidates { get; init; } = default!;
|
|
|
|
public Dictionary<string, string> ReplacedTypes { get; } = new();
|
|
} |