From 271d2223a14cb222a1482270c0c8854fe7f5925b Mon Sep 17 00:00:00 2001 From: Charlie Poole Date: Wed, 1 Oct 2025 07:08:44 -0700 Subject: [PATCH] Add AgentType and TargetFramework extension properties --- src/launcher/Net80AgentLauncher.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/launcher/Net80AgentLauncher.cs b/src/launcher/Net80AgentLauncher.cs index c4468fd..917168b 100644 --- a/src/launcher/Net80AgentLauncher.cs +++ b/src/launcher/Net80AgentLauncher.cs @@ -14,6 +14,8 @@ namespace NUnit.Engine.Agents { [Extension(Description = "Pluggable agent running tests under .NET 8.0", EngineVersion = "4.0.0")] + [ExtensionProperty("AgentType", "LocalProcess")] + [ExtensionProperty("TargetFramework", ".NETCoreApp,Version=8.0")] public class Net80AgentLauncher : IAgentLauncher { private static readonly string LAUNCHER_DIR = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);