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

Asked

Viewed 111 times

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? You know why?

1 answer

1

According to the following bug: https://github.com/aspnet/Tooling/issues/112

The problem is due to the lack of compatibility between the HTML or Razor view editor and Cordova.

Possible solutions:

  1. Upgrade to the version 2015.1 (link)
  2. Give up the Typescript.
  3. Swap the src of the <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>
    
  • Danilo, thank you! But none of the three steps worked out. When I install the version 2015.1 the button does not allow clicking, I did not find the location that gives up the Type Script and I am not using this 'src'.

  • I am sure that when upgrading to 2015.1 solve...

Browser other questions tagged

You are not signed in. Login or sign up in order to post.