MarcinJuraszek
MarcinJuraszek

Reputation: 125660

WP7 SDK on Windows 8

Is it possible to install WP7 SDK on Windows 8 Release Preview? I tried using standard installation package but keep getting following error:

Installation Requirements:

KB2669191 does not apply, or is blocked by another condition on your computer. Please see http://go.microsoft.com/fwlink/?LinkId=225649 for more details.

I installed WP7 SDK 7.1 but had some compatibily errors durring the instaa. Right now I can start VS2010 for WP7 but cannot build the solution because of following error:

The target "GetCopyToOutputDirectoryContentProjectItems" does not exist in the project.

Upvotes: 8

Views: 7430

Answers (9)

J. Lennon
J. Lennon

Reputation: 3361

This article solve my problem: http://blogs.msdn.com/b/astebner/archive/2012/02/29/10274694.aspx

Basically was necessary install: Games for Windows – LIVE Redistributable from http://www.xbox.com/en-US/LIVE/PC/DownloadClient, after everthing works :)

Upvotes: 0

max_code
max_code

Reputation: 307

you can install sdk update 7.1.1 if you didn't.. It solved the problem for me

Download Windows Phone SDK 7.1.1 Update

Upvotes: 0

Davemundo
Davemundo

Reputation: 889

For development of XNA/WP7 on Win8: Install Windows 8, then Visual Studio 2012, then Windows Phone 8 SDK, ensure windows updates are installed (as Nov 2012 had some great App Store updates). Then, port your XNA code across and create a new project to get the DLL references you need. The DLLs will exist in the Silverlight 4 folders but not to worry, it all works once you have WP8 SDK !! The emulator runs great too! This is the process for XNA code into VS2012 that works.

You can get the SDK from here: https://dev.windowsphone.com/en-us/downloadsdk

NOTE: The XNA games will ONLY work on WP7 devices. You need MonoGame or similar to port to Win8 devices.

Upvotes: 2

Apoorv Kumar Upadhyay
Apoorv Kumar Upadhyay

Reputation: 125

Please go ahead and install windows 8 RTM now, after you install RTM ,Install Visual Studio 2012 and then WIndows Phone 8 SDK.now with this SDK , YOU CAN WORK ON WP7 as well as WP8

Upvotes: 0

Saraf Talukder
Saraf Talukder

Reputation: 376

The following link gives the exact steps you need to perform in order to install and run WP7 sdk on windows 8 : WP7 Sdk on Windows 8

Upvotes: 5

Jamie Keeling
Jamie Keeling

Reputation: 9966

The error 'GetCopyToOutputDirectoryContentProjectItems' has been known to come from Silverlight, therefore I recommend you try to reinstall the Silverlight SDK on your machine.

Source: GetCopyToOutputDirectoryContentProjectItems

Upvotes: 0

nkchandra
nkchandra

Reputation: 5557

You should install WPSDK 7.1 first, before installing 7.1.1 Update. Check the Instructions at the bottom of the page.

see Installing Windows Phone SDK.

Update:

I have used the SDK's 7.1 and 7.1.1 from the above link and they are working fine in Windows 8.

Upvotes: 1

Russell Asher
Russell Asher

Reputation: 195

This article finally did the trick. Hopefully posting it here will save someone from the nigh terrors ive been experiencing lol. The work around involves installing the xbox live marketplace and then installing the wp7 sdk and XNA will install normally.

http://windowsteamblog.com/windows_phone/b/wpdev/archive/2012/03/05/windows-8-and-the-windows-phone-sdk.aspx

this will get the warning error to go away. To fix the emulator problem you mus download the windows phone sdk 7.1.1 which is an update to the 7.1 sdk you were having problems installing

Upvotes: 0

Ibraheem Osama
Ibraheem Osama

Reputation: 334

Uninstall Windows Phone 7.1 RC SDK, then install 7.1 RTW SDK, and then the 7.1.1 SDK. And every thing will be alright this link for 7.1 RTW

and this for 7.1.1

Good Luck :)

Upvotes: 0

Related Questions