From 76b4879c9835b6c24fd6a7f0d87450d46d469bd8 Mon Sep 17 00:00:00 2001 From: Andreas Pardeike Date: Sun, 3 Mar 2024 23:32:45 +0100 Subject: [PATCH] restores newlines --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cd1c07bc..fc3bcd66 100644 --- a/README.md +++ b/README.md @@ -15,10 +15,10 @@ It is also used in unit testing WPF controls and in many other areas. If you develop in C# and your code is loaded as a module/plugin into a host application, you can use Harmony to alter the functionality of all the available assemblies of that application. Where other patch libraries simply allow you to replace the original method, Harmony goes one step further and gives you: -• A way to keep the original method intact -• Execute your code before and/or after the original method -• Modify the original with IL code processors -• Multiple Harmony patches co-exist and don't conflict with each other +• A way to keep the original method intact +• Execute your code before and/or after the original method +• Modify the original with IL code processors +• Multiple Harmony patches co-exist and don't conflict with each other • Works at runtime and does not touch any files ### Installation @@ -35,8 +35,8 @@ Please check out the [documentation](https://harmony.pardeike.net) and join the I put thousands of hours into this project and its support. So every little action helps: -• Become a [GitHub sponsor](https://github.com/sponsors/pardeike) or a [Patreon](https://www.patreon.com/pardeike) -• Upvote this [stackoverflow answer](https://stackoverflow.com/questions/7299097/dynamically-replace-the-contents-of-a-c-sharp-method/42043003#42043003) +• Become a [GitHub sponsor](https://github.com/sponsors/pardeike) or a [Patreon](https://www.patreon.com/pardeike) +• Upvote this [stackoverflow answer](https://stackoverflow.com/questions/7299097/dynamically-replace-the-contents-of-a-c-sharp-method/42043003#42043003) • Spread the word in your developer communities This project uses the great [MonoMod.Core](https://github.com/MonoMod) library by [0x0ade](https://github.com/0x0ade) and [nike4613](https://github.com/nike4613).