@@ -210,7 +210,7 @@ function doCommand() {
210
210
else
211
211
" ${dotnetCmd} " $newArgs --no-restore >> " $logFile " 2>&1
212
212
fi
213
- elif [[ " $1 " == " run" && " $proj " =~ ^(web| mvc| webapi| razor| blazorwasm| blazorserver)$ ]]; then
213
+ elif [[ " $1 " == " run" && " $proj " =~ ^(web| mvc| webapi| webapp | worker | razor| blazorwasm| blazorserver)$ ]]; then
214
214
# A separate log file that we will over-write all the time.
215
215
exitLogFile=" $testingDir /exitLogFile"
216
216
echo > " $exitLogFile "
@@ -293,13 +293,15 @@ function runAllTests() {
293
293
doCommand C# classlib new restore build multi-rid-publish
294
294
doCommand C# xunit new restore test
295
295
doCommand C# mstest new restore test
296
+ doCommand C# worker new restore build run multi-rid-publish
296
297
297
298
doCommand VB console new restore build run multi-rid-publish
298
299
doCommand VB classlib new restore build multi-rid-publish
299
300
doCommand VB xunit new restore test
300
301
doCommand VB mstest new restore test
301
302
302
303
doCommand F# console new restore build run multi-rid-publish
304
+ doCommand F# worker new restore build run multi-rid-publish
303
305
doCommand F# classlib new restore build multi-rid-publish
304
306
doCommand F# xunit new restore test
305
307
doCommand F# mstest new restore test
@@ -323,6 +325,7 @@ function runWebTests() {
323
325
doCommand C# web " $@ " new restore build run multi-rid-publish
324
326
doCommand C# mvc " $@ " new restore build run multi-rid-publish
325
327
doCommand C# webapi " $@ " new restore build multi-rid-publish
328
+ doCommand C# webapp " $@ " new restore build multi-rid-publish
326
329
doCommand C# razor " $@ " new restore build run multi-rid-publish
327
330
doCommand C# blazorwasm " $@ " new restore build run publish
328
331
doCommand C# blazorserver " $@ " new restore build run publish
0 commit comments