Skip to content

Commit 6b68bc6

Browse files
committed
Documentation Github Pages Added
1 parent fee015a commit 6b68bc6

File tree

68 files changed

+821
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+821
-1
lines changed

.vscode/commandbar.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,20 @@
2525
"text": "📦 Pack",
2626
"tooltip": "Pack Dotnet",
2727
"color": "yellow",
28-
"command": "dotnet pack",
28+
"command": "workbench.action.tasks.runTask|dotnet restore,workbench.action.tasks.runTask|build release netcore31,workbench.action.tasks.runTask|build release net50",
29+
"commandType": "palette",
2930
"alignment": "right",
3031
"skipTerminateQuickPick": false,
3132
"priority": 202
33+
},
34+
{
35+
"text": "🧱 Docfx",
36+
"tooltip": "Docfx Build",
37+
"color": "yellow",
38+
"command": "workbench.action.tasks.runTask|docfx build",
39+
"commandType": "palette",
40+
"alignment": "right",
41+
"skipTerminateQuickPick": false,
42+
"priority": 203
3243
}]
3344
}

.vscode/tasks.json

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,71 @@
3737
"/consoleloggerparameters:NoSummary"
3838
],
3939
"problemMatcher": "$msCompile"
40+
},
41+
{
42+
"label": "dotnet restore",
43+
"command": "dotnet",
44+
"type": "process",
45+
"args": [
46+
"restore",
47+
"${workspaceFolder}/LDtkMonogame.Examples/LDtkMonogame.Examples.csproj",
48+
"/property:GenerateFullPaths=true",
49+
"/consoleloggerparameters:NoSummary"
50+
],
51+
"problemMatcher": "$msCompile"
52+
},
53+
{
54+
"label": "build release netcore31",
55+
"command": "dotnet",
56+
"type": "process",
57+
"args": [
58+
"build",
59+
"-c",
60+
"Release",
61+
"-f",
62+
"netcoreapp3.1",
63+
"${workspaceFolder}/LDtkMonogame.Examples/LDtkMonogame.Examples.csproj",
64+
"/property:GenerateFullPaths=true",
65+
"/consoleloggerparameters:NoSummary"
66+
],
67+
"problemMatcher": "$msCompile"
68+
},
69+
{
70+
"label": "build release net50",
71+
"command": "dotnet",
72+
"type": "process",
73+
"args": [
74+
"build",
75+
"-c",
76+
"Release",
77+
"-f",
78+
"net5.0",
79+
"${workspaceFolder}/LDtkMonogame.Examples/LDtkMonogame.Examples.csproj",
80+
"/property:GenerateFullPaths=true",
81+
"/consoleloggerparameters:NoSummary"
82+
],
83+
"problemMatcher": "$msCompile"
84+
},
85+
{
86+
"label": "pack",
87+
"command": "dotnet",
88+
"type": "process",
89+
"args": [
90+
"build",
91+
"run",
92+
"${workspaceFolder}/LDtkMonogame.Examples/LDtkMonogame.Examples.csproj",
93+
"/property:GenerateFullPaths=true",
94+
"/consoleloggerparameters:NoSummary"
95+
],
96+
"problemMatcher": "$msCompile"
97+
},
98+
{
99+
"label": "docfx build",
100+
"command": "docfx",
101+
"type": "process",
102+
"args": [
103+
"${workspaceFolder}/wiki/docfx.json"],
104+
"problemMatcher": "$msCompile"
40105
}
41106
]
42107
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)