MrAdvice 2.17.0
dotnet add package MrAdvice --version 2.17.0
NuGet\Install-Package MrAdvice -Version 2.17.0
<PackageReference Include="MrAdvice" Version="2.17.0" />
paket add MrAdvice --version 2.17.0
#r "nuget: MrAdvice, 2.17.0"
// Install MrAdvice as a Cake Addin #addin nuget:?package=MrAdvice&version=2.17.0 // Install MrAdvice as a Cake Tool #tool nuget:?package=MrAdvice&version=2.17.0
Mr. Advice
Summary
Mr. Advice is an open source (and free of charge) alternative to PostSharp (which is still far more advanced, see https://www.postsharp.net).
It intends to inject aspects at build-time. Advices are written in the form of attributes, and marking methods with them makes the pointcut, resulting in a nice and easy aspect injection.
More information about what is an aspect at Wikipedia.
Mr. Advice can weave assemblies for:
- .NET framework ≥4.6.1 / Mono
- .NET ≥5
- .NET Standard 2.0
Mr. Advice allows you to:
- Advise methods or parameters, at assembly, type, method or parameter level
- Advice types (at assembly startup)
- Introduce fields
- Advise Mr. Advice (and this is BIG) at weaving-time (during build step), so you can rename methods as they are advised, add properties, etc.
How it works
It is available as a package. There is also an automatic build with tests at appveyor. The current status is
Philosophy
Currently, MrAdvice won't bring you any aspect out-of-the-box.
This means you'll have to write your own aspects (however you can see below other packages using Mr. Advice).
So it brings us to the next chapter, which is...
How to implement your own aspects
In a nutshell
Here is the minimal sample:
public class MyProudAdvice : Attribute, IMethodAdvice
{
public void Advise(MethodAdviceContext context)
{
// do things you want here
context.Proceed(); // this calls the original method
// do other things here
}
}
You then just need to mark the method(s) with the attribute and that's it, your aspect is injected!
[MyProudAdvice]
public void MyProudMethod()
{
}
More details
Your aspects can be injected at assembly, type or method level, simply by setting the attribute:
- When an aspect is injected at asembly level, all methods of all types are weaved.
- When the aspect is injected at type level, all of its methods are weaved.
- And of course, if the aspect is injected on a method, only the method is weaved.
Other projects using Mr. Advice
NuGet packages:
- MrAdvice.MVVM and its NuGet package, an MVVM implementation using aspects.
- Persistence and its NuGet package, a library that helps persisting properties in registry with a simple attribute.
Miscellaneous projects:
- The Blue Dwarf, a tunneling anti-censorship local proxy.
Contact and links
Project owner is picrap, feel free to drop a mail ✉️.
Project company is Arx One, a french company editor of backup software solutions.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
This package has no dependencies.
NuGet packages (24)
Showing the top 5 NuGet packages that depend on MrAdvice:
Package | Downloads |
---|---|
MrAdvice.Fody
Obsolete! Use https://www.nuget.org/packages/MrAdvice/ instead! MrAdvice allows to weave aspects at build-time (just like PostSharp, but free as in free beer). Write your own aspects in the form of attributes and apply them to target methods or properties. |
|
ZLSoft.QWPlatform.SystemLibraryCore
公共类库组件 |
|
MrAdvice.MVVM
MrAdvice.MVVM is a lightweight MVVM library. It implements NotifyPropertyChanged, DependencyProperty (dependency and attached), A command binder and some threading management. |
|
SD.AOP.Core
SD.AOP 面向方面编程基础 |
|
ArxOne.Persistence
A simple persistence library. Simply mark properties with attributes and they are persisted in registry. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.17.0 | 360 | 11/28/2024 |
2.16.0 | 9,667 | 8/20/2024 |
2.15.0 | 22,101 | 2/1/2024 |
2.14.0 | 1,624 | 1/8/2024 |
2.13.0 | 1,073 | 11/17/2023 |
2.12.2 | 3,969 | 5/12/2023 |
2.12.2-t1 | 611 | 5/12/2023 |
2.12.1 | 4,335 | 3/28/2023 |
2.12.0 | 9,306 | 3/11/2023 |
2.11.3 | 990 | 3/5/2023 |
2.11.2 | 706 | 3/5/2023 |
2.11.1 | 733 | 3/5/2023 |
2.11.0 | 685 | 3/5/2023 |
2.10.1 | 16,797 | 12/20/2022 |
2.10.0 | 813 | 12/19/2022 |
2.9.9 | 2,230 | 11/5/2022 |
2.9.8 | 5,621 | 9/21/2022 |
2.9.7 | 110,315 | 2/18/2022 |
2.9.6 | 1,322 | 1/28/2022 |
2.9.6-testing3 | 633 | 1/25/2022 |
2.9.6-testing2 | 609 | 1/24/2022 |
2.9.6-testing1 | 560 | 1/6/2022 |
2.9.5 | 6,141 | 12/18/2021 |
2.9.4 | 2,086 | 12/1/2021 |
2.9.3 | 837 | 11/27/2021 |
2.9.2 | 9,439 | 9/17/2021 |
2.9.1 | 2,261 | 8/1/2021 |
2.9.0 | 11,777 | 4/26/2021 |
2.9.0-test1 | 706 | 4/25/2021 |
2.8.12 | 58,773 | 12/24/2020 |
2.8.11 | 9,887 | 7/19/2020 |
2.8.10 | 10,607 | 2/16/2020 |
2.8.9-embed1 | 2,561 | 1/9/2020 |
2.8.8 | 30,325 | 10/5/2019 |
2.8.7 | 1,230 | 10/5/2019 |
2.8.6 | 8,344 | 9/6/2019 |
2.8.5 | 16,989 | 3/29/2019 |
2.8.4 | 2,593 | 3/27/2019 |
2.8.3 | 3,068 | 3/18/2019 |
2.8.2 | 38,573 | 11/29/2018 |
2.8.1 | 2,999 | 11/29/2018 |
2.8.0 | 2,697 | 11/28/2018 |
2.7.2 | 4,160 | 10/23/2018 |
2.7.1 | 2,674 | 10/23/2018 |
2.7.0 | 3,192 | 10/8/2018 |
2.6.0 | 10,447 | 9/24/2018 |
2.5.30 | 2,729 | 9/23/2018 |
2.5.29 | 2,675 | 9/21/2018 |
2.5.28 | 2,681 | 9/20/2018 |
2.5.27 | 2,695 | 9/20/2018 |
2.5.25 | 12,169 | 8/12/2018 |
2.5.24 | 26,119 | 2/13/2018 |
2.5.23 | 2,952 | 2/8/2018 |
2.5.22 | 2,948 | 2/8/2018 |
2.5.21 | 2,868 | 2/7/2018 |
2.5.20 | 2,938 | 2/2/2018 |
2.5.19 | 6,957 | 12/17/2017 |
2.5.18 | 2,957 | 12/17/2017 |
2.5.18-pre2 | 2,560 | 11/11/2017 |
2.5.18-pre | 2,578 | 11/8/2017 |
2.5.18-exp4 | 2,735 | 12/17/2017 |
2.5.18-exp3 | 2,761 | 12/15/2017 |
2.5.17 | 21,116 | 11/1/2017 |
2.5.16 | 6,673 | 8/14/2017 |
2.5.15 | 3,167 | 8/12/2017 |
2.5.14 | 2,758 | 8/11/2017 |
2.5.13 | 2,857 | 8/10/2017 |
2.5.12 | 2,731 | 8/9/2017 |
2.5.11 | 2,845 | 8/7/2017 |
2.5.10 | 2,930 | 8/7/2017 |
2.5.9 | 2,854 | 8/6/2017 |
2.5.8 | 2,915 | 8/6/2017 |
2.5.7 | 2,758 | 8/6/2017 |
2.5.6 | 2,801 | 8/5/2017 |
2.5.5 | 2,830 | 8/5/2017 |
2.5.4 | 19,155 | 6/26/2017 |
2.5.3 | 2,926 | 6/25/2017 |
2.5.2 | 2,899 | 6/14/2017 |
2.5.1 | 2,944 | 5/24/2017 |
2.5.0 | 3,227 | 4/16/2017 |
2.4.8 | 5,638 | 3/15/2017 |
2.4.7 | 3,126 | 3/10/2017 |
2.4.6 | 2,851 | 3/10/2017 |
2.4.5 | 14,509 | 12/28/2016 |
2.4.4 | 2,942 | 12/27/2016 |
2.4.3 | 3,786 | 12/7/2016 |
2.4.2 | 2,904 | 12/3/2016 |
2.4.1 | 2,816 | 12/3/2016 |
2.4.1-test1 | 2,644 | 12/2/2016 |
2.4.0 | 2,939 | 11/25/2016 |
2.4.0-test5 | 2,650 | 11/24/2016 |
2.4.0-test4 | 2,688 | 11/23/2016 |
2.3.5 | 2,955 | 11/10/2016 |
2.3.5-pre1 | 3,053 | 11/8/2016 |
2.3.5-name1 | 2,728 | 11/10/2016 |
2.3.4 | 3,080 | 11/8/2016 |
2.3.2 | 3,005 | 11/7/2016 |
2.3.1 | 3,189 | 11/6/2016 |
2.2.0 | 3,256 | 11/5/2016 |
2.1.3 | 3,160 | 11/2/2016 |
2.1.2 | 2,944 | 10/24/2016 |
2.1.1 | 2,834 | 10/24/2016 |
2.1.0 | 3,029 | 10/22/2016 |
2.1.0-pre3 | 2,562 | 10/21/2016 |
2.1.0-pre2 | 2,644 | 10/20/2016 |
2.1.0-pre1 | 2,656 | 10/19/2016 |
2.0.22 | 2,960 | 10/19/2016 |
2.0.21 | 2,928 | 10/19/2016 |
2.0.20 | 2,884 | 10/18/2016 |
2.0.19 | 2,827 | 10/18/2016 |
2.0.18 | 2,924 | 10/18/2016 |
2.0.17 | 2,837 | 10/18/2016 |
2.0.16 | 2,804 | 10/17/2016 |
2.0.15 | 2,861 | 10/17/2016 |
2.0.14 | 2,877 | 10/17/2016 |
2.0.13 | 2,937 | 10/16/2016 |
2.0.12 | 2,935 | 10/16/2016 |
2.0.10 | 2,848 | 10/15/2016 |
2.0.9 | 2,892 | 10/14/2016 |
2.0.8 | 2,826 | 10/13/2016 |
2.0.7 | 2,881 | 10/13/2016 |
2.0.6 | 2,784 | 10/12/2016 |
2.0.5 | 2,741 | 10/8/2016 |
2.0.4 | 2,865 | 10/8/2016 |
2.0.3 | 2,814 | 10/8/2016 |
2.0.2 | 2,829 | 10/8/2016 |
2.0.1 | 2,842 | 10/8/2016 |
2.0.0 | 4,250 | 10/2/2016 |
2.0.0-alpha4 | 2,640 | 10/2/2016 |