Skip to content

Commit

Permalink
Add missing using System (#18)
Browse files Browse the repository at this point in the history
When global usings are disabled, `HotAvalonia.Extensions` fails to compile due to a missing `System` import.
  • Loading branch information
nil4 authored Dec 3, 2024
1 parent 1f0e80d commit eb6983d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/HotAvalonia.Extensions/AvaloniaHotReloadExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ public static void DisableHotReload(this Application app)
#else
namespace HotAvalonia
{
using global::System;
using global::System.Diagnostics;
using global::System.Diagnostics.CodeAnalysis;
using global::System.Reflection;
Expand Down

0 comments on commit eb6983d

Please sign in to comment.