{ "version": "2.0.0", "tasks": [ { "label": "Run Data_Coupler", "type": "shell", "command": "dotnet", "args": [ "run", "--project", "Data_Coupler/Data_Coupler.csproj" ], "group": "build", "isBackground": true, "problemMatcher": [] }, { "label": "Test Database Initialization", "type": "shell", "command": "dotnet", "args": [ "run" ], "group": "build", "isBackground": true, "problemMatcher": [], "options": { "cwd": "${workspaceFolder}/Data_Coupler" } }, { "label": "Publish Data_Coupler Temp SingleFile Self-Contained Ready-To-Run win-x64", "detail": "Publish the Data Coupler 64-bit with a Single File, Self Contained, Ready-To-Run", "type": "shell", "command": "dotnet", "args": [ "publish", "Data_Coupler/Data_Coupler.csproj", "-c", "Release", "-r", "win-x64", "--self-contained", "true", "-p:PublishSingleFile=true", "-p:PublishReadyToRun=true", "-p:PublishTrimmed=false", "-o", "C:\\Temp\\Publish\\Data_Coupler" ], "group": "build", "problemMatcher": [] }, { "label": "Publish Data_Coupler Temp SingleFile Self-Contained Ready-To-Run win-x86", "detail": "Publish the Data Coupler 32-bit with a Single File, Self Contained, Ready-To-Run", "type": "shell", "command": "dotnet", "args": [ "publish", "Data_Coupler/Data_Coupler.csproj", "-c", "Release", "-r", "win-x86", "--self-contained", "true", "-p:PublishSingleFile=true", "-p:PublishReadyToRun=true", "-p:PublishTrimmed=false", "-o", "C:\\Temp\\Publish\\Data_Coupler_x86" ], "group": "build", "problemMatcher": [] } ] }