@@ -230,8 +230,8 @@ public async void AotVariants(string name, string language)
230
230
231
231
var templatesToTest = new [ ]
232
232
{
233
- new { Template = consoleTemplateShortname , Frameworks = new [ ] { null , "net6.0" , "net7.0" , " net8.0" } } ,
234
- new { Template = "classlib" , Frameworks = new [ ] { null , "net6.0" , "net7.0" , " net8.0", "netstandard2.0" , "netstandard2.1" } }
233
+ new { Template = consoleTemplateShortname , Frameworks = new [ ] { null , "net6.0" , "net8.0" } } ,
234
+ new { Template = "classlib" , Frameworks = new [ ] { null , "net6.0" , "net8.0" , "netstandard2.0" , "netstandard2.1" } }
235
235
} ;
236
236
237
237
//features: top-level statements; nullables; implicit usings; filescoped namespaces
@@ -240,9 +240,9 @@ public async void AotVariants(string name, string language)
240
240
//C# 12 is not supported yet - https://github.com/dotnet/sdk/issues/29195
241
241
string ? [ ] supportedLanguageVersions = { null , "ISO-2" , "2" , "3" , "4" , "5" , "6" , "7" , "7.1" , "7.2" , "7.3" , "8.0" , "9.0" , "10.0" , "11.0" , "11" , /*"12",*/ "latest" , "latestMajor" , "default" , "preview" } ;
242
242
243
- string ? [ ] nullableSupportedInFrameworkByDefault = { null , "net6.0" , "net7.0" , " net8.0", "netstandard2.1" } ;
244
- string ? [ ] implicitUsingsSupportedInFramework = { null , "net6.0" , "net7.0" , " net8.0" } ;
245
- string ? [ ] fileScopedNamespacesSupportedFrameworkByDefault = { null , "net6.0" , "net7.0" , " net8.0" } ;
243
+ string ? [ ] nullableSupportedInFrameworkByDefault = { null , "net6.0" , "net8.0" , "netstandard2.1" } ;
244
+ string ? [ ] implicitUsingsSupportedInFramework = { null , "net6.0" , "net8.0" } ;
245
+ string ? [ ] fileScopedNamespacesSupportedFrameworkByDefault = { null , "net6.0" , "net8.0" } ;
246
246
247
247
string ? [ ] nullableSupportedLanguages = { "8.0" , "9.0" , "10.0" , "11.0" , "11" , /*"12",*/ "latest" , "latestMajor" , "default" , "preview" } ;
248
248
string ? [ ] topLevelStatementSupportedLanguages = { null , "9.0" , "10.0" , "11" , "11.0" , /*"12",*/ "latest" , "latestMajor" , "default" , "preview" } ;
0 commit comments