Visual Studio 2015 crashes when I type "" in Apache Cordova

0

I'm using Visual Studio 2015 to create applications with Apache Cordova, and every time I enter the character of "<" (to open an HTML tag) the software hangs and closes for no reason.

Has it ever happened to anyone? Do you know why?

    
asked by anonymous 30.12.2015 / 03:21

1 answer

1

According to the following bug : link

The problem occurs because of the lack of compatibility between the HTML editor or razor view and the cordova.

Possible solutions :

  • Upgrade to 2015.1 version ( link )
  • Uncheck TypeScript .
  • Change 'src' from <script>

    <script src="1.1.1/js/ionic.bundle.min.js"></script>
    

    for

    <script src="http://code.ionicframework.com/1.1.1/js/ionic.bundle.min.js"></script>
    
  • 30.12.2015 / 08:19