You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New disableSandbox setting (only intended for testing right now)
These particular commands (or subcommands) use sandboxing.
To get our tests to run in a sandbox, we need to disable sandboxing
because you cannot create a new sandbox when you're already running
under a sandbox
Copy file name to clipboardexpand all lines: package.json
+6
Original file line number
Diff line number
Diff line change
@@ -580,6 +580,12 @@
580
580
"markdownDescription": "The path of the SDK to compile against (`--sdk` parameter). This is of use when supporting non-standard SDK layouts on Windows and using custom SDKs. The default SDK is determined by the environment on macOS and Windows.",
581
581
"order": 3
582
582
},
583
+
"swift.disableSandox": {
584
+
"type": "boolean",
585
+
"default": false,
586
+
"markdownDescription": "Disable sandboxing when running SwiftPM commands. You will almost always want this setting disabled.",
0 commit comments