Проект создан

This commit is contained in:
2026-03-29 12:54:32 +03:00
commit 09d52aa973
16 changed files with 797 additions and 0 deletions

32
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,32 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Minint: Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/Minint/bin/Debug/net10.0/Minint.dll",
"cwd": "${workspaceFolder}/Minint",
"args": [],
"console": "integratedTerminal",
"stopAtEntry": false
},
{
"name": "Minint: Release",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-release",
"program": "${workspaceFolder}/Minint/bin/Release/net10.0/Minint.dll",
"cwd": "${workspaceFolder}/Minint",
"args": [],
"console": "integratedTerminal",
"stopAtEntry": false
},
{
"name": ".NET: Attach",
"type": "coreclr",
"request": "attach"
}
]
}

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

@@ -0,0 +1,61 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Minint.slnx",
"/property:GenerateFullPaths=true",
"/property:Configuration=Debug",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent",
"panel": "shared"
},
"problemMatcher": "$msCompile"
},
{
"label": "build-release",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Minint.slnx",
"/property:GenerateFullPaths=true",
"/property:Configuration=Release",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"group": "build",
"presentation": {
"reveal": "silent",
"panel": "shared"
},
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Minint/Minint.csproj",
"/property:GenerateFullPaths=true",
"/property:Configuration=Release",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"group": "build",
"presentation": {
"reveal": "always"
},
"problemMatcher": "$msCompile"
}
]
}