https://github.com/aimenux/fodydemo
Playing with fody weaving library
https://github.com/aimenux/fodydemo
fody net60
Last synced: 12 months ago
JSON representation
Playing with fody weaving library
- Host: GitHub
- URL: https://github.com/aimenux/fodydemo
- Owner: aimenux
- License: mit
- Created: 2020-12-12T16:05:36.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-06-03T21:27:53.000Z (about 1 year ago)
- Last Synced: 2025-07-12T07:22:51.552Z (about 1 year ago)
- Topics: fody, net60
- Language: C#
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/aimenux/FodyDemo/actions/workflows/ci.yml)
# FodyDemo
```
Playing with fody weaving library
```
> In this demo, i m playing with [Fody](https://github.com/Fody/Fody) weaving library.
>
> The solution consists of multiple apps using some of [fody plugins](https://github.com/Fody/Home/blob/master/pages/addins.md) :
>
> :one: `ToString.Fody.App` : in this app, i m using [ToString](https://github.com/Fody/ToString) in order to generate ToString implementation for decorated classes. Only public properties will be handled. The attribute `IgnoreDuringToString` can be used to exclude unwanted public properties.
>
> :two: `PropertyChanged.Fody.App` : in this app, i m using [PropertyChanged](https://github.com/Fody/PropertyChanged) in order to raise property changed event in properties setters for classes implementing interface `INotifyPropertyChanged`.
>
> :three: `MethodTimer.Fody.App` : in this app, i m using [MethodTimer](https://github.com/Fody/MethodTimer) in order to measure methods execution time. The attribute `Time` is used to mark methods to be measured. The static class `MethodTimeLogger` is used to customize measure logs.
>
> :four: `MethodBoundaryAspect.Fody.App` : in this app, i m using [MethodBoundaryAspect](https://github.com/vescon/MethodBoundaryAspect.Fody) in order to implement aspects. The sample class use a logging aspect in order to log information before/after methods calling or when an exception is thrown.
>
**`Tools`** : vs22, net 6.0, fody