add csharpier
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
namespace ProxyInterfaceSourceGeneratorTests.Source.Disposable
|
||||
{
|
||||
public class Child : Parent
|
||||
{
|
||||
}
|
||||
}
|
||||
public class Child : Parent { }
|
||||
}
|
||||
|
||||
@@ -6,15 +6,8 @@ namespace ProxyInterfaceSourceGeneratorTests.Source.Disposable
|
||||
|
||||
event EventHandler<string>? IUpdate<string>.Update
|
||||
{
|
||||
add
|
||||
{
|
||||
throw new NotSupportedException();
|
||||
}
|
||||
|
||||
remove
|
||||
{
|
||||
throw new NotSupportedException();
|
||||
}
|
||||
add { throw new NotSupportedException(); }
|
||||
remove { throw new NotSupportedException(); }
|
||||
}
|
||||
|
||||
void IDisposable.Dispose()
|
||||
@@ -22,4 +15,4 @@ namespace ProxyInterfaceSourceGeneratorTests.Source.Disposable
|
||||
throw new NotSupportedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
namespace ProxyInterfaceSourceGeneratorTests.Source.Disposable
|
||||
{
|
||||
public partial interface IChild
|
||||
{
|
||||
}
|
||||
}
|
||||
public partial interface IChild { }
|
||||
}
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
namespace ProxyInterfaceSourceGeneratorTests.Source.Disposable
|
||||
{
|
||||
public partial interface IExplicit
|
||||
{
|
||||
}
|
||||
}
|
||||
public partial interface IExplicit { }
|
||||
}
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
namespace ProxyInterfaceSourceGeneratorTests.Source.Disposable
|
||||
{
|
||||
public partial interface IParent
|
||||
{
|
||||
}
|
||||
}
|
||||
public partial interface IParent { }
|
||||
}
|
||||
|
||||
@@ -6,4 +6,4 @@ namespace ProxyInterfaceSourceGeneratorTests.Source.Disposable
|
||||
|
||||
string Name { get; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -42,4 +42,4 @@ namespace ProxyInterfaceSourceGeneratorTests.Source.Disposable
|
||||
// Dispose(disposing: false);
|
||||
// }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user