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",
|
"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
4
.vscode/tasks.json
vendored
@ -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
5
Jenkinsfile
vendored
@ -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'
|
||||||
|
@ -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)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user