diff --git a/eng/cake/dotnet.cake b/eng/cake/dotnet.cake index dca59c1023ac..e275dd3971b8 100644 --- a/eng/cake/dotnet.cake +++ b/eng/cake/dotnet.cake @@ -190,7 +190,7 @@ Task("dotnet-samples") Error(errMsg); throw new Exception(errMsg); } - projectsToBuild = "./src/Controls/tests/TestCases/Controls.TestCases.App.csproj"; + projectsToBuild = "./src/Controls/tests/TestCases.HostApp/Controls.TestCases.HostApp.csproj"; properties["_UseNativeAot"] = "true"; } else diff --git a/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/ScrollViewUITests.ScrollViewIsEnabled.cs b/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/ScrollViewUITests.ScrollViewIsEnabled.cs index 57ba491a2c6e..f92e645eea08 100644 --- a/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/ScrollViewUITests.ScrollViewIsEnabled.cs +++ b/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/ScrollViewUITests.ScrollViewIsEnabled.cs @@ -22,6 +22,7 @@ public ScrollViewIsEnabledTests(TestDevice device) public override string Issue => "ScrollView set to disabled will still allow scrolling"; +#if WINDOWS || ANDROID // ScrollViewInitiallyEnabled (src\Compatibility\ControlGallery\src\Issues.Shared\ScrollViewIsEnabled.cs) [Test] [FailsOnIOS("This test is failing, likely due to product issue")] @@ -119,5 +120,6 @@ public void ScrollViewInitiallyNotEnabledThenEnabled() this.Back(); } +#endif } } \ No newline at end of file