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", "request": "launch",
"preLaunchTask": "build", "preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path. // 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": [], "args": [],
"cwd": "${workspaceFolder}/franz.tests", "cwd": "${workspaceFolder}/franz.tests",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console // 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", "type": "process",
"args": [ "args": [
"publish", "publish",
"${workspaceFolder}/franz.tests/franz.tests.csproj", "${workspaceFolder}/topiclister/topiclister.csproj",
"/property:GenerateFullPaths=true", "/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary" "/consoleloggerparameters:NoSummary"
], ],
@ -32,7 +32,7 @@
"args": [ "args": [
"watch", "watch",
"run", "run",
"${workspaceFolder}/franz.tests/franz.tests.csproj", "${workspaceFolder}/topiclister/topiclister.csproj",
"/property:GenerateFullPaths=true", "/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary" "/consoleloggerparameters:NoSummary"
], ],

5
Jenkinsfile vendored
View File

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

View File

@ -12,7 +12,7 @@ namespace topiclister
static async Task Main(string[] args) static async Task Main(string[] args)
{ {
try{ try{
var ignoreme = Telefranz.Instance ; var ignoreme = Telefranz.Instance ;
} }
catch(NotInitializedException) catch(NotInitializedException)
{ {