So, I'm attempting to use Microsoft.Azure.Devices in .NET Portable library and I've discovered Microsoft.Azure.Devices.Client.PCL Nuget package for a part of the functionality but no Microsoft.Azure.Devices for the code below.
registryManager = RegistryManager.CreateFromConnectionString(connectionString);
device = await registryManager.AddDeviceAsync(new Device(deviceID));
So, what I need is to register a new device or find one if existing, to retrieve device Key. Is there any way to do this inside the portable library?