mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Mark PluginNames and PluginInternalNames as Obsolete
This commit is contained in:
parent
a64fdc7c7b
commit
362661c320
1 changed files with 2 additions and 0 deletions
|
|
@ -193,11 +193,13 @@ public sealed class DalamudPluginInterface : IDisposable
|
|||
/// <summary>
|
||||
/// Gets a list of installed plugin names.
|
||||
/// </summary>
|
||||
[Obsolete($"This property is obsolete. Use {nameof(InstalledPlugins)} instead.")]
|
||||
public List<string> PluginNames => Service<PluginManager>.Get().InstalledPlugins.Select(p => p.Manifest.Name).ToList();
|
||||
|
||||
/// <summary>
|
||||
/// Gets a list of installed plugin internal names.
|
||||
/// </summary>
|
||||
[Obsolete($"This property is obsolete. Use {nameof(InstalledPlugins)} instead.")]
|
||||
public List<string> PluginInternalNames => Service<PluginManager>.Get().InstalledPlugins.Select(p => p.Manifest.InternalName).ToList();
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue