Roozie.AutoInterface is a C# source generator that generates an interface for a class. The generated interface contains the XML-doc comments, public properties, and public methods.
Interfaces are great for keeping your code loosely coupled and unit testable. But, they add some maintenance overhead. This source generator will keep your interfaces up to date.
-
Add the NuGet package to your project.
dotnet add package Roozie.AutoInterface --prerelease
-
Create a class where you want to generate an interface.
public class MyClass
{
public string MyProperty { get; set; }
public void MyMethod()
{
// Do something
}
}
- Add the
[AutoInterface]
attribute to the class. - An interface will be generated in the same namespace as the class.
You can now use the generated interface in your code.
If the class is partial
, the interface will be automatically implemented.
Check out the tests (1, 2) for examples.
You can configure the generator in the [AutoInterface]
attribute. The following options are available:
Option | Default Value | Description |
---|---|---|
Name | "I" + Class name | Set the interface to whatever name you want. |
IncludeMethods | true |
Set to false , the generator will automatically include methods in the interface. You can mark a method as included by adding the [AddToInterface] attribute. |
IncludeProperties | true |
Same as IncludeMethods |
ImplementOnPartial | true |
When true, the interface will be automatically implemented if the class is marked as partial. |
Please open an issue if you find a bug or have a feature request. If you'd like to contribute, please open a pull request.
Andrew Lock's Source Generator series is an excellent resource for learning all aspects of source generators.