How to configure WP7.1 on Visual Studio 2013

I just updated Windows 8.1 and installed Visual Studio 2013. I am trying to update a previous WP7.1 solution, but when I open with VS2013 I will be asked to update some things. I choose yes and everything seems to work, except for the Windows Phone Toolkit that I received from NuGet in my original solution (built in VS2012). After the update, I had a migration report error with the message Some NuGet packages were installed using a target framework different from the current target framework and may need to be reinstalled. For more information, visit http://docs.nuget.org/docs/workflows/reinstalling-packages. Packages affected: WPtoolkit Some NuGet packages were installed using a target framework different from the current target framework and may need to be reinstalled. For more information, visit http://docs.nuget.org/docs/workflows/reinstalling-packages. Packages affected: WPtoolkit Some NuGet packages were installed using a target framework different from the current target framework and may need to be reinstalled. For more information, visit http://docs.nuget.org/docs/workflows/reinstalling-packages. Packages affected: WPtoolkit . Since my application was built with WP7.1 targeting in VS2012, I assumed that uninstalling and reloading WPToolkit would work, but by default it targets WP80. It seems I can no longer create an application to target Windows Phone 7.1? Is there a solution for this?

+6
source share
2 answers

You cannot create wp7.1 applications in vs2013. This is not supported by visual studio 2013. However, you can upgrade your wp7 application to the wp8 application in vs2013. just open it in vs2013 and make the same changes manually

+1
source

Go to Tools> Nuget Package Manager> Package Manager Console

Write the following command:

PM> Update Package Install SilverlightToolKitWP

0
source

Source: https://habr.com/ru/post/957307/


All Articles