diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-07-11 01:44:02 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-07-11 01:44:02 -0400 |
commit | bd20c2e1375ed5e32315ef5e292802bccc42f530 (patch) | |
tree | 32f30b832d9bf41af3391c75463247ac262e89b7 /src/SMAPI/Framework/ModLoading/Finders/FieldFinder.cs | |
parent | 8f96a97f070d654764de3b138678d8f62707f485 (diff) | |
download | SMAPI-bd20c2e1375ed5e32315ef5e292802bccc42f530.tar.gz SMAPI-bd20c2e1375ed5e32315ef5e292802bccc42f530.tar.bz2 SMAPI-bd20c2e1375ed5e32315ef5e292802bccc42f530.zip |
alias Mono.Cecil references (#711)
This is needed to migrate to Harmony 2.0 because it uses MonoMod, which has a copy of Mono.Cecil merged into its assembly, which leads to "type X exists in both 0Harmony.dll and Mono.Cecil.dll" errors. We can't use the version bundled with MonoMod since only some of the types are publicly accessible.
Diffstat (limited to 'src/SMAPI/Framework/ModLoading/Finders/FieldFinder.cs')
-rw-r--r-- | src/SMAPI/Framework/ModLoading/Finders/FieldFinder.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/SMAPI/Framework/ModLoading/Finders/FieldFinder.cs b/src/SMAPI/Framework/ModLoading/Finders/FieldFinder.cs index 2c062243..434ff5ab 100644 --- a/src/SMAPI/Framework/ModLoading/Finders/FieldFinder.cs +++ b/src/SMAPI/Framework/ModLoading/Finders/FieldFinder.cs @@ -1,5 +1,7 @@ -using Mono.Cecil; -using Mono.Cecil.Cil; +extern alias MonoCecilPackage; + +using MonoCecilPackage.Mono.Cecil; +using MonoCecilPackage.Mono.Cecil.Cil; using StardewModdingAPI.Framework.ModLoading.Framework; namespace StardewModdingAPI.Framework.ModLoading.Finders |