Add support for using a simple type-name (#22)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user