From 90157a3799acc06ba094b9c445e50f459f3fd194 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 15 Oct 2025 23:06:59 -0700 Subject: Update to .NET 8 to fix build .NET 6 was deprecated so move to .NET 8 and possibly .NET 10 after it releases. --- src/ext/Sql/test/WixToolsetTest.Sql/SqlExtensionFixture.cs | 5 ++++- src/ext/Sql/test/WixToolsetTest.Sql/WixToolsetTest.Sql.csproj | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'src/ext/Sql/test') diff --git a/src/ext/Sql/test/WixToolsetTest.Sql/SqlExtensionFixture.cs b/src/ext/Sql/test/WixToolsetTest.Sql/SqlExtensionFixture.cs index 14ca14c3..0133d082 100644 --- a/src/ext/Sql/test/WixToolsetTest.Sql/SqlExtensionFixture.cs +++ b/src/ext/Sql/test/WixToolsetTest.Sql/SqlExtensionFixture.cs @@ -1,9 +1,12 @@ // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. +using Microsoft.VisualStudio.TestTools.UnitTesting; + +[assembly: Parallelize(Scope = ExecutionScope.MethodLevel)] + namespace WixToolsetTest.Sql { using System.Linq; - using Microsoft.VisualStudio.TestTools.UnitTesting; using WixInternal.MSTestSupport; using WixInternal.Core.MSTestPackage; using WixToolset.Sql; diff --git a/src/ext/Sql/test/WixToolsetTest.Sql/WixToolsetTest.Sql.csproj b/src/ext/Sql/test/WixToolsetTest.Sql/WixToolsetTest.Sql.csproj index 62345258..f417f489 100644 --- a/src/ext/Sql/test/WixToolsetTest.Sql/WixToolsetTest.Sql.csproj +++ b/src/ext/Sql/test/WixToolsetTest.Sql/WixToolsetTest.Sql.csproj @@ -3,7 +3,7 @@ - net6.0 + net8.0 true -- cgit v1.2.3-55-g6feb