default run is to list topics
because for some reason auto create is not a thing
This commit is contained in:
parent
8e42797116
commit
240606336b
3
.vscode/launch.json
vendored
3
.vscode/launch.json
vendored
@ -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
4
.vscode/tasks.json
vendored
@ -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
5
Jenkinsfile
vendored
@ -4,6 +4,11 @@ pipeline {
|
||||
dotnetsdk "net7.0"
|
||||
}
|
||||
stages {
|
||||
stage ('Clean workspace') {
|
||||
steps {
|
||||
cleanWs()
|
||||
}
|
||||
}
|
||||
stage('build franz') {
|
||||
steps {
|
||||
echo 'building franz'
|
||||
|
@ -12,7 +12,7 @@ namespace topiclister
|
||||
static async Task Main(string[] args)
|
||||
{
|
||||
try{
|
||||
var ignoreme = Telefranz.Instance ;
|
||||
var ignoreme = Telefranz.Instance ;
|
||||
}
|
||||
catch(NotInitializedException)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user