dynamovisualprogramming.zerotouchlibrary by

<PackageReference Include="dynamovisualprogramming.zerotouchlibrary" Version="2.0.0-beta4586" />

Error reading package

System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception.
 ---> System.IO.IOException:  Received an unexpected EOF or 0 bytes from the transport stream.
   at System.Net.Security.SslStream.ReceiveBlobAsync[TIOAdapter](TIOAdapter adapter)
   at System.Net.Security.SslStream.ForceAuthenticationAsync[TIOAdapter](TIOAdapter adapter, Boolean receiveFirst, Byte[] reAuthenticationData, Boolean isApm)
   at System.Net.Http.ConnectHelper.EstablishSslConnectionAsyncCore(Boolean async, Stream stream, SslClientAuthenticationOptions sslOptions, CancellationToken cancellationToken)
   --- End of inner exception stack trace ---
   at System.Net.Http.ConnectHelper.EstablishSslConnectionAsyncCore(Boolean async, Stream stream, SslClientAuthenticationOptions sslOptions, CancellationToken cancellationToken)
   at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken)
   at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken)
   at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken)
   at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken)
   at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken)
   at System.Net.Http.DecompressionHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken)
   at System.Net.Http.DiagnosticsHandler.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken)
   at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
   at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
   at System.Net.Http.HttpClient.SendAsyncCore(HttpRequestMessage request, HttpCompletionOption completionOption, Boolean async, Boolean emitTelemetryStartStop, CancellationToken cancellationToken)
   at FuGetGallery.Entry.OpenAsync() in /home/runner/work/FuGetGallery/FuGetGallery/Data/PackageData.cs:line 86
   at FuGetGallery.Entry.Open() in /home/runner/work/FuGetGallery/FuGetGallery/Data/PackageData.cs:line 33
   at FuGetGallery.PackageData.ReadNuspec(Entry entry) in /home/runner/work/FuGetGallery/FuGetGallery/Data/PackageData.cs:line 372
   at FuGetGallery.PackageData.ReadAsync(HttpClient httpClient, String packageUri) in /home/runner/work/FuGetGallery/FuGetGallery/Data/PackageData.cs:line 365
   at FuGetGallery.PackageData.PackageDataCache.ReadPackageFromUrl(PackageData package, HttpClient httpClient, CancellationToken token) in /home/runner/work/FuGetGallery/FuGetGallery/Data/PackageData.cs:line 600
   at FuGetGallery.PackageData.PackageDataCache.GetValueAsync(String arg0, PackageVersion arg1, HttpClient httpClient, CancellationToken token) in /home/runner/work/FuGetGallery/FuGetGallery/Data/PackageData.cs:line 576

 SIUnit

public abstract class SIUnit : BaseUnit
public static Dictionary<string, double> Conversions { get; }

public abstract double UnitValue { get; }

public double Value { get; set; }

protected SIUnit(double value)

public static SIUnit op_Addition(SIUnit x, SIUnit y)

public static SIUnit op_Addition(SIUnit x, double y)

public static double op_Addition(double x, SIUnit y)

public static object op_Division(SIUnit x, SIUnit y)

public static SIUnit op_Division(SIUnit x, double y)

public static bool op_GreaterThan(double x, SIUnit y)

public static bool op_GreaterThan(SIUnit x, double y)

public static bool op_GreaterThan(SIUnit x, SIUnit y)

public static bool op_GreaterThanOrEqual(double x, SIUnit y)

public static bool op_GreaterThanOrEqual(SIUnit x, double y)

public static bool op_GreaterThanOrEqual(SIUnit x, SIUnit y)

public static bool op_LessThan(double x, SIUnit y)

public static bool op_LessThan(SIUnit x, double y)

public static bool op_LessThan(SIUnit x, SIUnit y)

public static bool op_LessThanOrEqual(double x, SIUnit y)

public static bool op_LessThanOrEqual(SIUnit x, double y)

public static bool op_LessThanOrEqual(SIUnit x, SIUnit y)

public static SIUnit op_Modulus(SIUnit x, SIUnit y)

public static SIUnit op_Modulus(SIUnit x, double y)

public static double op_Modulus(double x, SIUnit y)

public static SIUnit op_Multiply(SIUnit x, SIUnit y)

public static SIUnit op_Multiply(SIUnit x, double y)

public static SIUnit op_Multiply(double x, SIUnit y)

public static SIUnit op_Subtraction(SIUnit x, SIUnit y)

public static SIUnit op_Subtraction(SIUnit x, double y)

public static double op_Subtraction(double x, SIUnit y)

public static SIUnit ToSIUnit(object value)

public abstract SIUnit Add(SIUnit x)

public abstract SIUnit Add(double x)

public abstract SIUnit Ceiling()

public abstract double ConvertToHostUnits()

public abstract object Divide(SIUnit x)

public abstract SIUnit Divide(double x)

public abstract SIUnit Floor()

public abstract SIUnit Modulo(SIUnit x)

public abstract SIUnit Modulo(double x)

public abstract SIUnit Multiply(SIUnit x)

public abstract SIUnit Multiply(double x)

public abstract SIUnit Round()

public abstract void SetValueFromString(string value)

public abstract SIUnit Subtract(SIUnit x)

public abstract SIUnit Subtract(double x)