Use of Splitter

dotnet 8.0.100
This commit is contained in:
2025-02-26 12:36:41 -07:00
parent 18ee50624e
commit cb333ec871
7 changed files with 71 additions and 14 deletions

1
.vscode/format-report.json vendored Normal file
View File

@ -0,0 +1 @@
[]

5
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"[markdown]": {
"editor.wordWrap": "off"
}
}

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

@ -0,0 +1,28 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "Build Self",
"command": "dotnet",
"type": "process",
"args": [
"build",
"--runtime",
"win-x64",
"--self-contained"
],
"problemMatcher": "$msCompile"
},
]
}