nanoFramework.Azure.Devices.Client 1.0.0-preview.83

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of nanoFramework.Azure.Devices.Client.
There is a newer version of this package available.
See the version list below for details.
dotnet add package nanoFramework.Azure.Devices.Client --version 1.0.0-preview.83
NuGet\Install-Package nanoFramework.Azure.Devices.Client -Version 1.0.0-preview.83
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="nanoFramework.Azure.Devices.Client" Version="1.0.0-preview.83" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add nanoFramework.Azure.Devices.Client --version 1.0.0-preview.83
#r "nuget: nanoFramework.Azure.Devices.Client, 1.0.0-preview.83"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install nanoFramework.Azure.Devices.Client as a Cake Addin
#addin nuget:?package=nanoFramework.Azure.Devices.Client&version=1.0.0-preview.83&prerelease

// Install nanoFramework.Azure.Devices.Client as a Cake Tool
#tool nuget:?package=nanoFramework.Azure.Devices.Client&version=1.0.0-preview.83&prerelease

Quality Gate Status Reliability Rating License NuGet #yourfirstpr Discord

nanoFramework logo


Welcome to the .NET nanoFramework Azure.Devices.Client Library repository

Build status

Component Build Status NuGet Package
nanoFramework.Azure.Devices.Client Build Status NuGet
nanoFramework.Azure.Devices.Client (preview) Build Status NuGet

See it in action

You can watch this video from the Microsoft IoT Show featuring the Azure SDK and a real life example with .NET nanoFramework:

IoT Show

Usage

Important: You must be connected to a network with a valid IP address and a valid date. Please check the examples with the Network Helpers on how to help you making sure you have both.

This Azure IoT Hub SDK is using MQTT. So you need to ensure you can connect to port 8883 using TLS protocol. If you are connected to an enterprise network, this may be blocked. In most cases, this is not an issue.

The namespaces, the name of the classes and the methods try to get close to the .NET C# Azure IoT SDK. This should allow easier portability of the code between the full .Net framework and nanoFramework environments.

Certificate

You have 2 options to provide the right Azure IoT TLS certificate:

  • Parse it into the constructor
  • Store it into the device

The AzureCertificates contains, for your convenience, the root certificate used to connect to Azure IoT. The current one, a Baltimore Root CA is the one to use up to June 2022. Starting from June 2022, the Digicert Global Root 2 is the one to use. For more information, please read the following blog.

Through the constructor

You will have to embed the certificate into your code:

const string AzureRootCA = @"-----BEGIN CERTIFICATE-----
MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJ
RTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYD
VQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoX
DTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9y
ZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVy
VHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKr
mD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjr
IZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeK
mpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSu
XmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZy
dc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/ye
jl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1
BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3
DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT92
9hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3Wgx
jkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0
Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhz
ksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLS
R9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp
-----END CERTIFICATE-----
";
DeviceClient azureIoT = new DeviceClient(IotBrokerAddress, DeviceID, SasKey, azureCert: new X509Certificate(AzureRootCA));

You can place your binary certificate in the program resources as well and just get the certificate from it:

X509Certificate azureRootCACert = new X509Certificate(Resources.GetBytes(Resources.BinaryResources.AzureCAcertificate));
DeviceClient azureIoT = new DeviceClient(IotBrokerAddress, DeviceID, SasKey, azureCert: azureRootCACert);

Note: when the certificate expires, you will have to fully reflash the device with the new certificate.

Storing the certificate on the device

You can store the certificate on the device flash and not in the code, so if you have to change the certificate, you'll just have to clean the current store and upload the new one. Edit the network properties:

edit device network

Navigate to the General tab:

device network certificate

Browse to choose your certificate, it can be in a binary (crt, der) or string form (pem, txt) and select ok. The certificate to connect will be selected automatically during the connection.

Creating a DeviceClient

You can connect to Azure IoT Hub using either a symmetric Key or a certificate. The following example shows how to use a symmetric key:

const string DeviceID = "nanoEdgeTwin";
const string IotBrokerAddress = "youriothub.azure-devices.net";
const string SasKey = "yoursaskey";
DeviceClient azureIoT = new DeviceClient(IotBrokerAddress, DeviceID, SasKey);

Note: please see the previous section to understand how to better parse the certificate for your usage. The example shows the certificate uploaded into the device and not in the code.

Azure IoT Plug&Play

Azure IoT Plug&Play is supported as well. You'll need to provide a model ID when creating the DeviceClient:

DeviceClient azureIoT = new DeviceClient(IotBrokerAddress, DeviceID, SasKey, modelID:"dtmi:com:example:Thermostat;1");

Note: the model ID has to be passed at the creation of the DeviceClient, it is not possible to pass it later on.

Reporting properties

Reporting Plug & Play properties is supported. He is a comprehensive example and how you can check if you have received one property that you're interested in:

const string TargetTemerature = "targetTemperature";
DeviceClient azureIoT = new DeviceClient(Secrets.IotHub, Secrets.DeviceName, Secrets.SasKey, azureCert: new X509Certificate(Resource.GetBytes(Resource.BinaryResources.AzureRoot)), modelId: "dtmi:com:example:Thermostat;1");
azureIoT.TwinUpated += AzureTwinUpdated;
azureIoT.Open();

void AzureTwinUpdated(object sender, TwinUpdateEventArgs e)
{
    if (e.Twin.Contains(TargetTemerature))
    {
        // We got an update for the target temperature
        var target = e.Twin[TargetTemerature];
        Debug.WriteLine($"Target temperature updated: {target}");
        PropertyAcknowledge targetReport = new() { Version = (int)e.Twin.Version, Status = PropertyStatus.Completed, Description = "All perfect", Value = target };
        TwinCollection twin = new TwinCollection();
        twin.Add(TargetTemerature, targetReport.BuildAcknowledge());
        azureIoT.UpdateReportedProperties(twin);
    }
}

In this example, the property we are interested in to receive is called targetTemperature. To receive its update, we are subscribing to the twin update. And we can get the value thu the e.Twin[TargetTemerature] once we've checked that the property exist.

The patter to publish a writable property is then quite simple. it's about building a PropertyAcknowledge, creating a TwinCollection, adding it to it with the property name, here our targetTemperature. You can add more properties to report of course. Note that what you add to the TwinCollection is not directly the object but BuildAcknowledge(). One done, just ask the library to update the twin through the UpdateReportedProperties method.

Receiving commands

An IoT Plug & Play command is a method callback. See further in this document how you can use them. In our case, the method is called getMaxMinReport. The name of the method in C# must be the exact same as the name from the DTDL file.

DeviceClient azureIoT = new DeviceClient(Secrets.IotHub, Secrets.DeviceName, Secrets.SasKey, azureCert: new X509Certificate(Resource.GetBytes(Resource.BinaryResources.AzureRoot)), modelId: "dtmi:com:example:Thermostat;1");
azureIoT.AddMethodCallback(getMaxMinReport);
azureIoT.Open();

string getMaxMinReport(int rid, string payload)
{
    TemperatureReporting reporting = new() { avgTemp = 20, maxTemp = 42, minTemp = 12.34, startTime = DateTime.UtcNow.AddDays(-10), endTime = DateTime.UtcNow };
    return JsonConvert.SerializeObject(reporting);
}

In this example, the expected result is an object. Just populate the object and serialize it as a json as the command expect and return it. If any parameter to this command, it will be in the payload.

Getting and updating Twin

You can request your Azure IoT Twin simply by calling the GetTwin function.

var twin = azureIoT.GetTwin(new CancellationTokenSource(20000).Token);
if (twin == null)
{
    Debug.WriteLine($"Can't get the twins");
    azureIoT.Close();
    return;
}

Debug.WriteLine($"Twin DeviceID: {twin.DeviceId}, #desired: {twin.Properties.Desired.Count}, #reported: {twin.Properties.Reported.Count}");

Note: it's important to use a CancellationToken that will be cancelled after a certain amount of time. Otherwise, this will be blocking the thread up to the point the twin is received.

Twins have properties, reported and desired. They are collection and you can get or try to get any element.

You can report your Twin as simple as this:

TwinCollection reported = new TwinCollection();
reported.Add("firmware", "myNano");
reported.Add("sdk", 0.2);
azureIoT.UpdateReportedProperties(reported);

You also have the option to wait for the twin update confirmation, in this case use a CancellationToken that can be cancelled. Otherwise the check will be ignored.

Note: the function will return false if the twin reception confirmation is not checked or if it did not arrive on time.

You can also register for any twin update:

azureIoT.TwinUpated += TwinUpdatedEvent;

void TwinUpdatedEvent(object sender, TwinUpdateEventArgs e)
{
    Debug.WriteLine($"Twin update received:  {e.Twin.Count}");
}

Sending message

You have to use the SendMessage function to send any kind of message or telemetry to Azure IoT. As for the other function, you have the possibility to ensure delivery with a CancellationToken than can be cancelled. If one that can't be cancelled is used, the delivery insurance will be ignored and the function will return false.

var isReceived = azureIoT.SendMessage($"{{\"Temperature\":42,\"Pressure\":1024}}", new CancellationTokenSource(5000).Token);
Debug.WriteLine($"Message received by IoT Hub: {isReceived}");

Note: The message will be sent with the default service quality of service you created the device with. You won't get any answer for the quality 0. In this case, you can simplify it to:

azureIoT.SendMessage($"{{\"Temperature\":42,\"Pressure\":1024}}");

Cloud to device messages

You can register an event to receive Cloud to device messages:

azureIoT.CloudToDeviceMessage += CloudToDeviceMessageEvent;

// The following example shows how to display all keys in debug
void CloudToDeviceMessageEvent(object sender, CloudToDeviceMessageEventArgs e)
{
    Debug.WriteLine($"Message arrived: {e.Message}");
    foreach (string key in e.Properties.Keys)
    {
        Debug.Write($"  Key: {key} = ");
        if (e.Properties[key] == null)
        {
            Debug.WriteLine("null");
        }
        else
        {
            Debug.WriteLine((string)e.Properties[key]);
        }
    }

    // e.Message contains the message itself
    if(e.Message == "stop")
    {
        ShoudIStop = true;
    }
}

Note: the sender is a DeviceClient class, you can then send a message back, a confirmation or any logic you've put in place.

Method callback

Method callback is supported as well. You can register and unregister your methods. Here are a few examples:

azureIoT.AddMethodCallback(MethodCallbackTest);
azureIoT.AddMethodCallback(MakeAddition);
azureIoT.AddMethodCallback(RaiseExceptionCallbackTest);

string MethodCallbackTest(int rid, string payload)
{
    Debug.WriteLine($"Call back called :-) rid={rid}, payload={payload}");
    return "{\"Yes\":\"baby\",\"itisworking\":42}";
}

string MakeAddition(int rid, string payload)
{
    Hashtable variables = (Hashtable)JsonConvert.DeserializeObject(payload, typeof(Hashtable));
    int arg1 = (int)variables["arg1"];
    int arg2 = (int)variables["arg2"];
    return $"{{\"result\":{arg1 + arg2}}}";
}

string RaiseExceptionCallbackTest(int rid, string payload)
{
    // This will properly return as well the exception error
    throw new Exception("I got you, it's to test the 504");
}

Important: method names are case sensitive. So make sure you name your functions in C# use the same case.

Status update event

A status update event is available:

azureIoT.StatusUpdated += StatusUpdatedEvent;

void StatusUpdatedEvent(object sender, StatusUpdatedEventArgs e)
{
    Debug.WriteLine($"Status changed: {e.IoTHubStatus.Status}, {e.IoTHubStatus.Message}");
    // You may want to reconnect or use a similar retry mechanism
    ////if (e.IoTHubStatus.Status == Status.Disconnected)
    ////{
    ////    mqtt.Open();
    ////}
}

Note that those are status change based, so once the connect or disconnect event arrives, they'll be replaced by other events as soon as something else happened like receiving a twin.

Azure IoT Device Provisioning Service (DPS) support

This SDK also supports the Azure IoT Device Provisioning Service. Group and individual provisioning scenarios are supported either with a symmetric key either with certificates. To understand the mechanism behind DPS, it is recommended to read the documentation.

Provisioning using symmetric key

For symmetric key provisioning you only need the following elements:

  • A registration ID
  • The ID Scope
  • The device name
  • The key or the derived key for group provisioning

The code is then straight forward:

const string RegistrationID = "nanoDPStTest";
const string DpsAddress = "global.azure-devices-provisioning.net";
const string IdScope = "0ne01234567";
const string SasKey = "alongkeyencodedbase64";

// See the previous sections in the SDK help, you either need to have the Azure certificate embedded
// Either passing it in the constructor
X509Certificate azureCA = new X509Certificate(DpsSampleApp.Resources.GetBytes(DpsSampleApp.Resources.BinaryResources.BaltimoreRootCA_crt));
var provisioning = ProvisioningDeviceClient.Create(DpsAddress, IdScope, RegistrationID, SasKey, azureCA);
var myDevice = provisioning.Register(new CancellationTokenSource(60000).Token);

if(myDevice.Status != ProvisioningRegistrationStatusType.Assigned)
{
    Debug.WriteLine($"Registration is not assigned: {myDevice.Status}, error message: {myDevice.ErrorMessage}");
    return;
}

// You can then create the device
var device = new DeviceClient(myDevice.AssignedHub, myDevice.DeviceId, SasKey, nanoFramework.M2Mqtt.Messages.MqttQoSLevel.AtMostOnce, azureCA);
// Open it and continue like for the previous sections
var res = device.Open();
if(!res)
{
    Debug.WriteLine($"can't open the device");
    return;
}

Note: like for the DeviceClient you need to make sure you are connected to a network properly and also have a proper data and time set on the device.

Provisioning using certificates

For symmetric key provisioning you only need the following elements:

  • A registration ID
  • The ID Scope
  • The device name
  • The device certificate
  • Make sure that your IoT Hub is as well aware of the root/intermediate certificate you are using otherwise you won't be able to connect to your IoT Hub once your device is provisioned

The code is then straight forward:

const string RegistrationID = "nanoCertTest";
const string DpsAddress = "global.azure-devices-provisioning.net";
const string IdScope = "0ne0034F11A";

const string cert = @"
-----BEGIN CERTIFICATE-----
Your certificate
-----END CERTIFICATE-----
";

const string privateKey = @"
-----BEGIN ENCRYPTED PRIVATE KEY-----
the encrypted private key
-----END ENCRYPTED PRIVATE KEY-----
";

// See the previous sections in the SDK help, you either need to have the Azure certificate embedded
// Either passing it in the constructor
X509Certificate azureCA = new X509Certificate(DpsSampleApp.Resources.GetBytes(DpsSampleApp.Resources.BinaryResources.BaltimoreRootCA_crt));
// Note: if your private key is not protected with a password, you don't need to pass it
// You can as well store your certificate directly in the device certificate store
// And you can store it as a resource as well if needed
X509Certificate2 deviceCert = new X509Certificate2(cert, privateKey, "1234");

var provisioning = ProvisioningDeviceClient.Create(DpsAddress, IdScope, RegistrationID, deviceCert, azureCA);
var myDevice = provisioning.Register(new CancellationTokenSource(60000).Token);

if(myDevice.Status != ProvisioningRegistrationStatusType.Assigned)
{
    Debug.WriteLine($"Registration is not assigned: {myDevice.Status}, error message: {myDevice.ErrorMessage}");
    return;
}

// You can then create the device
var device = new DeviceClient(myDevice.AssignedHub, myDevice.DeviceId, deviceCert, nanoFramework.M2Mqtt.Messages.MqttQoSLevel.AtMostOnce, azureCA);
// Open it and continue like for the previous sections
var res = device.Open();
if(!res)
{
    Debug.WriteLine($"can't open the device");
    return;
}

Additional payload

Additional payload is supported as well. You can set it up as as json string in the ProvisioningRegistrationAdditionalData class when calling the Register function. When the device has been provisioned, you may have as well additional payload provided.

Feedback and documentation

For documentation, providing feedback, issues and finding out how to contribute please refer to the Home repo.

Join our Discord community here.

Credits

The list of contributors to this project can be found at CONTRIBUTORS.

License

The nanoFramework Class Libraries are licensed under the MIT license.

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behaviour in our community. For more information see the .NET Foundation Code of Conduct.

.NET Foundation

This project is supported by the .NET Foundation.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on nanoFramework.Azure.Devices.Client:

Package Downloads
MakoIoT.Device.Services.AzureIotHub

AzureIoTHub bus provider for MAKO-IoT

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on nanoFramework.Azure.Devices.Client:

Repository Stars
dotnet/samples
Sample code referenced by the .NET documentation
nanoframework/Samples
🍬 Code samples from the nanoFramework team used in testing, proof of concepts and other explorational endeavours
Version Downloads Last updated
1.2.29 426 1/29/2024
1.2.25 107 1/26/2024
1.2.23 148 1/24/2024
1.2.21 107 1/22/2024
1.2.16 757 11/23/2023
1.2.14 249 11/10/2023
1.2.12 172 11/8/2023
1.2.10 305 10/23/2023
1.2.7 233 10/10/2023
1.2.5 103 10/10/2023
1.2.3 453 9/5/2023
1.2.1 133 9/4/2023
1.1.145 174 8/28/2023
1.1.143 145 8/28/2023
1.1.141 153 8/28/2023
1.1.139 173 8/8/2023
1.1.137 225 7/27/2023
1.1.135 132 7/27/2023
1.1.133 258 5/28/2023
1.1.125 416 2/17/2023
1.1.122 376 1/14/2023
1.1.119 336 12/28/2022
1.1.116 265 12/28/2022
1.1.114 297 12/28/2022
1.1.106 494 11/24/2022
1.1.104 296 11/23/2022
1.1.101 316 11/23/2022
1.1.97 343 11/15/2022
1.1.95 411 11/4/2022
1.1.92 385 10/28/2022
1.1.90 378 10/28/2022
1.1.88 353 10/27/2022
1.1.85 380 10/26/2022
1.1.83 399 10/26/2022
1.1.81 351 10/26/2022
1.1.79 371 10/25/2022
1.1.77 366 10/25/2022
1.1.75 361 10/25/2022
1.1.73 366 10/25/2022
1.1.71 355 10/24/2022
1.1.69 393 10/24/2022
1.1.67 400 10/24/2022
1.1.64 416 10/23/2022
1.1.62 419 10/23/2022
1.1.60 400 10/21/2022
1.1.58 434 10/15/2022
1.1.56 419 10/12/2022
1.1.54 413 10/10/2022
1.1.52 395 10/10/2022
1.1.50 393 10/8/2022
1.1.48 411 10/8/2022
1.1.45 467 9/23/2022
1.1.41 438 9/22/2022
1.1.38 435 9/22/2022
1.1.36 422 9/22/2022
1.1.33 469 9/18/2022
1.1.31 487 9/15/2022
1.1.29 458 9/15/2022
1.1.26 442 9/15/2022
1.1.23 449 9/9/2022
1.1.19 519 8/5/2022
1.1.17 432 8/5/2022
1.1.15 423 8/4/2022
1.1.14 438 8/4/2022
1.1.12 411 8/4/2022
1.1.10 400 8/4/2022
1.1.8 417 8/3/2022
1.1.6 417 8/3/2022
1.1.4 431 8/3/2022
1.1.2 407 8/3/2022
1.0.1.38 414 8/3/2022
1.0.1.36 450 7/26/2022
1.0.1.34 503 7/19/2022
1.0.1.32 514 6/13/2022
1.0.1.30 450 6/13/2022
1.0.1.28 434 6/8/2022
1.0.1.26 436 6/8/2022
1.0.1.22 456 5/26/2022
1.0.1.20 442 5/26/2022
1.0.1.18 431 5/21/2022
1.0.1.16 483 5/19/2022
1.0.1.14 443 5/18/2022
1.0.1.12 422 5/18/2022
1.0.1.10 415 5/18/2022
1.0.1.6 488 5/3/2022
1.0.1.4 407 5/3/2022
1.0.1 427 5/3/2022
1.0.0 554 3/30/2022
1.0.0-preview.255 120 3/28/2022
1.0.0-preview.252 118 3/28/2022
1.0.0-preview.250 119 3/28/2022
1.0.0-preview.246 132 3/17/2022
1.0.0-preview.244 122 3/17/2022
1.0.0-preview.242 113 3/17/2022
1.0.0-preview.240 123 3/15/2022
1.0.0-preview.238 121 3/15/2022
1.0.0-preview.236 170 3/11/2022
1.0.0-preview.234 121 3/8/2022
1.0.0-preview.232 129 3/8/2022
1.0.0-preview.230 106 3/4/2022
1.0.0-preview.228 106 3/3/2022
1.0.0-preview.226 112 3/2/2022
1.0.0-preview.224 150 2/28/2022
1.0.0-preview.222 152 2/24/2022
1.0.0-preview.220 115 2/23/2022
1.0.0-preview.217 116 2/17/2022
1.0.0-preview.215 111 2/17/2022
1.0.0-preview.213 116 2/17/2022
1.0.0-preview.211 112 2/15/2022
1.0.0-preview.209 119 2/8/2022
1.0.0-preview.207 127 2/6/2022
1.0.0-preview.205 122 2/6/2022
1.0.0-preview.203 133 2/4/2022
1.0.0-preview.202 138 2/4/2022
1.0.0-preview.200 128 2/4/2022
1.0.0-preview.198 130 2/4/2022
1.0.0-preview.196 127 2/4/2022
1.0.0-preview.194 128 2/1/2022
1.0.0-preview.192 126 1/28/2022
1.0.0-preview.190 123 1/28/2022
1.0.0-preview.188 125 1/28/2022
1.0.0-preview.186 129 1/28/2022
1.0.0-preview.184 127 1/28/2022
1.0.0-preview.182 132 1/28/2022
1.0.0-preview.180 125 1/28/2022
1.0.0-preview.178 128 1/28/2022
1.0.0-preview.176 123 1/25/2022
1.0.0-preview.174 119 1/22/2022
1.0.0-preview.172 119 1/21/2022
1.0.0-preview.170 119 1/21/2022
1.0.0-preview.168 117 1/21/2022
1.0.0-preview.166 128 1/21/2022
1.0.0-preview.164 121 1/21/2022
1.0.0-preview.162 127 1/21/2022
1.0.0-preview.160 124 1/21/2022
1.0.0-preview.158 123 1/21/2022
1.0.0-preview.156 122 1/21/2022
1.0.0-preview.154 124 1/21/2022
1.0.0-preview.152 123 1/21/2022
1.0.0-preview.150 131 1/14/2022
1.0.0-preview.148 125 1/14/2022
1.0.0-preview.146 127 1/14/2022
1.0.0-preview.143 125 1/12/2022
1.0.0-preview.141 129 1/11/2022
1.0.0-preview.139 127 1/11/2022
1.0.0-preview.136 128 1/6/2022
1.0.0-preview.134 132 1/6/2022
1.0.0-preview.132 126 1/5/2022
1.0.0-preview.130 127 1/5/2022
1.0.0-preview.128 134 1/4/2022
1.0.0-preview.127 139 1/3/2022
1.0.0-preview.126 134 1/3/2022
1.0.0-preview.125 132 1/3/2022
1.0.0-preview.124 134 1/3/2022
1.0.0-preview.123 125 12/31/2021
1.0.0-preview.122 126 12/31/2021
1.0.0-preview.121 127 12/30/2021
1.0.0-preview.120 127 12/29/2021
1.0.0-preview.119 132 12/28/2021
1.0.0-preview.117 131 12/17/2021
1.0.0-preview.115 154 12/5/2021
1.0.0-preview.113 255 12/4/2021
1.0.0-preview.111 141 12/4/2021
1.0.0-preview.109 141 12/3/2021
1.0.0-preview.107 141 12/3/2021
1.0.0-preview.105 134 12/3/2021
1.0.0-preview.103 135 12/3/2021
1.0.0-preview.101 139 12/3/2021
1.0.0-preview.99 148 12/3/2021
1.0.0-preview.97 143 12/3/2021
1.0.0-preview.95 144 12/3/2021
1.0.0-preview.93 136 12/2/2021
1.0.0-preview.91 135 12/2/2021
1.0.0-preview.89 141 12/2/2021
1.0.0-preview.87 138 12/2/2021
1.0.0-preview.85 139 12/2/2021
1.0.0-preview.83 139 12/2/2021
1.0.0-preview.81 136 12/2/2021
1.0.0-preview.79 133 12/2/2021
1.0.0-preview.77 133 12/2/2021
1.0.0-preview.75 137 12/1/2021
1.0.0-preview.73 140 12/1/2021
1.0.0-preview.71 137 12/1/2021
1.0.0-preview.69 2,958 11/25/2021
1.0.0-preview.65 136 11/23/2021
1.0.0-preview.63 147 11/18/2021
1.0.0-preview.61 147 11/14/2021
1.0.0-preview.59 247 11/13/2021
1.0.0-preview.55 182 11/12/2021
1.0.0-preview.53 175 11/11/2021
1.0.0-preview.50 159 11/11/2021
1.0.0-preview.48 182 10/22/2021
1.0.0-preview.46 143 10/19/2021
1.0.0-preview.44 136 10/19/2021
1.0.0-preview.42 192 10/18/2021
1.0.0-preview.40 212 10/16/2021
1.0.0-preview.37 593 9/17/2021
1.0.0-preview.35 163 9/17/2021
1.0.0-preview.32 186 9/13/2021
1.0.0-preview.28 160 8/17/2021
1.0.0-preview.25 198 8/1/2021
1.0.0-preview.23 767 7/5/2021
1.0.0-preview.21 149 7/1/2021
1.0.0-preview.20 197 6/28/2021