@arm-software/vscode-cmsis-csolution
Advanced tools
Comparing version 1.2.3 to 1.3.0
@@ -38,2 +38,14 @@ /* | ||
export type HardwareAndToolchainInfo = { | ||
buildContext: BuildContext; | ||
projectPath: string; | ||
compiler: string; | ||
device: { name: string, vendor: string }; | ||
processorName: string, | ||
fpu: string, | ||
mpu: string, | ||
endian: string, | ||
secure: string, | ||
} | ||
export interface ExperimentalCsolutionApi { | ||
@@ -69,2 +81,7 @@ /** | ||
getBuildTypes(): Promise<BuildTypeInfo[]>; | ||
/** | ||
* Get the hardware and toolchain for all build contexts in the active solution. | ||
*/ | ||
getHardwareAndToolchainInfo(): Promise<HardwareAndToolchainInfo[]>; | ||
} |
{ | ||
"name": "@arm-software/vscode-cmsis-csolution", | ||
"version": "1.2.3", | ||
"version": "1.3.0", | ||
"description": "API for the Arm.cmsis-csolution VS Code extension", | ||
@@ -5,0 +5,0 @@ "types": "csolution.d.ts", |
5977
154