Balraj Singh
Balraj Singh

Reputation: 3471

Visual Studio 11 metro apps unable to add reference?

I have installed Windows 8 and Visual Studio 11 to develop metro style apps. But each time i try to create Metro app project the projects get created but in reference there is nothing added but the project builds successfully and even its not allowing me to add any reference dll.

enter image description here

enter image description here

enter image description here

Upvotes: 1

Views: 3289

Answers (2)

MahmutBulut
MahmutBulut

Reputation: 53

Metro style applications targets .NETCore framework if dependent solution is built on .NetFramework it can't be used in Metro style apps. For now you cannot rebuild your .NETFramework libraries on .NETCore because it has limited access(only for Windows Store apps).

Upvotes: 0

David Kean
David Kean

Reputation: 5772

What are you adding a reference to? Metro style apps can only add references to other Metro style class libraries or portable class libraries.

Upvotes: 9

Related Questions