Visual Studio Cordova - Cannot Deploy Application

I am using Visual Studio Enterprise 2015 with Cordova tools. I have a simple bootable HTML5 application, and iMac works with the remotebuild agent.

I have an iPad connected to my Windows machine with VS and I select Debug -> iOS -> Local Device

VS seems to successfully send a build request to iMac, it builds successfully, but then the VS output window repeats over and over again that "build was successful."

I do not see how to install the application on a connected iPad. I installed the provisioning profile and installed iTunes, but I don’t know what should happen next.

+5
source share
1 answer

Its a bug in visual studio 2015 and seems to affect iOS developers running OSX Yosemite (most reports came from this version)

There are two common problems with git integration during the conversion process (probably your project created it during the transfer):

  • .git * (.gitignore, etc.) are in the wrong folder
  • .git * (.gitignore, etc.) are configured incorrectly

Decision:

  • move something .git * to your root folder. those. the folder with the .sln file, with the exception of those located in the folder of other platforms (android, etc.), they are probably located in the project folder (one level inside the project root folder) or less likely in the www folder.
  • reconfigure your .git * files since this is not a git issue, I will try not to worry about the details, but an example of visual studio .gitignore can be found here (this will most likely solve your problem)

I hope the answer was useful, btw let me know if the solution to your problem has been fixed, there are many errors in developing the cord in VS 2015, and it is best to wait for update 1, unfortunately.

+2
source

All Articles