Visual Studio 2015 RTM – Lost JavaScript support after update TypeScript Tools

This is a known bug that we have fixed in VS 2015, however you could have been affected if you installed the “Universal Windows App Development Tools” during a specific period of time. We will soon be publishing a KB with the following workaround: If the “Universal Windows App Development Tools” are still installed: Go … Read more

.Net regex matching $ with the end of the string and not of line, even with multiline enabled

It is clear your text contains a linebreak other than LF. In .NET regex, a dot matches any char but LF (a newline char, \n). See Multiline Mode MSDN regex reference By default, $ matches only the end of the input string. If you specify the RegexOptions.Multiline option, it matches either the newline character (\n) … Read more

Xcode: code loses syntax coloring

1.) Go to Project –> Build Settings –> Header Search Paths 2.) Add “$(SRCROOT)/**” 3.) Close and reload the project 4.) Go to Xcode –> Window –> Organizer –> Projects –> $YourProject –> Delete Derived Data 5.) Wait a moment until XCode rebuild all indicies To get more information activate verbose logging: 1.) Increase Xcode … Read more