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

Commit 3b180f4

Browse files
committed
Enable VB dotnet new test cases
1 parent c819188 commit 3b180f4

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

test/dotnet-new.Tests/GivenThatIWantANewAppWithSpecifiedType.cs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,15 @@ public class GivenThatIWantANewAppWithSpecifiedType : TestBase
2525
[InlineData("F#", "mstest", false)]
2626
[InlineData("F#", "xunit", false)]
2727
[InlineData("F#", "mvc", true)]
28+
[InlineData("VB", "console", false)]
29+
[InlineData("VB", "classlib", false)]
30+
[InlineData("VB", "mstest", false)]
31+
[InlineData("VB", "xunit", false)]
2832
public void TemplateRestoresAndBuildsWithoutWarnings(
2933
string language,
3034
string projectType,
3135
bool useNuGetConfigForAspNet)
3236
{
33-
if (language == "F#" && !EnvironmentInfo.HasSharedFramework("netcoreapp1.0"))
34-
{
35-
// F# requires netcoreapp1.0 to be present in order to build
36-
// https://github.com/dotnet/netcorecli-fsc/issues/76
37-
return;
38-
}
39-
4037
string rootPath = TestAssetsManager.CreateTestDirectory(identifier: $"{language}_{projectType}").Path;
4138

4239
new TestCommand("dotnet") { WorkingDirectory = rootPath }

0 commit comments

Comments
 (0)