Fixed TryFindProxyDataByTypeName (#30)

* pnp

* .

* .

* okee

* ns

* .

* o

* .

* ,

* x

* t

* co

* .

* r

* CastTo
This commit is contained in:
Stef Heyenrath
2022-02-06 11:14:14 +01:00
committed by GitHub
parent 9024b5f42c
commit b995ac3912
35 changed files with 2361 additions and 157 deletions
@@ -0,0 +1,9 @@
namespace ProxyInterfaceSourceGenerator.Models;
internal record ConstraintInfo(string Type, List<string> Items)
{
public override string ToString()
{
return Items.Any() ? $" where {Type} : {string.Join(", ", Items)}" : string.Empty;
}
}
@@ -5,8 +5,9 @@ internal record ProxyData
string Namespace,
string ShortInterfaceName,
string FullInterfaceName,
string RawTypeName,
string TypeName,
string FullRawTypeName,
string ShortTypeName,
string FullTypeName,
List<string> Usings,
bool ProxyBaseClasses
);