From 3b180f49ba27b555fa6dabf8ec1a075d4920fa91 Mon Sep 17 00:00:00 2001 From: Kevin Ransom Date: Fri, 7 Jul 2017 23:38:20 -0700 Subject: [PATCH] Enable VB dotnet new test cases --- .../GivenThatIWantANewAppWithSpecifiedType.cs | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/test/dotnet-new.Tests/GivenThatIWantANewAppWithSpecifiedType.cs b/test/dotnet-new.Tests/GivenThatIWantANewAppWithSpecifiedType.cs index d631abdf0..1977445a8 100644 --- a/test/dotnet-new.Tests/GivenThatIWantANewAppWithSpecifiedType.cs +++ b/test/dotnet-new.Tests/GivenThatIWantANewAppWithSpecifiedType.cs @@ -25,18 +25,15 @@ namespace Microsoft.DotNet.New.Tests [InlineData("F#", "mstest", false)] [InlineData("F#", "xunit", false)] [InlineData("F#", "mvc", true)] + [InlineData("VB", "console", false)] + [InlineData("VB", "classlib", false)] + [InlineData("VB", "mstest", false)] + [InlineData("VB", "xunit", false)] public void TemplateRestoresAndBuildsWithoutWarnings( string language, string projectType, bool useNuGetConfigForAspNet) { - if (language == "F#" && !EnvironmentInfo.HasSharedFramework("netcoreapp1.0")) - { - // F# requires netcoreapp1.0 to be present in order to build - // https://github.com/dotnet/netcorecli-fsc/issues/76 - return; - } - string rootPath = TestAssetsManager.CreateTestDirectory(identifier: $"{language}_{projectType}").Path; new TestCommand("dotnet") { WorkingDirectory = rootPath }