diff --git a/test/E2E/E2ETest.cs b/test/E2E/E2ETest.cs index 31507cf9b..98c87a25e 100644 --- a/test/E2E/E2ETest.cs +++ b/test/E2E/E2ETest.cs @@ -68,6 +68,12 @@ namespace ConsoleApplication [Fact] public void TestDotnetCompileNativeCpp() { + // Skip this test on windows + if(SkipForOS(OSPlatform.Windows, "https://github.com/dotnet/cli/issues/335")) + { + return; + } + TestSetup(); TestRunCommand("dotnet", $"compile --native --cpp -o {OutputDirectory}");