Skip to content

Commit

Permalink
上传vscode配置
Browse files Browse the repository at this point in the history
  • Loading branch information
slacker-HD committed Aug 22, 2022
1 parent 393fdb8 commit 658414c
Show file tree
Hide file tree
Showing 23 changed files with 510 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*.user
*.userosscache
*.sln.docstates
.vscode/

# Electron out
out/

Expand Down
22 changes: 22 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.17763.0",
"compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2017/BuildTools/VC/Tools/MSVC/14.16.27023/bin/Hostx64/x64/cl.exe",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "windows-msvc-x64",
"configurationProvider": "ms-vscode.makefile-tools"
}
],
"version": 4
}
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"files.associations": {
"xtr1common": "cpp"
}
}
12 changes: 12 additions & 0 deletions AsyncProjectNOVS/.vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**",
"C:/PTC/Creo 2.0/Common Files/M060/protoolkit/includes"
]
}
],
"version": 4
}
20 changes: 20 additions & 0 deletions AsyncProjectNOVS/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(Windows) Launch",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/AsyncProjectNOVS.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"console": "externalTerminal",
"preLaunchTask": "build"
}
]
}
49 changes: 49 additions & 0 deletions AsyncProjectNOVS/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "process",
"options": {
"cwd": "${workspaceFolder}"
},
"command": "cmd",
"args": [
"/d",
"/c",
"C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\VC\\vcvarsall.bat",
"amd64",
"&&",
"nmake"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": [],
"problemMatcher": []
},
{
"label": "clean",
"type": "process",
"options": {
"cwd": "${workspaceFolder}"
},
"command": "cmd",
"args": [
"/d",
"/c",
"C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\VC\\vcvarsall.bat",
"amd64",
"&&",
"nmake",
"clean"
],
"group": "build",
"dependsOn": [],
"problemMatcher": []
}
]
}
12 changes: 12 additions & 0 deletions BatOpenFile/.vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"C:/PTC/Creo 2.0/Common Files/M060/protoolkit/includes",
"${workspaceFolder}/src/includes"
]
}
],
"version": 4
}
15 changes: 15 additions & 0 deletions BatOpenFile/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(Windows) Attach",
"type": "cppvsdbg",
"request": "attach",
"processId": "7612",
"preLaunchTask": "build"
}
]
}
20 changes: 20 additions & 0 deletions BatOpenFile/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"files.associations": {
"showdirectory.h": "c",
"opensamenamedrw.h": "c",
"cleanworkdirectory.h": "c",
"timesave.h": "c",
"paintcolor.h": "c",
"commonfuns.h": "c",
"main.h": "c",
"prowindows.h": "c",
"proasmcomp.h": "c",
"prouicmd.h": "c",
"AlignSymDim.h": "c",
"qrencode.h": "c",
"renamemdl.h": "c",
"changeworkdirectory.h": "c",
"prouilist.h": "c",
"prtinasmrename.h": "c"
}
}
49 changes: 49 additions & 0 deletions BatOpenFile/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "process",
"options": {
"cwd": "${workspaceFolder}"
},
"command": "cmd",
"args": [
"/d",
"/c",
"C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\VC\\vcvarsall.bat",
"amd64",
"&&",
"nmake"
],
"group": "build",
"dependsOn": [],
"problemMatcher": []
},
{
"label": "clean",
"type": "process",
"options": {
"cwd": "${workspaceFolder}"
},
"command": "cmd",
"args": [
"/d",
"/c",
"C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\VC\\vcvarsall.bat",
"amd64",
"&&",
"nmake",
"clean"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": [],
"problemMatcher": []
}
]
}
12 changes: 12 additions & 0 deletions CreoTool/.vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"C:/PTC/Creo 2.0/Common Files/M060/protoolkit/includes",
"${workspaceFolder}/src/includes"
]
}
],
"version": 4
}
15 changes: 15 additions & 0 deletions CreoTool/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(Windows) Attach",
"type": "cppvsdbg",
"request": "attach",
"processId": "19172",
"preLaunchTask": "build"
}
]
}
23 changes: 23 additions & 0 deletions CreoTool/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"files.associations": {
"showdirectory.h": "c",
"opensamenamedrw.h": "c",
"cleanworkdirectory.h": "c",
"timesave.h": "c",
"paintcolor.h": "c",
"commonfuns.h": "c",
"main.h": "c",
"prowindows.h": "c",
"proasmcomp.h": "c",
"prouicmd.h": "c",
"AlignSymDim.h": "c",
"qrencode.h": "c",
"renamemdl.h": "c",
"changeworkdirectory.h": "c",
"prouilist.h": "c",
"prtinasmrename.h": "c",
"batsnapshot.h": "c",
"battopdf.h": "c",
"faminstexport.h": "c"
}
}
49 changes: 49 additions & 0 deletions CreoTool/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "process",
"options": {
"cwd": "${workspaceFolder}"
},
"command": "cmd",
"args": [
"/d",
"/c",
"C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\VC\\vcvarsall.bat",
"amd64",
"&&",
"nmake"
],
"group": "build",
"dependsOn": [],
"problemMatcher": []
},
{
"label": "clean",
"type": "process",
"options": {
"cwd": "${workspaceFolder}"
},
"command": "cmd",
"args": [
"/d",
"/c",
"C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\VC\\vcvarsall.bat",
"amd64",
"&&",
"nmake",
"clean"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": [],
"problemMatcher": []
}
]
}
12 changes: 12 additions & 0 deletions FamInstExport/.vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"C:/PTC/Creo 2.0/Common Files/M060/protoolkit/includes",
"${workspaceFolder}/src/includes"
]
}
],
"version": 4
}
15 changes: 15 additions & 0 deletions FamInstExport/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(Windows) Attach",
"type": "cppvsdbg",
"request": "attach",
"processId": "7612",
"preLaunchTask": "build"
}
]
}
20 changes: 20 additions & 0 deletions FamInstExport/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"files.associations": {
"showdirectory.h": "c",
"opensamenamedrw.h": "c",
"cleanworkdirectory.h": "c",
"timesave.h": "c",
"paintcolor.h": "c",
"commonfuns.h": "c",
"main.h": "c",
"prowindows.h": "c",
"proasmcomp.h": "c",
"prouicmd.h": "c",
"AlignSymDim.h": "c",
"qrencode.h": "c",
"renamemdl.h": "c",
"changeworkdirectory.h": "c",
"prouilist.h": "c",
"prtinasmrename.h": "c"
}
}
Loading

0 comments on commit 658414c

Please sign in to comment.