Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit a4c3e69

Browse files
committed
Disabling the VB tests in non-windows platforms while MSBuild fixes a bug that we need for cross-plat.
1 parent 38fc887 commit a4c3e69

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

test/dotnet.Tests/GivenThatICareAboutVBApps.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ public GivenThatICareAboutVBApps()
2626
.Should().Pass();
2727
}
2828

29-
[Fact]
29+
// Enable cross-plat once https://github.com/Microsoft/msbuild/issues/422 is fixed
30+
[WindowsOnlyFact]
3031
public void ICanBuildVBApps()
3132
{
3233
new BuildCommand()
@@ -35,7 +36,8 @@ public void ICanBuildVBApps()
3536
.Should().Pass();
3637
}
3738

38-
[Fact]
39+
// Enable cross-plat once https://github.com/Microsoft/msbuild/issues/422 is fixed
40+
[WindowsOnlyFact]
3941
public void ICanRunVBApps()
4042
{
4143
new RunCommand()
@@ -44,7 +46,8 @@ public void ICanRunVBApps()
4446
.Should().Pass();
4547
}
4648

47-
[Fact]
49+
// Enable cross-plat once https://github.com/Microsoft/msbuild/issues/422 is fixed
50+
[WindowsOnlyFact]
4851
public void ICanPublicAndRunVBApps()
4952
{
5053
new PublishCommand()

0 commit comments

Comments
 (0)