-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathOpenFeature.code-workspace
68 lines (68 loc) · 2.21 KB
/
OpenFeature.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
{
"settings": {
"CRS.ObjectNameSuffix": "_FF_TSL",
"CRS.OnSaveAlFileAction": "Rename",
"CRS.DisableDefaultAlSnippets": true,
"CRS.RenameWithGit": true,
"CRS.FileNamePattern": "<ObjectNameShort>.<ObjectTypeShortPascalCase>.al",
"CRS.FileNamePatternExtensions": "<ObjectNameShort>.<ObjectTypeShortPascalCase>.al",
"CRS.FileNamePatternPageCustomizations": "<ObjectNameShort>.<ObjectTypeShortPascalCase>.al",
"CRS.RemoveSuffixFromFilename": true,
"CRS.RemoveUnderscoreFromFilename": true,
"al.packageCachePath": "../.alpackages",
"al.enableCodeAnalysis": true,
"al.codeAnalyzers": [
"${CodeCop}",
"${PerTenantExtensionCop}"
],
"al.assemblyProbingPaths": [
"./.netpackages",
"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6"
],
"al.snapshotOutputPath": "../.snapshots",
"al.snapshotDebuggingPath": "../.snapshots",
"al.ruleSetPath": "../al.ruleset.json",
"files.exclude": {
"**/.snapshots": true,
".vscode/rad.json": true,
".vscode/al.code-snippets": true,
".vscode/md.code-snippets": true,
".vscode/json.code-snippets": true
},
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.autoSave": "off",
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"NAB.SigningCertificateName": "Theta Systems Limited",
"NAB.SigningTimeStampServer": "http://timestamp.digicert.com",
"NAB.SignToolPath": "C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.19041.0\\x86\\signtool.exe"
},
"extensions": {
"recommendations": [
"ms-dynamics-smb.al",
"waldo.crs-al-language-extension"
]
},
"folders": [
{
"path": ".alpackages"
},
{
"path": "DOCS"
},
{
"path": "MAIN"
},
{
"path": "TEST"
},
{
"path": "EXAMPLE01"
},
{
"path": "EXAMPLE02"
}
]
}