deps: upgrade System.Drawing.Common to 6.0.0

This commit is contained in:
goat 2022-11-03 22:08:36 +01:00
parent 4e1772023b
commit bc898e0fce
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
4 changed files with 7 additions and 5 deletions

View file

@ -95,7 +95,7 @@ public sealed class DalamudPluginInterface : IDisposable
/// Gets the reason this plugin was loaded.
/// </summary>
public PluginLoadReason Reason { get; }
/// <summary>
/// Gets the custom repository from which this plugin is installed, <inheritdoc cref="LocalPluginManifest.FlagMainRepo"/>, or <inheritdoc cref="LocalPluginManifest.FlagDevPlugin"/>.
/// </summary>

View file

@ -401,7 +401,7 @@ internal class LocalPlugin : IDisposable
new PluginPatchData(this.DllFile);
this.DalamudInterface =
new DalamudPluginInterface(this.pluginAssembly.GetName().Name!, this.DllFile, reason, this.IsDev, this.Manifest.InstalledFromUrl );
new DalamudPluginInterface(this.pluginAssembly.GetName().Name!, this.DllFile, reason, this.IsDev, this.Manifest.InstalledFromUrl);
if (this.Manifest.LoadSync && this.Manifest.LoadRequiredState is 0 or 1)
{

View file

@ -17,8 +17,10 @@ internal record LocalPluginManifest : PluginManifest
/// </summary>
[JsonIgnore]
public const string FlagMainRepo = "OFFICIAL";
/// <summary> "DEVPLUGIN" </summary>
/// <summary>
/// Flag indicating that a plugin is a dev plugin..
/// </summary>
[JsonIgnore]
public const string FlagDevPlugin = "DEVPLUGIN";