Add support for using a simple type-name (#22)

This commit is contained in:
Stef Heyenrath
2021-08-02 11:49:41 +02:00
committed by GitHub
parent a778c35728
commit 7baf050c12
10 changed files with 75 additions and 23 deletions
@@ -1,4 +1,4 @@
namespace ProxyInterfaceConsumer
namespace DifferentNamespace
{
public class Address
{
@@ -1,6 +1,10 @@
namespace ProxyInterfaceConsumer
using DifferentNamespace;
using System;
using System.Linq;
namespace ProxyInterfaceConsumer
{
// [ProxyInterfaceGenerator.Proxy(typeof(ProxyInterfaceConsumer.Address))]
[ProxyInterfaceGenerator.Proxy(typeof(Address))]
public partial interface IAddress
{
}
@@ -1,4 +1,5 @@
using System.Collections.Generic;
using DifferentNamespace;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace ProxyInterfaceConsumer