Reputation: 99
I am trying to use windows.system.launcher.launchUriAsync(uri) to open a Skype Uris in a Visual C# console app but i can't and i can't find Windows.System in the available references.I am using Visual Studio 2013.
Can you please help me understand why this happens ?
Thanks in advance :)
Upvotes: 0
Views: 823
Reputation: 61349
That assembly (and associated classes and namespaces) are for Windows Store apps only.
You cannot use them in a standard C# project.
Reference on MSDN.
Upvotes: 1