You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple library that includes the `PluginAttribute` type to be used by plugins.
3
+
A simple library that includes the [PluginAttribute](https://mrdave1999.github.io/CPlugin.Net/api/CPlugin.Net.PluginAttribute.html) type to be used by plugins.
4
+
5
+
### Example
6
+
7
+
`IPluginStartup` represents the contract and can reside in its own project called `MyApp.Contracts`.
8
+
9
+
Each plugin must implement the contract in this way:
10
+
```cs
11
+
publicclassStartup : IPluginStartup
12
+
{
13
+
14
+
}
15
+
```
16
+
17
+
And then add this line before the namespace declaration:
0 commit comments