Skip to content

Commit

Permalink
chore: Fix windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
dr1rrb committed Sep 30, 2024
1 parent b2ea548 commit 1318a3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace Uno.UI.RemoteControl.HotReload;
partial class ClientHotReloadProcessor
{
private static int _isWaitingForTypeMapping;
private static readonly AsyncLock _uiUpdateGate = new();
private static readonly AsyncLock _uiUpdateGate = new(); // We can use the simple AsyncLock here as we don't need reentrancy.

private static ElementUpdateAgent? _elementAgent;

Expand Down
1 change: 1 addition & 0 deletions src/Uno.UI.Toolkit/Uno.UI.Toolkit.Windows.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

<ItemGroup Condition="'$(UNO_UWP_BUILD)'!='true'">
<Compile Include="..\Uno.Foundation\Uno.Core.Extensions\Uno.Core.Extensions.Collections\EnumerableExtensions.cs" Link="Uno.Foundation\Uno.Core.Extensions\Uno.Core.Extensions.Collections\EnumerableExtensions.cs" />
<Compile Include="..\Uno.Foundation\Uno.Core.Extensions\Uno.Core.Extensions.Compatibility\Threading\AsyncLock.cs" Link="Uno.Foundation\Uno.Core.Extensions\Uno.Core.Extensions.Compatibility\Threading\AsyncLock.cs" />

<Compile Include="..\Uno.UI\Extensions\PrettyPrint.cs" Link="Uno.UI\Extensions\PrettyPrint.cs" />
<Compile Include="..\Uno.UI\Extensions\ViewExtensions.visual-tree.cs" Link="Uno.UI\Extensions\ViewExtensions.visual-tree.cs" />
Expand Down

0 comments on commit 1318a3a

Please sign in to comment.