How To: Publish Files that Are Not Included in a Visual Studio Project
If you are building a web application using Visual Studio, you are likely to use the Publish feature. Occasionally, you will want to exclude some files of your project and include external ones in the publish process. How would you do that? Let’s use the following example. Prior to...
How To: Create Custom Syntax Highlighting in a Visual Studio Code Extension
Visual Studio Code is a really popular IDE these days. It is my new go-to when I need a light and versatile IDE. It is completely customizable. You can create custom extensions in JavaScript or TypeScript with snippets and more. You can also do custom syntax highlighting for an...