Ready to test

This commit is contained in:
2024-02-03 17:30:01 -07:00
commit 85417acb41
21 changed files with 1411 additions and 0 deletions

81
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,81 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "User Secrets Init",
"command": "dotnet",
"type": "process",
"args": [
"user-secrets",
"-p",
"${workspaceFolder}/Parsing-Packets.csproj",
"init"
],
"problemMatcher": "$msCompile"
},
{
"label": "User Secrets Set",
"command": "dotnet",
"type": "process",
"args": [
"user-secrets",
"-p",
"${workspaceFolder}/Parsing-Packets.csproj",
"set",
"asdf",
"6516d19d6569"
],
"problemMatcher": "$msCompile"
},
{
"label": "Format",
"command": "dotnet",
"type": "process",
"args": [
"format",
"--report",
".vscode",
"--verbosity",
"detailed",
"--severity",
"warn"
],
"problemMatcher": "$msCompile"
},
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Parsing-Packets.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "Publish AOT",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"-r",
"win-x64",
"-c",
"Release",
"-p:PublishAot=true",
"${workspaceFolder}/Parsing-Packets.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "Parsing-Packets AOT s V Helpers",
"type": "shell",
"command": "& L:/DevOps/Mesa_FI/Parsing-Packets/bin/Release/net8.0/win-x64/publish/Parsing-Packets.exe s V Helpers",
"problemMatcher": []
}
]
}