This is an extension for gisdk which is a language designed by Calliper.
- Compile .rsc, .model, .lst, .scenarios files.
- Show compile perblems.
Please provide your rscc compiler by creating a rscc task and set compilerPath to location of compiler if you have not install any of softwares from Caliper.
- The compiler quick pick is not auto focus on current compiler now.
Users appreciate release notes as you update your extension.
- Provide a compiler selection bar.
- Provide a built-in task to compiler active file.
- Provide a rscc task type allow you to custom your build.
- Fix a bug that cause task warning if there's no gisdk file opend.
- Fix a bug which is powershell build failure.
- Select Compiler: Click GISDK(...) on statu bar.
- Compile This File: Active a supported file suck as .rsc,
CTRL + SHIFT + Pthen selectTasks: Run Task-> rscc -> rscc: compile this file. - Custom Compile:
// tasks.json { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "type": "rscc", "group": "build", "label": "compile", "args": [ "-c", "-u", "output/test.dbd", "src/test.lst" ] } ] }
Enjoy!