aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Sql/test
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2025-10-15 23:06:59 -0700
committerRob Mensching <rob@firegiant.com>2025-10-15 23:12:35 -0700
commit90157a3799acc06ba094b9c445e50f459f3fd194 (patch)
tree6967e73759f32738750bfadc35158187896edbb5 /src/ext/Sql/test
parent064d58584d57ed8fa45d8f3f570a253a0490561b (diff)
downloadwix-90157a3799acc06ba094b9c445e50f459f3fd194.tar.gz
wix-90157a3799acc06ba094b9c445e50f459f3fd194.tar.bz2
wix-90157a3799acc06ba094b9c445e50f459f3fd194.zip
Update to .NET 8 to fix build
.NET 6 was deprecated so move to .NET 8 and possibly .NET 10 after it releases.
Diffstat (limited to 'src/ext/Sql/test')
-rw-r--r--src/ext/Sql/test/WixToolsetTest.Sql/SqlExtensionFixture.cs5
-rw-r--r--src/ext/Sql/test/WixToolsetTest.Sql/WixToolsetTest.Sql.csproj2
2 files changed, 5 insertions, 2 deletions
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 @@
1// 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. 1// 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.
2 2
3using Microsoft.VisualStudio.TestTools.UnitTesting;
4
5[assembly: Parallelize(Scope = ExecutionScope.MethodLevel)]
6
3namespace WixToolsetTest.Sql 7namespace WixToolsetTest.Sql
4{ 8{
5 using System.Linq; 9 using System.Linq;
6 using Microsoft.VisualStudio.TestTools.UnitTesting;
7 using WixInternal.MSTestSupport; 10 using WixInternal.MSTestSupport;
8 using WixInternal.Core.MSTestPackage; 11 using WixInternal.Core.MSTestPackage;
9 using WixToolset.Sql; 12 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 @@
3 3
4<Project Sdk="MSTest.Sdk"> 4<Project Sdk="MSTest.Sdk">
5 <PropertyGroup> 5 <PropertyGroup>
6 <TargetFramework>net6.0</TargetFramework> 6 <TargetFramework>net8.0</TargetFramework>
7 <IsWixMSTestProject>true</IsWixMSTestProject> 7 <IsWixMSTestProject>true</IsWixMSTestProject>
8 </PropertyGroup> 8 </PropertyGroup>
9 9