diff --git a/src/modules/Hosts/Hosts.Tests/Hosts.Tests.csproj b/src/modules/Hosts/Hosts.Tests/Hosts.Tests.csproj
index 0f0a57ba6b..c3a1c2190b 100644
--- a/src/modules/Hosts/Hosts.Tests/Hosts.Tests.csproj
+++ b/src/modules/Hosts/Hosts.Tests/Hosts.Tests.csproj
@@ -9,6 +9,7 @@
$(SolutionDir)$(Platform)\$(Configuration)\tests\Hosts.Tests\
Hosts.Tests
PowerToys.Hosts.Tests
+ EXCLUDE_FORFUZZTEST
diff --git a/src/modules/Hosts/HostsUILib/Models/Entry.cs b/src/modules/Hosts/HostsUILib/Models/Entry.cs
index 2faadf0ca1..543f958a22 100644
--- a/src/modules/Hosts/HostsUILib/Models/Entry.cs
+++ b/src/modules/Hosts/HostsUILib/Models/Entry.cs
@@ -8,11 +8,13 @@ using System.Text;
using CommunityToolkit.Mvvm.ComponentModel;
using HostsUILib.Helpers;
-using Microsoft.UI.Xaml.Data;
namespace HostsUILib.Models
{
- [Bindable]
+#if !EXCLUDE_FORFUZZTEST
+
+ [Microsoft.UI.Xaml.Data.Bindable]
+#endif
public partial class Entry : ObservableObject
{
private static readonly char[] _spaceCharacters = new char[] { ' ', '\t' };