default run is to list topics
Some checks failed
greyn/franz/pipeline/head There was a failure building this commit
gitea/franz/pipeline/head There was a failure building this commit

because for some reason auto create is not a thing
This commit is contained in:
Adam R Grey 2023-05-21 19:02:53 -04:00
parent 8e42797116
commit 240606336b
4 changed files with 10 additions and 4 deletions

3
.vscode/launch.json vendored
View File

@ -10,7 +10,8 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/franz.tests/bin/Debug/net7.0/franz.tests.dll",
//"program": "${workspaceFolder}/franz.tests/bin/Debug/net7.0/franz.tests.dll",
"program": "${workspaceFolder}/topiclister/bin/Debug/net7.0/topiclister.dll",
"args": [],
"cwd": "${workspaceFolder}/franz.tests",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console

4
.vscode/tasks.json vendored
View File

@ -19,7 +19,7 @@
"type": "process",
"args": [
"publish",
"${workspaceFolder}/franz.tests/franz.tests.csproj",
"${workspaceFolder}/topiclister/topiclister.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
@ -32,7 +32,7 @@
"args": [
"watch",
"run",
"${workspaceFolder}/franz.tests/franz.tests.csproj",
"${workspaceFolder}/topiclister/topiclister.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],

5
Jenkinsfile vendored
View File

@ -4,6 +4,11 @@ pipeline {
dotnetsdk "net7.0"
}
stages {
stage ('Clean workspace') {
steps {
cleanWs()
}
}
stage('build franz') {
steps {
echo 'building franz'