Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<AvaloniaVersion>11.3.9</AvaloniaVersion>
<AvaloniaVersion>12.0.2</AvaloniaVersion>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public CheckingForUpdatesWindow(Bitmap? iconBitmap)
{
this.InitializeComponent();
#if DEBUG
this.AttachDevTools();
Application.Current?.AttachDeveloperTools();
#endif
Closing += CheckingForUpdatesWindow_Closing;
var imageControl = this.FindControl<Image>("AppIcon");
Expand Down
6 changes: 3 additions & 3 deletions src/NetSparkle.UI.Avalonia/NetSparkle.UI.Avalonia.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net10.0;net9.0;net8.0;net7.0;net6.0;netstandard2.0</TargetFrameworks>
<TargetFrameworks>net10.0;net8.0;net9.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>NetSparkleUpdater.UI.Avalonia</PackageId>
<Version>3.1.0-preview20260409001</Version>
Expand Down Expand Up @@ -91,10 +91,10 @@
<ItemGroup>
<PackageReference Include="Avalonia" Version="$(AvaloniaVersion)" />
<PackageReference Include="Avalonia.Desktop" Version="$(AvaloniaVersion)" />
<PackageReference Include="Avalonia.HtmlRenderer" Version="11.3.0" />
<PackageReference Include="Avalonia.HtmlRenderer" Version="12.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<PackageReference Include="Avalonia.Diagnostics" Version="$(AvaloniaVersion)" />
<PackageReference Include="AvaloniaUI.DiagnosticsSupport" Version="2.2.1" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/NetSparkle.UI.Avalonia/UpdateAvailableWindow.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public UpdateAvailableWindow(UpdateAvailableWindowViewModel viewModel, Bitmap? i
imageControl.Source = iconBitmap;
}
#if DEBUG
this.AttachDevTools();
Application.Current?.AttachDeveloperTools();
#endif
DataContext = _dataContext = viewModel;
_dataContext.ReleaseNotesDisplayer = this;
Expand Down