summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/Framework/AssemblyRewriting/PlatformAssemblyMap.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2016-11-27 15:56:47 -0500
committerJesse Plamondon-Willard <github@jplamondonw.com>2016-11-27 15:56:47 -0500
commitf7b8879011873fa8f7a3d5dd7db27254bfc90469 (patch)
tree7c4e42901614ede42621fd4265c89e131eea4f19 /src/StardewModdingAPI/Framework/AssemblyRewriting/PlatformAssemblyMap.cs
parent0d94c628bbc1d1ab098e0a90ee5758ee69694887 (diff)
downloadSMAPI-f7b8879011873fa8f7a3d5dd7db27254bfc90469.tar.gz
SMAPI-f7b8879011873fa8f7a3d5dd7db27254bfc90469.tar.bz2
SMAPI-f7b8879011873fa8f7a3d5dd7db27254bfc90469.zip
supplement assembly resolution for Mono (#166)
Diffstat (limited to 'src/StardewModdingAPI/Framework/AssemblyRewriting/PlatformAssemblyMap.cs')
-rw-r--r--src/StardewModdingAPI/Framework/AssemblyRewriting/PlatformAssemblyMap.cs35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/StardewModdingAPI/Framework/AssemblyRewriting/PlatformAssemblyMap.cs b/src/StardewModdingAPI/Framework/AssemblyRewriting/PlatformAssemblyMap.cs
new file mode 100644
index 00000000..3e6cec8a
--- /dev/null
+++ b/src/StardewModdingAPI/Framework/AssemblyRewriting/PlatformAssemblyMap.cs
@@ -0,0 +1,35 @@
+using System.Reflection;
+
+namespace StardewModdingAPI.Framework.AssemblyRewriting
+{
+ /// <summary>Metadata for mapping assemblies to the current <see cref="Platform"/>.</summary>
+ internal class PlatformAssemblyMap
+ {
+ /*********
+ ** Accessors
+ *********/
+ /// <summary>The target game platform.</summary>
+ public readonly Platform TargetPlatform;
+
+ /// <summary>The short assembly names to remove as assembly reference, and replace with the <see cref="Targets"/>. These should be short names (like "Stardew Valley").</summary>
+ public readonly string[] RemoveNames;
+
+ /// <summary>The assembly filenames to target. Equivalent types should be rewritten to use these assemblies.</summary>
+ public readonly Assembly[] Targets;
+
+
+ /*********
+ ** Public methods
+ *********/
+ /// <summary>Construct an instance.</summary>
+ /// <param name="targetPlatform">The target game platform.</param>
+ /// <param name="removeAssemblyNames">The assembly short names to remove (like <c>Stardew Valley</c>).</param>
+ /// <param name="targetAssemblies">The assemblies to target.</param>
+ public PlatformAssemblyMap(Platform targetPlatform, string[] removeAssemblyNames, Assembly[] targetAssemblies)
+ {
+ this.TargetPlatform = targetPlatform;
+ this.RemoveNames = removeAssemblyNames;
+ this.Targets = targetAssemblies;
+ }
+ }
+} \ No newline at end of file