From 6f2dcbff190cfcd1609d3e01ab7e168dfe334013 Mon Sep 17 00:00:00 2001 From: Raymond Date: Wed, 6 Oct 2021 16:28:42 -0400 Subject: [PATCH] Remove AssemblyDirectory --- Dalamud/Plugin/DalamudPluginInterface.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Dalamud/Plugin/DalamudPluginInterface.cs b/Dalamud/Plugin/DalamudPluginInterface.cs index fb1741f87..8eaf1a74c 100644 --- a/Dalamud/Plugin/DalamudPluginInterface.cs +++ b/Dalamud/Plugin/DalamudPluginInterface.cs @@ -48,7 +48,6 @@ namespace Dalamud.Plugin this.pluginName = pluginName; this.AssemblyLocation = assemblyLocation; - this.AssemblyDirectory = new DirectoryInfo(assemblyLocation.DirectoryName!); this.configs = Service.Get().PluginConfigs; this.Reason = reason; this.IsDev = isDev; @@ -121,11 +120,6 @@ namespace Dalamud.Plugin /// public FileInfo AssemblyLocation { get; } - /// - /// Gets the directory your plugin assembly and bundled files are stored in. - /// - public DirectoryInfo AssemblyDirectory { get; } - /// /// Gets the directory your plugin configurations are stored in. ///