diff --git a/test/dotnet/install_aspnetcore_runtime_only.sh b/test/dotnet/install_aspnetcore_runtime_only.sh index 35bd540b7..78e4f099c 100644 --- a/test/dotnet/install_aspnetcore_runtime_only.sh +++ b/test/dotnet/install_aspnetcore_runtime_only.sh @@ -18,10 +18,6 @@ expected=$(fetch_latest_version "aspnetcore") check "Latest ASP.NET Core Runtime version installed" \ is_aspnetcore_runtime_version_installed "$expected" -# Expect this check to fail in November 2023 when .NET 8.0 becomes GA -check "It is a flavor of .NET 7.0" \ -is_aspnetcore_runtime_version_installed "7.0" - # Report results # If any of the checks above exited with a non-zero exit code, the test will fail. reportResults \ No newline at end of file diff --git a/test/dotnet/install_dotnet_latest_when_version_is_empty.sh b/test/dotnet/install_dotnet_latest_when_version_is_empty.sh index 7418892e1..cd23edcf1 100644 --- a/test/dotnet/install_dotnet_latest_when_version_is_empty.sh +++ b/test/dotnet/install_dotnet_latest_when_version_is_empty.sh @@ -18,12 +18,8 @@ expected=$(fetch_latest_version) check "Latest .NET SDK version installed" \ is_dotnet_sdk_version_installed "$expected" -# Expect this check to fail in November 2023 when .NET 8.0 becomes GA -check "It is a flavor of .NET 7.0" \ -is_dotnet_sdk_version_installed "7.0" - check "Build and run example project" \ -dotnet run --project projects/net7.0 +dotnet run --project projects/net8.0 # Report results # If any of the checks above exited with a non-zero exit code, the test will fail. diff --git a/test/dotnet/install_dotnet_lts.sh b/test/dotnet/install_dotnet_lts.sh index fe37b89f7..bc2d40782 100644 --- a/test/dotnet/install_dotnet_lts.sh +++ b/test/dotnet/install_dotnet_lts.sh @@ -19,7 +19,7 @@ check "Latest LTS version installed" \ is_dotnet_sdk_version_installed "$expected" check "Build and run example project" \ -dotnet run --project projects/net6.0 +dotnet run --project projects/net8.0 # Report results # If any of the checks above exited with a non-zero exit code, the test will fail. diff --git a/test/dotnet/install_dotnet_runtime_only.sh b/test/dotnet/install_dotnet_runtime_only.sh index 65188c5ec..3c58340d1 100644 --- a/test/dotnet/install_dotnet_runtime_only.sh +++ b/test/dotnet/install_dotnet_runtime_only.sh @@ -18,10 +18,6 @@ expected=$(fetch_latest_version "dotnet") check "Latest .NET Runtime version installed" \ is_dotnet_runtime_version_installed "$expected" -# Expect this check to fail in November 2023 when .NET 8.0 becomes GA -check "It is a flavor of .NET 7.0" \ -is_dotnet_runtime_version_installed "7.0" - # Report results # If any of the checks above exited with a non-zero exit code, the test will fail. reportResults \ No newline at end of file diff --git a/test/dotnet/test.sh b/test/dotnet/test.sh index 7418892e1..cd23edcf1 100644 --- a/test/dotnet/test.sh +++ b/test/dotnet/test.sh @@ -18,12 +18,8 @@ expected=$(fetch_latest_version) check "Latest .NET SDK version installed" \ is_dotnet_sdk_version_installed "$expected" -# Expect this check to fail in November 2023 when .NET 8.0 becomes GA -check "It is a flavor of .NET 7.0" \ -is_dotnet_sdk_version_installed "7.0" - check "Build and run example project" \ -dotnet run --project projects/net7.0 +dotnet run --project projects/net8.0 # Report results # If any of the checks above exited with a non-zero exit code, the test will fail.