Add support to generate code for interface without a namespace (#46)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
namespace ProxyInterfaceSourceGeneratorTests.Source.AkkaActor
|
||||
{
|
||||
public partial interface ILocalActorRefProvider
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,3 @@
|
||||
using Xunit.Sdk;
|
||||
|
||||
namespace ProxyInterfaceSourceGeneratorTests.Source
|
||||
{
|
||||
public class Human
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
// ReSharper disable once CheckNamespace
|
||||
public partial interface INoNamespace
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace ProxyInterfaceSourceGeneratorTests.Source;
|
||||
|
||||
public class NoNamespace
|
||||
{
|
||||
public bool Test { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user