Skip to content

Commit b793618

Browse files
committed
Add vscode settings
1 parent 48b44ac commit b793618

File tree

3 files changed

+116
-0
lines changed

3 files changed

+116
-0
lines changed

.vscode/launch.json

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
// Needed for debugging with VS Code
3+
// Use IntelliSense to learn about possible attributes.
4+
// Hover to view descriptions of existing attributes.
5+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Unity Editor",
10+
"type": "unity",
11+
"path": "${workspaceFolder}/Library/EditorInstance.json",
12+
"request": "launch"
13+
},
14+
{
15+
"name": "Windows Player",
16+
"type": "unity",
17+
"request": "launch"
18+
},
19+
{
20+
"name": "OSX Player",
21+
"type": "unity",
22+
"request": "launch"
23+
},
24+
{
25+
"name": "Linux Player",
26+
"type": "unity",
27+
"request": "launch"
28+
},
29+
{
30+
"name": "iOS Player",
31+
"type": "unity",
32+
"request": "launch"
33+
},
34+
{
35+
"name": "Android Player",
36+
"type": "unity",
37+
"request": "launch"
38+
},
39+
{
40+
"name": "Xbox One Player",
41+
"type": "unity",
42+
"request": "launch"
43+
},
44+
{
45+
"name": "PS4 Player",
46+
"type": "unity",
47+
"request": "launch"
48+
},
49+
{
50+
"name": "SwitchPlayer",
51+
"type": "unity",
52+
"request": "launch"
53+
}
54+
]
55+
}

.vscode/settings.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"files.exclude":
3+
{
4+
"**/.DS_Store":true,
5+
"**/.git":true,
6+
"**/.gitmodules":true,
7+
"**/*.pidb":true,
8+
"**/*.suo":true,
9+
"**/*.user":true,
10+
"**/*.userprefs":true,
11+
"**/*.unityproj":true,
12+
"**/*.meta":true,
13+
"Library/":true,
14+
"library/":true,
15+
"obj/":true,
16+
"Obj/":true,
17+
"temp/":true,
18+
"Temp/":true
19+
}
20+
}

.vscode/tasks.json

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/Assembly-CSharp.csproj",
11+
"/property:GenerateFullPaths=true",
12+
"/consoleloggerparameters:NoSummary"
13+
],
14+
"problemMatcher": "$msCompile"
15+
},
16+
{
17+
"label": "publish",
18+
"command": "dotnet",
19+
"type": "process",
20+
"args": [
21+
"publish",
22+
"${workspaceFolder}/Assembly-CSharp.csproj",
23+
"/property:GenerateFullPaths=true",
24+
"/consoleloggerparameters:NoSummary"
25+
],
26+
"problemMatcher": "$msCompile"
27+
},
28+
{
29+
"label": "watch",
30+
"command": "dotnet",
31+
"type": "process",
32+
"args": [
33+
"watch",
34+
"run",
35+
"--project",
36+
"${workspaceFolder}/Assembly-CSharp.csproj"
37+
],
38+
"problemMatcher": "$msCompile"
39+
}
40+
]
41+
}

0 commit comments

Comments
 (0)