Can I use Visual Studio Code to create/publish SSIS packages?
Can I use Visual Studio Code to create/publish SSIS packages? If so, what are the benefits of using Visual Studio Professional (instead of the free Visual Studio Code product)?The comparison on the...
View ArticleVS code, run gulp task. Value is not accepted. Valid values: "shell"
Here is what I see when try to create a VS code task which should run a gulp task on folder open event. The code I've found on VS docs
View ArticleVisual Studio Online Containers
I'm trying to create a remote environment using Visual Studio Code. I would like to create a custom dockerfile for my container. I've been following the guide here:...
View ArticleCan't push refs to remote try running pull first to integrate your changes
I keep getting this error when I try to push to GitHub from VScode. I've pushed before to that repository following the exact same steps I am following now. Can't find an answer to what is the reason...
View ArticleHighlight unused vars in vscode
Is there any way to highlight unused php-variables in vscode?<?php $foo = 'a'; $bar = 'b'; // I want the IDE mark this somehow $foo = 'c'; ?> I have "editor.showUnused": true in the config file....
View ArticlePrestaShop 1.7 with PHP Xdebug getting exception and exclude files in script...
Using PrestaShop 1.7 to develop my application and using Xdebug to debug my code. The Xdebug doc link is https://xdebug.org/docs/.But it will get exception every time which says that "Integrity check...
View ArticleHow to get VSCode Gutters to show diff from upstream
I am using VsCode and the gutter features (the blue, red, and green highlighted sections on the side) which show file modifications are extremely useful. However, after a commit, those gutters go away....
View ArticleXdebug - Visual Studio Code - Step into / Step over - Nothing happens
I'm having an issue with Visual Studio Code and Xdebug.My System:I'm using a Windows 10 system with IIS webserver and PHP version 7.4. I've downloaded and installed Xdebug with the last version (2.9.0)...
View ArticleHow to get intellisense for extracted variables?
The problemI'm trying to refactor some of my code in visual-studio-code by extracting an argument of a function to a global constant. However, once I do this I lose the ability to use intellisense when...
View ArticleVS Code Django Debugger TemplateDoesNotExist
Using VS Code as my IDE for Django programming. I'm able to start my application via the integrated terminal by running 'python app/manage.py runserver 8000'. This starts no problem. In my launch.json...
View ArticleWay to view/print a resolved TypeScript type
I am looking for a way to view the types that TypeScript resolves the declared types to (ie. for Generics). I use VS Code, and oftentimes a Union or Intersection or other Generic results in the...
View ArticleVS Code Regex find and replace with lowercase
Is there a way to do a find and replace (regex) all uppercase characters in the matching strings with lowercase ones? Preferably in VS Code or IntelliJ I already have my regex ready. Edit: To be cleare...
View ArticleDuplicate Symbols with IOS Build
I'm trying to run my Flutter app on IOS (on Android it works properly), but I'm getting the following error when I try to run it: Launching lib/main.dart on iPhone 11 Pro Max in debug mode... Xcode...
View ArticleHow to search for keyword in entire project excluding specific folder in VsCode?
I have a project Project1 that contains the keyword "crash" in a bunch of files. Most of the occurrences of "crash" occur in the build/ folder. Is there a way in VsCode to search for instances of...
View ArticleFlutter: The method "call" was called on null - error repeated multiple times
I am creating an application on Flutter linked to Firebase on VS code. The app was running the code attached perfectly. I then changed the _pageOptions list to contain the Home, Finance and Info...
View Articlesimple c++ "hello world" wont run with this error (.text+0x20): undefined...
hello i just want to compile this simple c++ code with vscode #include <iostream> using namespace std; int main(){ cout<<"hi"; return 0; } and i try to compile it with this command g++...
View ArticleAllow auto import my React library on vscode
I'm trying to do a library of components for React and publish on npm using webpack and babel to compile to Es5. Almost everything worked, but for some reason, the project that consumes this lib cant...
View ArticlePad selected lines to cursor position in VSCode
In Visual Studio 2019, I can use Alt+Shift+(Arrow Keys) to multi-line edit the "virtual" whitespace then press any key to make all the lines padded with space to the selected column, I use this a lot...
View ArticleVS Code JSON Format Reverts on File Change
I know you can format on demand, save etc. However, I want my JSON files to be formatted automatically when I open them.I'm currently using Prettier for my default formatter; which works great when I...
View ArticleHow to use VS Code Integrated Terminal to programmatically run commands
When opening a project using code . I want the integrated terminal to run a file or script. https://code.visualstudio.com/docs/editor/integrated-terminal talks about args going into the shell...
View Article