Files
file-folder-helper/.vscode/tasks.json
phares@iscn5cg20977xq 88bdd33285 created-date-offset (Day-Helper-2025-08-03)
P and J drives

Tasks json file inputs

IDE0005 none
2025-08-11 09:08:14 -07:00

354 lines
10 KiB
JSON

{
"inputs": [
{
"default": "Development",
"description": "Which ASP Net Core Environment?",
"id": "ASPNETCORE_ENVIRONMENT",
"options": [
"Development",
"Production"
],
"type": "pickString"
},
{
"default": "{AssemblyTitle}",
"description": "What Assembly Title?",
"id": "AssemblyTitle",
"type": "promptString"
},
{
"default": "{Build.BuildId}",
"description": "Which Build BuildId?",
"id": "Build.BuildId",
"type": "promptString"
},
{
"default": "{Build.Reason}",
"description": "Which Build Reason?",
"id": "Build.Reason",
"type": "promptString"
},
{
"default": "{Build.Repository.Id}",
"description": "Which Build Repository Id?",
"id": "Build.Repository.Id",
"type": "promptString"
},
{
"default": "{Build.Repository.Name}",
"description": "Which Build Repository Name?",
"id": "Build.Repository.Name",
"type": "promptString"
},
{
"default": "{Build.SourceVersion}",
"description": "Which Build Source Version?",
"id": "Build.SourceVersion",
"type": "promptString"
},
{
"default": "Debug",
"description": "Which Configuration?",
"id": "Configuration",
"options": [
"Debug",
"Release"
],
"type": "pickString"
},
{
"default": "net8.0",
"description": "Which Core Version?",
"id": "CoreVersion",
"options": [
"net8.0"
],
"type": "pickString"
},
{
"default": "C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/MSBuild/Current/Bin/MSBuild.exe",
"description": "Which MS Build?",
"id": "MSBuild",
"type": "promptString"
},
{
"default": "https://artifactory.intra.infineon.com/artifactory/api/nuget/ngt-fi-package-main-vir/",
"description": "Which Nuget Source?",
"id": "NugetSource",
"type": "promptString"
},
{
"default": "win-x64",
"description": "Which Runtime?",
"id": "Runtime",
"options": [
"win-x64",
"win-x32",
"linux-x64",
"linux-x32"
],
"type": "pickString"
},
{
"default": "L:/",
"description": "Which System DefaultWorkingDirectory?",
"id": "System.DefaultWorkingDirectory",
"options": [
"L:/",
"D:/",
"C:/"
],
"type": "pickString"
},
{
"default": "v4.8",
"description": "Which Core Target Framework Version?",
"id": "TargetFrameworkVersion",
"options": [
"v4.8"
],
"type": "pickString"
},
{
"default": "{UserSecretsId}",
"description": "Which Core User Secrets Id?",
"id": "UserSecretsId",
"type": "promptString"
}
],
"tasks": [
{
"args": [
"user-secrets",
"-p",
"${workspaceFolder}/File-Folder-Helper.csproj",
"init"
],
"command": "dotnet",
"label": "User Secrets Init",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"args": [
"user-secrets",
"-p",
"${workspaceFolder}/File-Folder-Helper.csproj",
"set",
"_UserSecretsId",
"0c43f9aa-96e9-4298-967c-ed069d79e262"
],
"command": "dotnet",
"label": "User Secrets Set",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"args": [
"format",
"--report",
".vscode",
"--verbosity",
"detailed",
"--severity",
"warn"
],
"command": "dotnet",
"label": "Format",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"args": [
"format",
"whitespace"
],
"command": "dotnet",
"label": "Format Whitespaces",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"args": [
"build",
"-r",
"win-x64",
"${workspaceFolder}/File-Folder-Helper.csproj"
],
"command": "dotnet",
"label": "Build",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"args": [
"build",
"-r",
"linux-x64",
"${workspaceFolder}/File-Folder-Helper.csproj"
],
"command": "dotnet",
"label": "Build Linux",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"args": [
"login",
"gitea.phares.duckdns.org:443"
],
"command": "podman",
"label": "Podman Login",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"args": [
"build",
"-t",
"file-folder-helper",
"."
],
"command": "podman",
"label": "Podman Build",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"args": [
"image",
"ls"
],
"command": "podman",
"label": "Podman Image List",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"args": [
"run",
"-p",
"5001:5001",
"--name",
"file-folder-helper-001",
"a3de856b5731"
],
"command": "podman",
"label": "Podman Run",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"args": [
"tag",
"a3de856b5731",
"gitea.phares.duckdns.org:443/phares3757/file-folder-helper:latest"
],
"command": "podman",
"label": "Podman Tag",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"args": [
"push",
"gitea.phares.duckdns.org:443/phares3757/file-folder-helper:latest"
],
"command": "podman",
"label": "Podman Push",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"args": [
"publish",
"${workspaceFolder}/File-Folder-Helper.csproj"
],
"command": "dotnet",
"label": "Publish",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/File-Folder-Helper.csproj"
],
"command": "dotnet",
"label": "Watch",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"args": [
"publish",
"-r",
"win-x64",
"-c",
"Release",
"-p:PublishAot=true",
"${workspaceFolder}/File-Folder-Helper.csproj"
],
"command": "dotnet",
"label": "Publish AOT",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"args": [
"publish",
"-r",
"linux-x64",
"-c",
"Release",
"-p:PublishAot=true",
"${workspaceFolder}/File-Folder-Helper.csproj"
],
"command": "dotnet",
"label": "Publish AOT Linux",
"problemMatcher": "$msCompile",
"type": "process"
},
{
"label": "Kanbn Console",
"problemMatcher": [],
"script": "kanbn.board",
"type": "npm"
},
{
"command": "& kanbn board -j | L:/Git/kanbn2md/kanbn2md.exe >.kanbn/board.md",
"label": "Kanbn Write Boad",
"problemMatcher": [],
"type": "shell"
},
{
"label": "Kanbn Write json",
"problemMatcher": [],
"script": "kanbn.board.json",
"type": "npm"
},
{
"command": "npx jest",
"label": "Jest",
"problemMatcher": [],
"type": "shell"
},
{
"args": [
"s",
"X",
"L:/DevOps/Mesa_FI/File-Folder-Helper",
"Day-Helper-2025-03-20",
"false",
"4"
],
"command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe",
"label": "File-Folder-Helper AOT s X Day-Helper-2025-03-20",
"problemMatcher": [],
"type": "shell"
}
],
"version": "2.0.0"
}