Remove exlusions
This commit is contained in:
parent
b35586b44a
commit
04b0c9685c
1 changed files with 2 additions and 4 deletions
|
@ -394,13 +394,11 @@ namespace EndToEnd.Tests
|
||||||
int latestMajorVersion = runtimeFolders.Select(folder => int.Parse(Path.GetFileName(folder).Split('.').First())).Max();
|
int latestMajorVersion = runtimeFolders.Select(folder => int.Parse(Path.GetFileName(folder).Split('.').First())).Max();
|
||||||
if (latestMajorVersion == 8)
|
if (latestMajorVersion == 8)
|
||||||
{
|
{
|
||||||
|
// Return net7.0 for templates that don't support
|
||||||
|
// net8.0 yet.
|
||||||
if (template.StartsWith("blazor")
|
if (template.StartsWith("blazor")
|
||||||
|| template.StartsWith("mstest")
|
|
||||||
|| template.StartsWith("classlib")
|
|| template.StartsWith("classlib")
|
||||||
|| template.StartsWith("console")
|
|| template.StartsWith("console")
|
||||||
|| template.StartsWith("nunit")
|
|
||||||
|| template.StartsWith("xunit")
|
|
||||||
|| template.StartsWith("xunit")
|
|
||||||
|| template.StartsWith("mvc")
|
|| template.StartsWith("mvc")
|
||||||
|| template.StartsWith("web")
|
|| template.StartsWith("web")
|
||||||
|| template.StartsWith("worker")
|
|| template.StartsWith("worker")
|
||||||
|
|
Loading…
Reference in a new issue