Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelldi committed Oct 1, 2024
1 parent 904b0eb commit a8f9d45
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 12 deletions.
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@ intellijPlatform {
// The pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3
// Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more:
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
channels = providers.gradleProperty("pluginVersion").map { listOf(it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" }) }
channels = providers.gradleProperty("pluginVersion")
.map { listOf(it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" }) }
hidden = true
}

pluginVerification {
Expand Down
2 changes: 1 addition & 1 deletion qodana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://www.jetbrains.com/help/qodana/qodana-yaml.html

version: 1.0
linter: jetbrains/qodana-jvm-community:2024.2
linter: jetbrains/qodana-jvm:2024.2
projectJDK: "17"
profile:
name: qodana.recommended
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ class AspireHostConfigurationParameters(
"",
true,
hashMapOf(),
false,
true,
usePodmanRuntime = false,
trackUrl = true,
DotNetStartBrowserParameters()
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ class AspireHostExecutorFactory(
params.tfm ?: projectOutput.tfm,
params.workingDirectoryPath ?: projectOutput.workingDirectory,
params.commandLineArgumentString ?: ParametersListUtil.join(projectOutput.defaultArguments),
false,
false,
useMonoRuntime = false,
useExternalConsole = false,
params.environmentVariables,
true,
getStartBrowserAction(effectiveUrl, parameters.startBrowserParameters),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ class SessionExecutableFactory(private val project: Project) {
executableParams.tfm ?: output.tfm,
executableParams.workingDirectoryPath ?: workingDirectory,
executableParams.commandLineArgumentString ?: arguments,
false,
false,
useMonoRuntime = false,
useExternalConsole = false,
executableParams.environmentVariables,
false,
browserAction,
Expand Down Expand Up @@ -167,8 +167,8 @@ class SessionExecutableFactory(private val project: Project) {
executableParams.tfm ?: properties.targetFramework,
executableParams.workingDirectoryPath ?: workingDirectory,
executableParams.commandLineArgumentString ?: arguments,
false,
false,
useMonoRuntime = false,
useExternalConsole = false,
executableParams.environmentVariables,
false,
browserAction,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import com.jetbrains.rider.debugger.wasm.BrowserHub
import com.jetbrains.rider.run.configurations.HotReloadEnvironmentBuilder
import com.jetbrains.rider.runtime.DotNetExecutable
import com.jetbrains.rider.runtime.dotNetCore.DotNetCoreRuntime
import kotlinx.coroutines.ExperimentalCoroutinesApi
import java.nio.file.Path
import kotlin.io.path.absolutePathString

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,13 @@ class MSBuildPropertyService(private val project: Project) {
}
}

return RdTargetFrameworkId(versionInfo, ".NETCoreApp", targetFramework, true, false)
return RdTargetFrameworkId(
versionInfo,
".NETCoreApp",
targetFramework,
isNetCoreApp = true,
isNetFramework = false
)
}

private fun getExecutablePath(runCommand: String): Path? {
Expand Down

0 comments on commit a8f9d45

Please sign in to comment.