-
Notifications
You must be signed in to change notification settings - Fork 4
/
Examples-🐒 Ninmonkey.PowerQueryLib.code-workspace
109 lines (108 loc) · 3.63 KB
/
Examples-🐒 Ninmonkey.PowerQueryLib.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"folders": [
{
"path": ".",
"name": "pqlib"
},
{
"path": "..\\PowerQuery-ExampleReports",
"name": "⚓[ref: ExampleReports] 📌"
},
{
"path": "G:/2021-github-downloads/Power-BI/section ┐ PowerQueryScripts/itsnotaboutthecell/powerquerym",
"name": "📕[git: itsnotaboutthecell📱] 📌"
},
{
"path": "G:/2021-github-downloads/Power-BI/section ┐ PowerQueryScripts/alazyworkaholic/M-Libraries",
"name": "📕[git: alazyworkaholic] 📌"
},
{
"path": "C:/Users/cppmo_000/SkyDrive/Documents/2021/Power BI/Buffer",
"name": "📕[git: alazyworkaholic] 📌"
},
/*
*/
],
"settings": {
"terminal.integrated.fontSize": 17,
// "terminal.integrated.fontFamily": "'cascadia code'",
"files.exclude": {
"**/*.pbix": false,
"**/*.pbit": false,
},
"[markdown]": {
"editor.formatOnSave": true,
"editor.wordWrap": "on",
// "editor.quickSuggestions": false,
// "editor.defaultFormatter": "shd101wyy.markdown-preview-enhanced"
// "editor.defaultFormatter": "DavidAnson.vscode-markdownlint",
// "editor.defaultFormatter": "vscode.markdown-language-features",
},
"markdownlint.config": {
"MD028": false,
"MD025": {
"front_matter_title": ""
}
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Build ➔ blog_sketch.pq",
"type": "PowerShell",
"request": "launch",
"script": "${workspaceFolder:pqlib}/util/profile_blog.ps1",
"cwd": "${workspaceFolder:pqlib}"
},
{
// "presentation": {
// "hidden": false,
// "group": "build",
// "order": 1
// },
"name": "Build ➔ web.contents.pq",
"type": "PowerShell",
"request": "launch",
"script": "${workspaceFolder:pqlib}/util/common_profile_web.ps1",
"cwd": "${workspaceFolder:pqlib}"
},
{
// "presentation": {
// "hidden": false,
// "group": "build",
// "order": 1
// },
"name": "Build ➔ common_profile.pq",
"type": "PowerShell",
"request": "launch",
"script": "${workspaceFolder:pqlib}/util/common_profile.ps1",
"cwd": "${workspaceFolder:pqlib}"
},
{
// "presentation": {
// "hidden": false,
// "group": "build",
// "order": 2
// },
"name": "Invoke-BuildPowerQueryLib.ps1",
"type": "PowerShell",
"request": "launch",
"script": "${workspaceFolder:pqlib}/util/Invoke-BuildPowerQueryLib.ps1",
"cwd": "${workspaceFolder:pqlib}"
},
{
"presentation": {
"hidden": false,
"group": "powershell",
"order": 1
},
"name": "cur.ps1 ",
"type": "PowerShell",
"request": "launch",
"script": "${file}",
"cwd": "${file}"
}
]
}
}