Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -843,6 +843,9 @@ public void DotNetPublish ([Values (false, true)] bool isRelease, [ValueSource(n
var dotnetVersion = (string)data[0];
var platform = (string)data[1];
var apiLevel = (int)data[2];
if (dotnetVersion != "net8.0") {
Assert.Ignore ("https://github.com/dotnet/runtime/issues/77385");
}

if (string.IsNullOrEmpty (platform))
Assert.Ignore ($"Test for API level {apiLevel} was skipped as it matched the default or latest stable API level.");
Expand Down
8 changes: 7 additions & 1 deletion tests/MSBuildDeviceIntegration/Tests/XASdkDeployTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ public class XASdkDeployTests : DeviceTest
public void DotNetInstallAndRun (bool isRelease, bool xamarinForms, string targetFramework)
{
AssertHasDevices ();
if (!targetFramework.Contains ("net8.0")) {
Assert.Ignore ("https://github.com/dotnet/runtime/issues/77385");
}

XASdkProject proj;
if (xamarinForms) {
Expand Down Expand Up @@ -157,10 +160,13 @@ public void TypeAndMemberRemapping ([Values (false, true)] bool isRelease)

[Test]
[Category ("Debugger"), Category ("Node-4")]
public void DotNetDebug ([Values("net6.0-android", "net7.0-android")] string targetFramework)
public void DotNetDebug ([Values("net6.0-android", "net7.0-android", "net8.0-android")] string targetFramework)
{
AssertCommercialBuild ();
AssertHasDevices ();
if (!targetFramework.Contains ("net8.0")) {
Assert.Ignore ("https://github.com/dotnet/runtime/issues/77385");
}

var proj = new XASdkProject ();
proj.TargetFramework = targetFramework;
Expand Down