@@ -16,30 +16,29 @@ namespace Microsoft.DotNet.New.Tests
1616 public class GivenThatIWantANewAppWithSpecifiedType : TestBase
1717 {
1818 [ Theory ]
19- [ InlineData ( "C#" , "console" , false , false ) ]
20- [ InlineData ( "C#" , "classlib" , false , false ) ]
21- [ InlineData ( "C#" , "mstest" , false , false ) ]
22- [ InlineData ( "C#" , "xunit" , false , false ) ]
23- [ InlineData ( "C#" , "web" , true , false ) ]
24- [ InlineData ( "C#" , "mvc" , true , false ) ]
25- [ InlineData ( "C#" , "webapi" , true , false ) ]
26- [ InlineData ( "C#" , "angular" , false , true ) ]
27- [ InlineData ( "C#" , "react" , false , true ) ]
28- [ InlineData ( "C#" , "reactredux" , false , true ) ]
29- [ InlineData ( "F#" , "console" , false , false ) ]
19+ [ InlineData ( "C#" , "console" , false ) ]
20+ [ InlineData ( "C#" , "classlib" , false ) ]
21+ [ InlineData ( "C#" , "mstest" , false ) ]
22+ [ InlineData ( "C#" , "xunit" , false ) ]
23+ [ InlineData ( "C#" , "web" , false ) ]
24+ [ InlineData ( "C#" , "mvc" , false ) ]
25+ [ InlineData ( "C#" , "webapi" , false ) ]
26+ [ InlineData ( "C#" , "angular" , true ) ]
27+ [ InlineData ( "C#" , "react" , true ) ]
28+ [ InlineData ( "C#" , "reactredux" , true ) ]
29+ [ InlineData ( "F#" , "console" , false ) ]
3030 // re-enable when this bug is resolved: https://github.com/dotnet/cli/issues/7574
31- //[InlineData("F#", "classlib", false, false )]
32- [ InlineData ( "F#" , "mstest" , false , false ) ]
33- [ InlineData ( "F#" , "xunit" , false , false ) ]
34- [ InlineData ( "F#" , "mvc" , true , false ) ]
35- [ InlineData ( "VB" , "console" , false , false ) ]
36- [ InlineData ( "VB" , "classlib" , false , false ) ]
37- [ InlineData ( "VB" , "mstest" , false , false ) ]
38- [ InlineData ( "VB" , "xunit" , false , false ) ]
31+ //[InlineData("F#", "classlib", false)]
32+ [ InlineData ( "F#" , "mstest" , false ) ]
33+ [ InlineData ( "F#" , "xunit" , false ) ]
34+ [ InlineData ( "F#" , "mvc" , false ) ]
35+ [ InlineData ( "VB" , "console" , false ) ]
36+ [ InlineData ( "VB" , "classlib" , false ) ]
37+ [ InlineData ( "VB" , "mstest" , false ) ]
38+ [ InlineData ( "VB" , "xunit" , false ) ]
3939 public void TemplateRestoresAndBuildsWithoutWarnings (
4040 string language ,
4141 string projectType ,
42- bool useNuGetConfigForAspNet ,
4342 bool skipSpaWebpackSteps )
4443 {
4544 string rootPath = TestAssets . CreateTestDirectory ( identifier : $ "{ language } _{ projectType } ") . FullName ;
@@ -49,11 +48,6 @@ public void TemplateRestoresAndBuildsWithoutWarnings(
4948 . Execute ( $ "new { projectType } -lang { language } -o { rootPath } --debug:ephemeral-hive { noRestoreDirective } ")
5049 . Should ( ) . Pass ( ) ;
5150
52- if ( useNuGetConfigForAspNet )
53- {
54- AspNetNuGetConfiguration . WriteNuGetConfigWithAspNetPrivateFeeds ( Path . Combine ( rootPath , "NuGet.Config" ) ) ;
55- }
56-
5751 if ( skipSpaWebpackSteps )
5852 {
5953 // Not all CI machines have Node installed, so the build would fail if we tried
0 commit comments