nanoFramework.System.Net.Http 1.5.182

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package nanoFramework.System.Net.Http --version 1.5.182
                    
NuGet\Install-Package nanoFramework.System.Net.Http -Version 1.5.182
                    
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.System.Net.Http" Version="1.5.182" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="nanoFramework.System.Net.Http" Version="1.5.182" />
                    
Directory.Packages.props
<PackageReference Include="nanoFramework.System.Net.Http" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add nanoFramework.System.Net.Http --version 1.5.182
                    
#r "nuget: nanoFramework.System.Net.Http, 1.5.182"
                    
#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.
#addin nuget:?package=nanoFramework.System.Net.Http&version=1.5.182
                    
Install nanoFramework.System.Net.Http as a Cake Addin
#tool nuget:?package=nanoFramework.System.Net.Http&version=1.5.182
                    
Install nanoFramework.System.Net.Http as a Cake Tool

Quality Gate Status Reliability Rating License NuGet #yourfirstpr Discord

nanoFramework logo


Welcome to the .NET nanoFramework System.Net.Http Library repository

Build status

Component Build Status NuGet Package
System.Net.Http Build Status NuGet
System.Net.Http.Client Build Status NuGet
System.Net.Http.Server Build Status NuGet

Usage examples

The API, classes and namespaces in this library follow, as close as possible, the .NET ones. Exceptions are the lack of async calls, generics and the Task, async/await model. The names reflect that by dropping the Async suffix and not returning Task and the lack of the overloaded methods with CancelationToken parameters.

Also worth mentioning is the need to pass the CA root certificate to HttpClient in order to be able to validate the server certificate.

HttpClient calling REST services

HttpClient makes it very easy to connect and consume REST services. In order to use it, one has to create the object and them perform the calls. Note that HttpClient is meant to be reused throughout the application lifecycle. There is no need to create a new instance every time a call has to be performed. Like this:

static readonly HttpClient _httpClient = new HttpClient();

To pass the CA root certificate allowing to validate the secure server certificate. The CA root cert can also come from a binary file or text file from a resource.

_httpClient.HttpsAuthentCert = new X509Certificate(
@"-----BEGIN CERTIFICATE-----
MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl
MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp
U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw
NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE
ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp
ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3
DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf
8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN
+lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0
X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa
K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA
1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G
A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR
zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0
YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD
bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w
DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3
L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D
eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl
xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp
VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY
WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q=
-----END CERTIFICATE-----");

[!Note]

In order to get a root certificate from a server, if you install OpenSSL, you can run the following command: openssl s_client -connect the.server-to-get-the-cert.com:443 -showcerts This will show you all the root certs used and present them as PEM. You can then copy/paste the one you need.

It's possible to add HTTP headers that will be sent along with each request.

_httpClient.DefaultRequestHeaders.Add("x-ms-blob-type", "BlockBlob");

Perform a HTTP GET request

Here's a example of a HTTP request to read some content as a string:

HttpResponseMessage response = _httpClient.Get("https://httpbin.org/get");
response.EnsureSuccessStatusCode();
var responseBody = response.Content.ReadAsString();

The above call would return something similar to the following, which can be output in Visual Studio by calling Debug.WriteLine(responseBody):

{
  "args": {}, 
  "headers": {
    "Host": "httpbin.org", 
    "X-Amzn-Trace-Id": "Root=1-6214aad3-38e5f8357bdf90530300eb5f", 
    "X-Ms-Blob-Type": "BlockBlob"
  }, 
  "origin": "5.249.47.208", 
  "url": "https://httpbin.org/get"
}

Note the call to response.EnsureSuccessStatusCode();. This will throw an HttpRequestException in case the status code from the HTTP request is not a successful one.

Perform a HTTP POST request

Follows an example of a HTTP request performing POST request to send some json content to an endpoint.

var content = new StringContent("{\"someProperty\":\"someValue\"}", Encoding.UTF8, "application/json");
var result = _httpClient.Post("https://httpbin.org/anything", content);
result.EnsureSuccessStatusCode();

Worth noting that the json content above it's presented as a simple string to simplify the code. There is a json library available to help with serializing and deserializing from/to C# classes, even the most complex ones.

Again, note the call to response.EnsureSuccessStatusCode(); to make sure the HTTP request was successfully performed.

Download binary content to a file

Using HttpClient makes it easy to deal with binary content too. Here's an example of how to download a file from a webserver.

HttpResponseMessage response = _httpClient.Get("https://storage-on-the-cloud.net/file-with-binary-content");
response.EnsureSuccessStatusCode();

using FileStream fs = new FileStream($"I:\\i-am-a-binary-file.bin", FileMode.Create, FileAccess.Write);
response.Content.ReadAsStream().CopyTo(fs);

Disposing the response

[!Important] You MUST dispose the response sent but any of the request. The device memory is limited and the response content will never be disposed if not asked. Depending on the devices, you may have only 16 possible requests before you'll get an out of memory.

Here is few right patterns to make sure you'll dispose properly the response content:

using HttpResponseMessage response = client.Get(apiUrl);
// do whatever you want
// When the response object won't be used, it will be disposed

You can as well have an explicit using for a block:

using HttpResponseMessage response = client.Get(apiUrl)
{
  // do whatever you want
  // when exiting the block, the response will be disposed
}

Or explicitly dispose the response:

HttpResponseMessage response = client.Get(apiUrl);
// do whatever you want
// Dispose explicitly the content
response.Dispose();

In all cases, you MUST make ure you are disposing the response content.

Debugging through a reverse proxy

When code is deployed to a MCU it might be desirable to let the device connect to your development machine running IIS Express. This can be achieved with a proxy such as this one. Be aware that this leads to SocketExceptions with the current version of nanoFramework System.Net.Http when sending consecutive requests to your development machine. A simple retry mechanism in Debug mode will get around this.

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 (13)

Showing the top 5 NuGet packages that depend on nanoFramework.System.Net.Http:

Package Downloads
nanoFramework.System.Net.WebSockets

This package includes the System.Net.WebSockets assembly for nanoFramework C# projects. There are also two other packages with just the client API and just the server API. These are meant to be used when there is the need to use smaller assemblies.

nanoFramework.System.Net.WebSockets.Server

This package includes the System.Net.WebSockets assembly (server API only) for .NET nanoFramework C# projects. There are also two other packages, one with the client API only and another with the complete API.

MakoIoT.Device.Services.ConfigurationManager

Configuration mode manager for MAKO-IoT

MakoIoT.Device.Services.Server

Simple WebServer for .NET nanoFramework C# projects. Based on nanoFramework.WebServer by Laurent Ellerbach and contributors

MakoIoT.Device.Services.ConfigurationApi

REST API for configuration with MAKO-IoT

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on nanoFramework.System.Net.Http:

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
nanoframework/nanoFramework.IoT.Device
📦 This repo includes .NET nanoFramework implementations for various sensors, chips, displays, hats and drivers
Version Downloads Last updated
1.5.193 780 9 days ago
1.5.192 947 16 days ago
1.5.191 503 17 days ago
1.5.189 1,364 a month ago
1.5.188 233 a month ago
1.5.187 215 a month ago
1.5.186 221 a month ago
1.5.184 1,042 a month ago
1.5.183 739 2 months ago
1.5.182 154 2 months ago
1.5.181 466 2 months ago
1.5.180 213 2 months ago
1.5.179 216 2 months ago
1.5.178 197 2 months ago
1.5.177 149 2 months ago
1.5.175 1,922 2 months ago
1.5.172 860 2 months ago
1.5.171 145 2 months ago
1.5.170 158 2 months ago
1.5.169 171 2 months ago
1.5.165 249 3 months ago
1.5.162 537 3 months ago
1.5.161 105 3 months ago
1.5.159 98 3 months ago
1.5.158 109 3 months ago
1.5.157 382 3 months ago
1.5.150 4,460 7 months ago
1.5.145 3,562 8 months ago
1.5.138 4,747 5/13/2024
1.5.136 685 5/10/2024
1.5.134 1,919 4/8/2024
1.5.132 542 4/8/2024
1.5.130 870 4/3/2024
1.5.128 252 4/3/2024
1.5.125 3,657 1/29/2024
1.5.118 1,746 1/24/2024
1.5.113 9,078 11/10/2023
1.5.110 152 11/9/2023
1.5.108 965 11/9/2023
1.5.106 1,660 11/3/2023
1.5.104 2,180 10/10/2023
1.5.102 2,531 10/4/2023
1.5.99 4,911 8/8/2023
1.5.97 889 7/27/2023
1.5.95 240 7/27/2023
1.5.84 6,185 2/17/2023
1.5.82 1,937 1/24/2023
1.5.78 2,791 12/28/2022
1.5.75 541 12/28/2022
1.5.73 532 12/28/2022
1.5.70 1,745 12/27/2022
1.5.68 465 12/22/2022
1.5.61 2,742 11/23/2022
1.5.54 3,537 10/26/2022
1.5.52 2,370 10/26/2022
1.5.50 1,932 10/26/2022
1.5.48 2,169 10/25/2022
1.5.45 975 10/25/2022
1.5.43 2,398 10/24/2022
1.5.41 989 10/24/2022
1.5.39 458 10/24/2022
1.5.37 2,250 10/23/2022
1.5.35 455 10/23/2022
1.5.30 3,388 10/10/2022
1.5.27 3,659 10/8/2022
1.5.24 4,052 9/22/2022
1.5.22 4,199 9/22/2022
1.5.20 3,911 9/15/2022
1.5.18 1,051 9/15/2022
1.5.13 3,219 8/5/2022
1.5.10 3,866 8/4/2022
1.5.8 777 8/4/2022
1.5.6 996 8/4/2022
1.5.4 2,350 8/3/2022
1.5.2 1,049 8/3/2022
1.4.0.25 757 8/3/2022
1.4.0.23 3,595 6/13/2022
1.4.0.21 2,644 6/8/2022
1.4.0.19 2,268 6/8/2022
1.4.0.14 2,452 5/26/2022
1.4.0.12 4,503 5/18/2022
1.4.0.10 4,265 5/3/2022
1.4.0 4,404 3/28/2022
1.4.0-preview.52 163 3/28/2022
1.4.0-preview.51 163 3/28/2022
1.4.0-preview.50 163 3/28/2022
1.4.0-preview.48 162 3/28/2022
1.4.0-preview.47 168 3/28/2022
1.4.0-preview.46 167 3/28/2022
1.4.0-preview.44 217 3/17/2022
1.4.0-preview.43 161 3/17/2022
1.4.0-preview.42 200 3/14/2022
1.4.0-preview.41 166 3/14/2022
1.4.0-preview.40 156 3/14/2022
1.4.0-preview.39 167 3/14/2022
1.4.0-preview.37 163 3/14/2022
1.4.0-preview.36 256 3/8/2022
1.4.0-preview.35 179 3/8/2022
1.4.0-preview.33 179 3/4/2022
1.4.0-preview.32 158 3/3/2022
1.4.0-preview.31 165 3/2/2022
1.4.0-preview.29 222 2/28/2022
1.4.0-preview.28 253 2/24/2022
1.4.0-preview.26 210 2/17/2022
1.4.0-preview.24 182 2/17/2022
1.4.0-preview.22 257 2/6/2022
1.4.0-preview.21 200 2/4/2022
1.4.0-preview.19 175 2/4/2022
1.4.0-preview.18 242 1/28/2022
1.4.0-preview.16 171 1/28/2022
1.4.0-preview.15 176 1/28/2022
1.4.0-preview.13 175 1/28/2022
1.4.0-preview.12 198 1/21/2022
1.4.0-preview.6 288 1/12/2022
1.4.0-preview.5 169 1/12/2022
1.4.0-preview.4 183 1/11/2022
1.4.0-preview.3 174 1/11/2022
1.3.7-preview.8 205 1/5/2022
1.3.7-preview.7 205 1/3/2022
1.3.7-preview.6 179 1/3/2022
1.3.7-preview.5 173 1/3/2022
1.3.7-preview.4 195 12/30/2021
1.3.7-preview.3 188 12/28/2021
1.3.6 786 12/3/2021
1.3.6-preview.23 195 12/3/2021
1.3.6-preview.21 177 12/3/2021
1.3.6-preview.20 198 12/2/2021
1.3.6-preview.19 175 12/2/2021
1.3.6-preview.18 188 12/2/2021
1.3.6-preview.17 193 12/2/2021
1.3.6-preview.16 181 12/2/2021
1.3.6-preview.14 184 12/2/2021
1.3.6-preview.12 178 12/2/2021
1.3.6-preview.10 198 12/1/2021
1.3.6-preview.7 186 12/1/2021
1.3.6-preview.1 358 11/11/2021
1.3.5-preview.8 313 10/22/2021
1.3.5-preview.5 229 10/18/2021
1.3.4 1,654 7/16/2021
1.3.4-preview.78 189 7/16/2021
1.3.4-preview.76 189 7/16/2021
1.3.4-preview.74 188 7/16/2021
1.3.4-preview.72 200 7/15/2021
1.3.4-preview.70 205 7/14/2021
1.3.4-preview.68 727 6/19/2021
1.3.4-preview.66 291 6/19/2021
1.3.4-preview.64 210 6/17/2021
1.3.4-preview.62 236 6/7/2021
1.3.4-preview.60 197 6/7/2021
1.3.4-preview.58 229 6/7/2021
1.3.4-preview.56 241 6/6/2021
1.3.4-preview.54 254 6/3/2021
1.3.4-preview.52 206 6/2/2021
1.3.4-preview.50 210 6/1/2021
1.3.4-preview.48 213 6/1/2021
1.3.4-preview.41 232 5/25/2021
1.3.4-preview.39 258 5/21/2021
1.3.4-preview.37 260 5/20/2021
1.3.4-preview.35 205 5/19/2021
1.3.4-preview.33 206 5/19/2021
1.3.4-preview.31 221 5/19/2021
1.3.4-preview.29 196 5/15/2021
1.3.4-preview.27 198 5/15/2021
1.3.4-preview.25 194 5/15/2021
1.3.4-preview.23 216 5/13/2021
1.3.4-preview.22 211 5/13/2021
1.3.4-preview.20 219 5/11/2021
1.3.4-preview.18 267 5/6/2021
1.3.4-preview.16 191 5/6/2021
1.3.4-preview.14 185 5/5/2021
1.3.4-preview.13 187 5/5/2021
1.3.4-preview.10 244 4/10/2021
1.3.4-preview.9 244 4/9/2021
1.3.4-preview.7 225 4/5/2021
1.3.3-preview.65 279 3/20/2021
1.3.3-preview.62 233 3/19/2021
1.3.3-preview.60 197 3/17/2021
1.3.3-preview.57 204 3/17/2021
1.3.3-preview.55 238 3/2/2021
1.3.3-preview.50 437 1/19/2021
1.3.3-preview.47 242 1/6/2021
1.3.3-preview.40 224 12/29/2020
1.3.3-preview.34 295 12/7/2020
1.3.3-preview.32 253 12/7/2020
1.3.3-preview.27 302 11/3/2020
1.3.3-preview.25 279 10/26/2020
1.3.3-preview.23 299 10/21/2020
1.3.3-preview.17 294 10/20/2020
1.3.3-preview.15 351 10/1/2020
1.3.3-preview.11 270 9/30/2020
1.3.3-preview.9 275 9/30/2020
1.3.3-preview.7 299 9/27/2020
1.3.3-preview.5 309 9/27/2020
1.3.3-preview.1 272 9/24/2020
1.3.2-preview.3 297 9/19/2020
1.3.2-preview.1 368 8/25/2020
1.3.1-preview.6 313 7/2/2020
1.3.1-preview.3 349 6/30/2020
1.3.0 820 6/16/2020
1.3.0-rc.3 327 6/16/2020
1.3.0-preview.11 330 6/16/2020
1.3.0-preview.9 276 6/16/2020
1.3.0-preview.7 272 6/16/2020
1.3.0-alpha.12 328 6/16/2020
1.3.0-alpha.10 263 6/16/2020
1.3.0-alpha.8 278 6/16/2020
1.2.2 527 6/12/2020
1.2.2-preview.41 288 6/12/2020
1.2.2-preview.39 289 6/12/2020
1.2.2-preview.34 296 6/3/2020
1.2.2-preview.33 307 6/3/2020
1.2.2-preview.31 404 5/31/2020
1.2.2-preview.30 295 5/31/2020
1.2.2-preview.29 318 5/31/2020
1.2.2-preview.28 298 5/29/2020
1.2.2-preview.27 336 5/8/2020
1.2.2-preview.26 303 5/8/2020
1.2.2-preview.25 311 4/27/2020
1.2.2-preview.24 295 4/24/2020
1.2.2-preview.23 276 4/21/2020
1.2.2-preview.22 327 4/16/2020
1.2.2-preview.19 325 4/16/2020
1.2.2-preview.18 288 4/14/2020
1.2.2-preview.17 297 4/14/2020
1.2.2-preview.16 290 4/14/2020
1.2.2-preview.15 337 3/25/2020
1.2.2-preview.14 337 3/15/2020
1.2.2-preview.13 336 3/10/2020
1.2.2-preview.12 295 3/10/2020
1.2.2-preview.10 277 3/10/2020
1.2.2-preview.8 289 3/10/2020
1.2.2-preview.7 285 3/10/2020
1.2.2-preview.6 310 3/9/2020
1.2.2-preview.5 313 3/9/2020
1.2.2-preview.4 303 3/6/2020
1.2.2-preview.3 368 1/13/2020
1.2.2-preview.2 368 11/14/2019
1.2.2-preview.1 312 11/12/2019
1.2.2-alpha.42 276 6/12/2020
1.2.2-alpha.40 288 6/12/2020
1.2.2-alpha.38 317 6/11/2020
1.2.2-alpha.35 292 6/3/2020
1.2.2-alpha.34 300 6/3/2020
1.2.2-alpha.32 384 5/31/2020
1.2.2-alpha.31 315 5/31/2020
1.2.2-alpha.30 316 5/30/2020
1.2.2-alpha.29 293 5/29/2020
1.2.2-alpha.28 303 5/8/2020
1.2.2-alpha.27 297 5/8/2020
1.2.2-alpha.26 282 4/27/2020
1.2.2-alpha.23 320 4/16/2020
1.2.2-alpha.21 321 4/16/2020
1.2.2-alpha.20 312 4/16/2020
1.2.2-alpha.19 275 4/14/2020
1.2.2-alpha.18 283 4/14/2020
1.2.2-alpha.17 289 4/14/2020
1.2.2-alpha.16 333 3/25/2020
1.2.2-alpha.15 328 3/15/2020
1.2.2-alpha.14 281 3/10/2020
1.2.2-alpha.13 278 3/10/2020
1.2.2-alpha.11 282 3/10/2020
1.2.2-alpha.10 286 3/10/2020
1.2.2-alpha.9 293 3/10/2020
1.2.2-alpha.8 314 3/9/2020
1.2.2-alpha.7 314 3/9/2020
1.2.2-alpha.6 331 3/9/2020
1.2.1-preview.3 302 11/8/2019
1.2.1-preview.1 314 11/5/2019
1.2.0-preview.3 331 10/18/2019
1.1.0 693 10/17/2019
1.1.0-preview.3 307 10/17/2019
1.0.8-preview.7 300 10/17/2019
1.0.8-preview.5 317 10/15/2019
1.0.8-preview.4 317 9/30/2019
1.0.8-preview.1 331 8/30/2019
1.0.7-preview.1 323 8/30/2019
1.0.6-preview.33 323 8/19/2019
1.0.6-preview.30 347 7/19/2019
1.0.6-preview.26 449 6/23/2019
1.0.6-preview.19 359 6/20/2019
1.0.6-preview.17 356 6/14/2019
1.0.6-preview.14 379 6/12/2019
1.0.6-preview.10 353 6/12/2019
1.0.6-preview.6 367 6/5/2019
1.0.6-preview.4 372 6/5/2019
1.0.6-preview.2 358 5/31/2019
1.0.5-preview-038 608 4/24/2019
1.0.5-preview-036 614 4/23/2019
1.0.5-preview-031 530 4/7/2019
1.0.5-preview-028 554 4/5/2019
1.0.5-preview-026 525 4/5/2019
1.0.5-preview-024 521 4/3/2019
1.0.5-preview-022 574 3/27/2019
1.0.5-preview-020 520 3/26/2019
1.0.5-preview-017 533 3/26/2019
1.0.5-preview-009 543 3/25/2019
1.0.5-preview-007 525 3/15/2019
1.0.5-preview-004 572 3/11/2019
1.0.5-preview-002 530 3/11/2019
1.0.5-preview-001 569 3/11/2019
1.0.4 1,086 1/22/2019
1.0.4-preview-009 557 3/10/2019
1.0.4-preview-003 682 1/3/2019
1.0.3 821 12/17/2018
1.0.2 815 11/15/2018
1.0.2-preview-009 686 11/20/2018
1.0.2-preview-005 670 11/8/2018