Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AlexRussak/Roozie.AutoInterface
C# source generator to automatically create an interface from a class
https://github.com/AlexRussak/Roozie.AutoInterface
codegen codegeneration codegenerator csharp generation generator interface sourcegeneration sourcegenerator
Last synced: 1 day ago
JSON representation
C# source generator to automatically create an interface from a class
- Host: GitHub
- URL: https://github.com/AlexRussak/Roozie.AutoInterface
- Owner: AlexRussak
- License: mit
- Created: 2022-12-04T23:05:37.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-19T20:52:47.000Z (about 1 year ago)
- Last Synced: 2024-11-03T16:39:39.916Z (7 days ago)
- Topics: codegen, codegeneration, codegenerator, csharp, generation, generator, interface, sourcegeneration, sourcegenerator
- Language: C#
- Homepage: https://www.nuget.org/packages/Roozie.AutoInterface
- Size: 142 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- RSCG_Examples - https://github.com/AlexRussak/Roozie.AutoInterface
README
# Roozie.AutoInterface
[![NuGet Version](https://img.shields.io/nuget/vpre/Roozie.AutoInterface)](https://www.nuget.org/packages/Roozie.AutoInterface)
[![NuGet](https://img.shields.io/nuget/dt/Roozie.AutoInterface.svg)](https://www.nuget.org/packages/Roozie.AutoInterface)# What is it?
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.# Why?
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.# How to use it?
1. Add the NuGet package to your project.
`dotnet add package Roozie.AutoInterface --prerelease`
2. Create a class where you want to generate an interface.
```csharp
public class MyClass
{
public string MyProperty { get; set; }public void MyMethod()
{
// Do something
}
}
```3. Add the `[AutoInterface]` attribute to the class.
4. 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](/Roozie.AutoInterface.Tests), [2](/Roozie.AutoInterface.Tests.Integration)) for examples.
## Configuration
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. |# Contributing
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.# Kudos
Andrew Lock's [Source Generator series](https://andrewlock.net/series/creating-a-source-generator/) is an excellent
resource for learning all aspects of source generators.