-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some installs of Visual Studio 2013 don't include the vcvarsphoneall.bat #9
Comments
Not sure of the license on those files, and I can't add a comment, and can't directly contact the author. Thoughts? |
I'm trying to track down why @skypanther is unable to get an emulator listing and he was missing these files, which resulted in
The lack of association between 12.0 and WP SDK 8.1 is due to these missing files. I'm not convinced that matters yet, because after adding them in it fixed this portion of the puzzle but he's still getting no emulators. |
I believe |
See https://github.com/appcelerator/windowslib/blob/master/lib/visualstudio.js#L142
if a user installs VS 2013, the C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\WPSDK\WP81 folders won't exist and the batch script won't either. There's mention of it here: http://blogs.msdn.com/b/vcblog/archive/2014/07/18/using-boost-libraries-in-windows-store-and-phone-applications.aspx
And a posted "solution" with some scripts that they ask you to copy over to rebuild the expected structure.
Our detection code assumes that the folder and file must exist to correlate a Windows Phone SDK version with an install of VS. So we need to either try and ship these files and copy them over when missing to "repair" this for users (perissions/copyright/distribution?); or we need to not link the SDKs or find some other way of determining what Windows Phone SDKs an install supports.
The text was updated successfully, but these errors were encountered: