diff --git a/Prebuild/src/Core/Nodes/ProjectNode.cs b/Prebuild/src/Core/Nodes/ProjectNode.cs index 706699b1b2..ff54109f3b 100755 --- a/Prebuild/src/Core/Nodes/ProjectNode.cs +++ b/Prebuild/src/Core/Nodes/ProjectNode.cs @@ -119,7 +119,8 @@ namespace Prebuild.Core.Nodes netstandard2_0, net5_0, net6_0, - net7_0 + net7_0, + net8_0 } /// diff --git a/Prebuild/src/Core/Targets/VS2022Target.cs b/Prebuild/src/Core/Targets/VS2022Target.cs index eec09d144f..c15c0d997d 100644 --- a/Prebuild/src/Core/Targets/VS2022Target.cs +++ b/Prebuild/src/Core/Targets/VS2022Target.cs @@ -109,6 +109,7 @@ namespace Prebuild.Core.Targets case FrameworkVersion.net5_0: case FrameworkVersion.net6_0: case FrameworkVersion.net7_0: + case FrameworkVersion.net8_0: return "ToolsVersion=\"17.0\""; case FrameworkVersion.netstandard2_0: case FrameworkVersion.v4_8: diff --git a/Prebuild/src/Core/Targets/VSGenericTarget.cs b/Prebuild/src/Core/Targets/VSGenericTarget.cs index 61290711bb..4eb5125fd0 100755 --- a/Prebuild/src/Core/Targets/VSGenericTarget.cs +++ b/Prebuild/src/Core/Targets/VSGenericTarget.cs @@ -692,6 +692,7 @@ namespace Prebuild.Core.Targets //ps.WriteLine(" false"); ps.WriteLine(" false"); ps.WriteLine(" false"); + ps.WriteLine(" true"); if (listFiles) ps.WriteLine(" false"); ps.WriteLine(" "); diff --git a/bin/prebuild.dll b/bin/prebuild.dll index 1769bfbe44..14ca3d2116 100644 Binary files a/bin/prebuild.dll and b/bin/prebuild.dll differ