@@ -64,13 +64,15 @@ BuildSettings.Packages.AddRange(new PackageDefinition[] {
64
64
HasDirectory ( "tools" ) . WithFiles ( "nunit3-console.exe" , "nunit3-console.exe.config" ) . AndFiles ( ENGINE_FILES ) ,
65
65
HasDirectory ( "tools/agents/net462" ) . WithFiles ( AGENT_FILES ) ,
66
66
HasDirectory ( "tools/agents/net6.0" ) . WithFiles ( AGENT_FILES_NETCORE ) ,
67
- HasDirectory ( "tools/agents/net8.0" ) . WithFiles ( AGENT_FILES_NETCORE )
67
+ HasDirectory ( "tools/agents/net8.0" ) . WithFiles ( AGENT_FILES_NETCORE ) ,
68
+ HasDirectory ( "tools/agents/net9.0" ) . WithFiles ( AGENT_FILES_NETCORE )
68
69
} ,
69
70
symbols : new PackageCheck [ ] {
70
71
HasDirectory ( "tools" ) . WithFiles ( ENGINE_PDB_FILES ) . AndFile ( "nunit3-console.pdb" ) ,
71
72
HasDirectory ( "tools/agents/net462" ) . WithFiles ( AGENT_PDB_FILES ) ,
72
73
HasDirectory ( "tools/agents/net6.0" ) . WithFiles ( AGENT_PDB_FILES_NETCORE ) ,
73
- HasDirectory ( "tools/agents/net8.0" ) . WithFiles ( AGENT_PDB_FILES_NETCORE )
74
+ HasDirectory ( "tools/agents/net8.0" ) . WithFiles ( AGENT_PDB_FILES_NETCORE ) ,
75
+ HasDirectory ( "tools/agents/net9.0" ) . WithFiles ( AGENT_PDB_FILES_NETCORE )
74
76
} ,
75
77
testRunner : new ConsoleRunnerSelfTester ( BuildSettings . NuGetTestDirectory
76
78
+ $ "NUnit.ConsoleRunner.{ BuildSettings . PackageVersion } /tools/nunit3-console.exe") ,
@@ -101,7 +103,8 @@ BuildSettings.Packages.AddRange(new PackageDefinition[] {
101
103
HasDirectory ( "tools" ) . WithFiles ( "LICENSE.txt" , "NOTICES.txt" , "VERIFICATION.txt" , "nunit3-console.exe" , "nunit3-console.exe.config" ) . AndFiles ( ENGINE_FILES ) ,
102
104
HasDirectory ( "tools/agents/net462" ) . WithFiles ( AGENT_FILES ) ,
103
105
HasDirectory ( "tools/agents/net6.0" ) . WithFiles ( AGENT_FILES_NETCORE ) ,
104
- HasDirectory ( "tools/agents/net8.0" ) . WithFiles ( AGENT_FILES_NETCORE )
106
+ HasDirectory ( "tools/agents/net8.0" ) . WithFiles ( AGENT_FILES_NETCORE ) ,
107
+ HasDirectory ( "tools/agents/net9.0" ) . WithFiles ( AGENT_FILES_NETCORE )
105
108
} ,
106
109
testRunner : new ConsoleRunnerSelfTester ( BuildSettings . ChocolateyTestDirectory
107
110
+ $ "nunit-console-runner.{ BuildSettings . PackageVersion } /tools/nunit3-console.exe") ,
@@ -122,6 +125,7 @@ BuildSettings.Packages.AddRange(new PackageDefinition[] {
122
125
HasDirectory ( "bin/agents/net462" ) . WithFiles ( AGENT_FILES ) . AndFiles ( AGENT_PDB_FILES ) ,
123
126
HasDirectory ( "bin/agents/net6.0" ) . WithFiles ( AGENT_FILES_NETCORE ) . AndFiles ( AGENT_PDB_FILES_NETCORE ) ,
124
127
HasDirectory ( "bin/agents/net8.0" ) . WithFiles ( AGENT_FILES_NETCORE ) . AndFiles ( AGENT_PDB_FILES_NETCORE ) ,
128
+ HasDirectory ( "bin/agents/net9.0" ) . WithFiles ( AGENT_FILES_NETCORE ) . AndFiles ( AGENT_PDB_FILES_NETCORE ) ,
125
129
} ,
126
130
testRunner : new ConsoleRunnerSelfTester ( BuildSettings . ZipTestDirectory
127
131
+ $ "NUnit.Console.{ BuildSettings . PackageVersion } /bin/net462/nunit3-console.exe") ,
0 commit comments