Visual Studio 2015: Unable to create a universal application

I am stuck in creating a generic project under windows 10 using Visual Studio 2015 Eqase.jpg .

I tried everything from OS Reinstall the standalone installer tools to Windows Developer, but no luck.

The error I get is

One or more projects requires the sdk.netcore, version = 5.0 framework.

I even installed KB3073097.exe, which contains .netcore, version = 5.0

+5
source share
3 answers

I was able to simulate the problem you are experiencing by deleting the FrameworkList.xml file in the following path:

C: \ Program Files (x86) \ Reference Assemblies \ Microsoft \ Framework.NETCore \ v5.0 \ RedistList

After I deleted the FrameworkList.xml file, I have the same error message that you get.

check if you have this file in the above path.

also here is the contents of the file (if you want to create it manually)

<?xml version="1.0" encoding="utf-8"?> <FileList Redist="Microsoft-Windows-CLRCoreComp.5.0" Name=".NET for Windows Universal" RuntimeVersion="5.0" ToolsVersion="4.0"> </FileList> 

another option, if you do not want to create it manually, install windows 10 sdk

+1
source

How about this? I think someone seemed to find a solution at:

https://answers.madewithmarmalade.com/questions/35108/unable-to-target-windows-10.html

Hope this helps ... :)

0
source

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


All Articles