mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 20:33:40 +01:00
deps: upgrade System.Drawing.Common to 6.0.0
This commit is contained in:
parent
4e1772023b
commit
bc898e0fce
4 changed files with 7 additions and 5 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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";
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue