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

@ -80,7 +80,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference> </PackageReference>
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" /> <PackageReference Include="System.Collections.Immutable" Version="5.0.0" />
<PackageReference Include="System.Drawing.Common" Version="5.0.2" /> <PackageReference Include="System.Drawing.Common" Version="6.0.0" />
<PackageReference Include="System.Reflection.MetadataLoadContext" Version="5.0.1" /> <PackageReference Include="System.Reflection.MetadataLoadContext" Version="5.0.1" />
<PackageReference Include="System.Resources.Extensions" Version="5.0.0" /> <PackageReference Include="System.Resources.Extensions" Version="5.0.0" />
</ItemGroup> </ItemGroup>

View file

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

View file

@ -401,7 +401,7 @@ internal class LocalPlugin : IDisposable
new PluginPatchData(this.DllFile); new PluginPatchData(this.DllFile);
this.DalamudInterface = 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) if (this.Manifest.LoadSync && this.Manifest.LoadRequiredState is 0 or 1)
{ {

View file

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