We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cec8149 commit 4118f94Copy full SHA for 4118f94
src/controllers/projectController.ts
@@ -96,6 +96,7 @@ enum ProjectType {
96
MicroProfile = "MicroProfile",
97
JavaFX = "JavaFX",
98
Micronaut = "Micronaut",
99
+ GCN = "GCN",
100
}
101
102
async function ensureExtension(typeName: string, metaData: IProjectTypeMetadata): Promise<boolean> {
@@ -260,4 +261,13 @@ const projectTypes: IProjectType[] = [
260
261
createCommandId: "extension.micronaut.createProject",
262
},
263
264
+ {
265
+ displayName: "Graal Cloud Native",
266
+ metadata: {
267
+ type: ProjectType.GCN,
268
+ extensionId: "oracle-labs-graalvm.gcn",
269
+ extensionName: "Graal Cloud Native Tools",
270
+ createCommandId: "gcn.createGcnProject",
271
+ },
272
273
];
0 commit comments