Where is the right place to ask for help with Grad...
# getting-started
c
Where is the right place to ask for help with Gradle? I'm trying to add a preprocessor task which runs whenever I compile with
Copy code
task("preprocess", Exec::class) {
    group = "build"
    workingDir = File("..")
    executable = "bin/preproc"
}

tasks.named("desktopRun").dependsOn("preprocess")
but I keep getting "Task with name 'desktopRun' not found in project ':composeApp'.
y
Probably #C19FD9681
Or some #CJLTWPH7S variant channel since this seems like a missing task
c
Ah, yeah. Wasn't showing up so I didn't know it existed.