mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-04-02 21:47:42 -05:00
Don't add tasks before run to idea anymore for arch
This commit is contained in:
@@ -186,14 +186,16 @@ public class GenVsCodeProjectTask extends AbstractLoomTask {
|
||||
public Map<String, String> env = new LinkedHashMap<>();
|
||||
public transient List<String> tasksBeforeRun = new ArrayList<>();
|
||||
public String preLaunchTask = null;
|
||||
public String projectName = null;
|
||||
|
||||
VsCodeConfiguration(RunConfig runConfig) {
|
||||
this.name = runConfig.configName;
|
||||
this.mainClass = runConfig.mainClass;
|
||||
this.vmArgs = runConfig.vmArgs;
|
||||
this.args = runConfig.programArgs;
|
||||
this.projectName = runConfig.vscodeProjectName;
|
||||
this.env.putAll(runConfig.envVariables);
|
||||
this.tasksBeforeRun.addAll(runConfig.tasksBeforeRun);
|
||||
this.tasksBeforeRun.addAll(runConfig.vscodeBeforeRun);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user