fix a few more things regarding AvaloniaUI/Linux
This commit is contained in:
parent
08d54cd13c
commit
9befb10587
@ -52,6 +52,8 @@
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Avalonia" Version="11.2.0" />
|
||||
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
||||
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.1" />
|
||||
<PackageReference Include="System.Drawing.Common" Version="8.0.10" />
|
||||
<PackageReference Include="System.Resources.Extensions" Version="8.0.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
@ -1,5 +1,6 @@
|
||||
using System.Globalization;
|
||||
using System;
|
||||
using Avalonia.Data.Converters;
|
||||
|
||||
namespace EliteBGS;
|
||||
|
||||
|
@ -63,10 +63,10 @@ namespace EliteBGS.Properties {
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Icon similar to (Icon).
|
||||
/// </summary>
|
||||
internal static System.Drawing.Common.Icon EliteBGS {
|
||||
internal static System.Drawing.Icon EliteBGS {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("EliteBGS", resourceCulture);
|
||||
return ((System.Drawing.Common.Icon)(obj));
|
||||
return ((System.Drawing.Icon)(obj));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -9,14 +9,14 @@
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace EliteBGS.Properties {
|
||||
|
||||
|
||||
|
||||
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")]
|
||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||
|
||||
|
||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||
|
||||
|
||||
public static Settings Default {
|
||||
get {
|
||||
return defaultInstance;
|
||||
|
Loading…
Reference in New Issue
Block a user