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
.NET Core applications are configured to be deployed along with `vsdbg`.
230
+
.NET Core applications are configured to be deployed along with `vsdbg`
231
+
for VS Code.
232
+
231
233
232
234
.NET Core application are recognized by:
233
235
- the presence of a standard .NET environment variable:
@@ -237,7 +239,14 @@ a debug launcher that examines the app command-line.
237
239
238
240
Furthermore, your app must be built with the `--configuration Debug` options to disable optimizations.
239
241
240
-
**Note for users of [VS Code's debug adapter for C#](https://github.com/OmniSharp/omnisharp-vscode):**
242
+
243
+
{{< alert title="JetBrains Rider" >}}
244
+
This set up does not yet work automatically with [Cloud Code for IntelliJ in JetBrains Rider](https://github.com/GoogleCloudPlatform/cloud-code-intellij/issues/2903).
245
+
There is [a manual workaround](https://github.com/GoogleCloudPlatform/cloud-code-intellij/wiki/Manual-set-up-for-remote-debugging-in-Rider).
246
+
{{< /alert >}}
247
+
248
+
{{< alert title="Omnisharp for VS Code" >}}
249
+
For users of [VS Code's debug adapter for C#](https://github.com/OmniSharp/omnisharp-vscode):**
241
250
the following configuration can be used to debug a container. It assumes that your code is deployed
242
251
in `/app` or `/src` folder in the container. If that is not the case, the `sourceFileMap` property
243
252
should be changed to match the correct folder. `processId` is usually 1 but might be different if you
@@ -272,6 +281,7 @@ your base image. (`//` comments must be stripped.)
0 commit comments