Yu Li
Yu Li

Reputation: 57

Where should I put C# dll in Metro Style Appc#

I am trying to import dll from Metro Style App. But I don't know where should I put dll. Please reply to me.

Upvotes: 0

Views: 686

Answers (1)

Rowland Shaw
Rowland Shaw

Reputation: 38130

You can only reference DLLs built against WinRT. Typically these can be added via nuget, or alternatively added as a project, and using a project reference. Using other approaches is likely to fail certification, and not allow you to distribute your app to the general public.

Upvotes: 1

Related Questions