Skip to content

Commit b53dbdf

Browse files
committed
rd
1 parent 1adafeb commit b53dbdf

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

buildSrc/src/main/kotlin/toolkit-intellij-subplugin.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ dependencies {
104104
}
105105

106106
tasks.prepareTestSandbox {
107-
disabledPlugins = listOf(
107+
disabledPlugins.addAll(
108108
"com.intellij.swagger",
109109
"org.jetbrains.plugins.kotlin.jupyter",
110110
)

plugins/toolkit/jetbrains-rider/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,11 @@ intellijPlatform {
326326
}
327327

328328
tasks.withType<PrepareSandboxTask>().configureEach {
329+
// com.jetbrains.rd.platform.diagnostics.BackendException:
330+
// There is more than one package with the same ID JetBrains.Platform.UIInteractive.Common in the current deployed packages list.
331+
// An item with the same key has already been added. Key: JetBrains.Platform.UIInteractive.Common
332+
disabledPlugins.add("com.jetbrains.dotTrace.dotMemory")
333+
329334
dependsOn(resharperDllsDir)
330335

331336
intoChild(intellijPlatform.projectName.map { "$it/dotnet" })

0 commit comments

Comments
 (0)