Skip to content

Commit

Permalink
Republish
Browse files Browse the repository at this point in the history
  • Loading branch information
Tewr committed May 20, 2021
1 parent 5061bf0 commit 2caf0c9
Show file tree
Hide file tree
Showing 660 changed files with 1,663 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
1 change: 1 addition & 0 deletions .nojekyll.br
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
;
Empty file added .nojekyll.gz
Empty file.
41 changes: 41 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>BlazorFileReader</title>
<script type="text/javascript">
// Single Page Apps for GitHub Pages
// https://github.com/rafrex/spa-github-pages
// Copyright (c) 2016 Rafael Pedicini, licensed under the MIT License
// ----------------------------------------------------------------------
// This script takes the current url and converts the path and query
// string into just a query string, and then redirects the browser
// to the new url with only a query string and hash fragment,
// e.g. http://www.foo.tld/one/two?a=b&c=d#qwe, becomes
// http://www.foo.tld/?p=/one/two&q=a=b~and~c=d#qwe
// Note: this 404.html file must be at least 512 bytes for it to work
// with Internet Explorer (it is currently > 512 bytes)

// If you're creating a Project Pages site and NOT using a custom domain,
// then set segmentCount to 1 (enterprise users may need to set it to > 1).
// This way the code will only replace the route part of the path, and not
// the real directory in which the app resides, for example:
// https://username.github.io/repo-name/one/two?a=b&c=d#qwe becomes
// https://username.github.io/repo-name/?p=/one/two&q=a=b~and~c=d#qwe
// Otherwise, leave segmentCount as 0.
var segmentCount = 1;

var l = window.location;
l.replace(
l.protocol + '//' + l.hostname + (l.port ? ':' + l.port : '') +
l.pathname.split('/').slice(0, 1 + segmentCount).join('/') + '/?p=/' +
l.pathname.slice(1).split('/').slice(segmentCount).join('/').replace(/&/g, '~and~') +
(l.search ? '&q=' + l.search.slice(1).replace(/&/g, '~and~') : '') +
l.hash
);

</script>
</head>
<body>
</body>
</html>
Binary file added 404.html.br
Binary file not shown.
Binary file added 404.html.gz
Binary file not shown.
1 change: 1 addition & 0 deletions _content/TG.Blazor.IndexedDB/indexedDb.Blazor.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
class DotNetObjectProxy {
constructor(id) {
this.__dotNetObject = id;
this.serializer = self.jsRuntimeSerializers.get('BlazorWorkerJSRuntimeSerializer');
}

invokeMethodAsync(methodName, ...methodArgs) {
return new Promise((resolve, reject) => {
try {
const argsString = this.serializer.serialize({
methodName,
methodargs: methodArgs || []
});
var result = self.Module.mono_call_static_method("[BlazorWorker.Extensions.JSRuntime]BlazorWorker.Extensions.JSRuntime.BlazorWorkerJSRuntime:InvokeMethod", this.__dotNetObject, argsString);
resolve(result);
} catch (e) {
reject(e);
}
});
}
}

class BlazorWorkerJSRuntimeSerializer {

constructor() {
this.baseSerializer = self.jsRuntimeSerializers.get('nativejson');
}

serialize = (o) => this.baseSerializer.serialize(o);


deserialize = (s) => {
let deserializedObj = this.baseSerializer.deserialize(s);
deserializedObj = BlazorWorkerJSRuntimeSerializer.recursivelyFindDotnetObjectProxy(deserializedObj);
return deserializedObj;
}

static recursivelyFindDotnetObjectProxy(obj) {

const recursion = BlazorWorkerJSRuntimeSerializer.recursivelyFindDotnetObjectProxy;
const dotnetObjectKey = "__dotNetObject";
const keys = Object.keys(obj);
if (keys.length === 1 && keys[0] === dotnetObjectKey) {
return new DotNetObjectProxy(obj[dotnetObjectKey]);
}

for (let i = 0; i < keys.length; i++) {
const property = keys[i];
let value = obj[property];
if (value !== null && typeof value === "object") {
obj[property] = recursion(value);
}
}

return obj;
}
};

self.jsRuntimeSerializers.set('BlazorWorkerJSRuntimeSerializer', new BlazorWorkerJSRuntimeSerializer());
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/BlazorWorker.Core.dll
Binary file not shown.
Binary file added _framework/BlazorWorker.Core.dll.br
Binary file not shown.
Binary file added _framework/BlazorWorker.Core.dll.gz
Binary file not shown.
Binary file added _framework/BlazorWorker.Demo.Client.dll
Binary file not shown.
Binary file added _framework/BlazorWorker.Demo.Client.dll.br
Binary file not shown.
Binary file added _framework/BlazorWorker.Demo.Client.dll.gz
Binary file not shown.
Binary file added _framework/BlazorWorker.Demo.IoCExample.dll
Binary file not shown.
Binary file added _framework/BlazorWorker.Demo.IoCExample.dll.br
Binary file not shown.
Binary file added _framework/BlazorWorker.Demo.IoCExample.dll.gz
Binary file not shown.
Binary file added _framework/BlazorWorker.Demo.Shared.dll
Binary file not shown.
Binary file added _framework/BlazorWorker.Demo.Shared.dll.br
Binary file not shown.
Binary file added _framework/BlazorWorker.Demo.Shared.dll.gz
Binary file not shown.
Binary file added _framework/BlazorWorker.Demo.SharedPages.dll
Binary file not shown.
Binary file added _framework/BlazorWorker.Demo.SharedPages.dll.br
Binary file not shown.
Binary file added _framework/BlazorWorker.Demo.SharedPages.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/BlazorWorker.WorkerCore.dll
Binary file not shown.
Binary file added _framework/BlazorWorker.WorkerCore.dll.br
Binary file not shown.
Binary file added _framework/BlazorWorker.WorkerCore.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.AspNetCore.Components.dll
Binary file not shown.
Binary file added _framework/Microsoft.AspNetCore.Components.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.AspNetCore.Components.dll.gz
Binary file not shown.
Binary file added _framework/Microsoft.CSharp.dll
Binary file not shown.
Binary file added _framework/Microsoft.CSharp.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.CSharp.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Configuration.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.dll
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.dll.gz
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.dll
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.dll.gz
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Primitives.dll
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Primitives.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Primitives.dll.gz
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.WebAssembly.dll
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.WebAssembly.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.WebAssembly.dll.gz
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.dll
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.dll.gz
Binary file not shown.
Binary file added _framework/Microsoft.VisualBasic.Core.dll
Binary file not shown.
Binary file added _framework/Microsoft.VisualBasic.Core.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.VisualBasic.Core.dll.gz
Binary file not shown.
Binary file added _framework/Microsoft.VisualBasic.dll
Binary file not shown.
Binary file added _framework/Microsoft.VisualBasic.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.VisualBasic.dll.gz
Binary file not shown.
Binary file added _framework/Microsoft.Win32.Primitives.dll
Binary file not shown.
Binary file added _framework/Microsoft.Win32.Primitives.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.Win32.Primitives.dll.gz
Binary file not shown.
Binary file added _framework/Microsoft.Win32.Registry.dll
Binary file not shown.
Binary file added _framework/Microsoft.Win32.Registry.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.Win32.Registry.dll.gz
Binary file not shown.
Binary file added _framework/Newtonsoft.Json.dll
Binary file not shown.
Binary file added _framework/Newtonsoft.Json.dll.br
Binary file not shown.
Binary file added _framework/Newtonsoft.Json.dll.gz
Binary file not shown.
Binary file added _framework/Serialize.Linq.dll
Binary file not shown.
Binary file added _framework/Serialize.Linq.dll.br
Binary file not shown.
Binary file added _framework/Serialize.Linq.dll.gz
Binary file not shown.
Binary file added _framework/System.AppContext.dll
Binary file not shown.
Binary file added _framework/System.AppContext.dll.br
Binary file not shown.
Binary file added _framework/System.AppContext.dll.gz
Binary file not shown.
Binary file added _framework/System.Buffers.dll
Binary file not shown.
Binary file added _framework/System.Buffers.dll.br
Binary file not shown.
Binary file added _framework/System.Buffers.dll.gz
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.dll
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.dll.br
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.dll.gz
Binary file not shown.
Binary file added _framework/System.Collections.Immutable.dll
Binary file not shown.
Binary file added _framework/System.Collections.Immutable.dll.br
Binary file not shown.
Binary file added _framework/System.Collections.Immutable.dll.gz
Binary file not shown.
Binary file added _framework/System.Collections.NonGeneric.dll
Binary file not shown.
Binary file added _framework/System.Collections.NonGeneric.dll.br
Binary file not shown.
Binary file added _framework/System.Collections.NonGeneric.dll.gz
Binary file not shown.
Binary file added _framework/System.Collections.Specialized.dll
Binary file not shown.
Binary file added _framework/System.Collections.Specialized.dll.br
Binary file not shown.
Binary file added _framework/System.Collections.Specialized.dll.gz
Binary file not shown.
Binary file added _framework/System.Collections.dll
Binary file not shown.
Binary file added _framework/System.Collections.dll.br
Binary file not shown.
Binary file added _framework/System.Collections.dll.gz
Binary file not shown.
Binary file added _framework/System.ComponentModel.Annotations.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.ComponentModel.Primitives.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.ComponentModel.dll
Binary file not shown.
Binary file added _framework/System.ComponentModel.dll.br
Binary file not shown.
Binary file added _framework/System.ComponentModel.dll.gz
Binary file not shown.
Binary file added _framework/System.Configuration.dll
Binary file not shown.
Binary file added _framework/System.Configuration.dll.br
Binary file not shown.
Binary file added _framework/System.Configuration.dll.gz
Binary file not shown.
Binary file added _framework/System.Console.dll
Binary file not shown.
Binary file added _framework/System.Console.dll.br
Binary file not shown.
Binary file added _framework/System.Console.dll.gz
Binary file not shown.
Binary file added _framework/System.Core.dll
Binary file not shown.
Binary file added _framework/System.Core.dll.br
Binary file not shown.
Binary file added _framework/System.Core.dll.gz
Binary file not shown.
Binary file added _framework/System.Data.Common.dll
Binary file not shown.
Binary file added _framework/System.Data.Common.dll.br
Binary file not shown.
Binary file added _framework/System.Data.Common.dll.gz
Binary file not shown.
Binary file added _framework/System.Data.DataSetExtensions.dll
Binary file not shown.
Binary file added _framework/System.Data.DataSetExtensions.dll.br
Binary file not shown.
Binary file added _framework/System.Data.DataSetExtensions.dll.gz
Binary file not shown.
Binary file added _framework/System.Data.dll
Binary file not shown.
Binary file added _framework/System.Data.dll.br
Binary file not shown.
Binary file added _framework/System.Data.dll.gz
Binary file not shown.
Binary file added _framework/System.Diagnostics.Contracts.dll
Binary file not shown.
Binary file added _framework/System.Diagnostics.Contracts.dll.br
Binary file not shown.
Binary file added _framework/System.Diagnostics.Contracts.dll.gz
Binary file not shown.
Binary file added _framework/System.Diagnostics.Debug.dll
Binary file not shown.
Binary file added _framework/System.Diagnostics.Debug.dll.br
Binary file not shown.
Binary file added _framework/System.Diagnostics.Debug.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Diagnostics.FileVersionInfo.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Diagnostics.Process.dll
Binary file not shown.
Binary file added _framework/System.Diagnostics.Process.dll.br
Binary file not shown.
Binary file added _framework/System.Diagnostics.Process.dll.gz
Binary file not shown.
Binary file added _framework/System.Diagnostics.StackTrace.dll
Binary file not shown.
Binary file added _framework/System.Diagnostics.StackTrace.dll.br
Binary file not shown.
Binary file added _framework/System.Diagnostics.StackTrace.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Diagnostics.Tools.dll
Binary file not shown.
Binary file added _framework/System.Diagnostics.Tools.dll.br
Binary file not shown.
Binary file added _framework/System.Diagnostics.Tools.dll.gz
Binary file not shown.
Binary file added _framework/System.Diagnostics.TraceSource.dll
Binary file not shown.
Binary file added _framework/System.Diagnostics.TraceSource.dll.br
Binary file not shown.
Binary file added _framework/System.Diagnostics.TraceSource.dll.gz
Binary file not shown.
Binary file added _framework/System.Diagnostics.Tracing.dll
Binary file not shown.
Binary file added _framework/System.Diagnostics.Tracing.dll.br
Binary file not shown.
Binary file added _framework/System.Diagnostics.Tracing.dll.gz
Binary file not shown.
Binary file added _framework/System.Drawing.Primitives.dll
Binary file not shown.
Binary file added _framework/System.Drawing.Primitives.dll.br
Binary file not shown.
Binary file added _framework/System.Drawing.Primitives.dll.gz
Binary file not shown.
Binary file added _framework/System.Drawing.dll
Binary file not shown.
Binary file added _framework/System.Drawing.dll.br
Binary file not shown.
Binary file added _framework/System.Drawing.dll.gz
Binary file not shown.
Binary file added _framework/System.Dynamic.Runtime.dll
Binary file not shown.
Binary file added _framework/System.Dynamic.Runtime.dll.br
Binary file not shown.
Binary file added _framework/System.Dynamic.Runtime.dll.gz
Binary file not shown.
Binary file added _framework/System.Formats.Asn1.dll
Binary file not shown.
Binary file added _framework/System.Formats.Asn1.dll.br
Binary file not shown.
Binary file added _framework/System.Formats.Asn1.dll.gz
Binary file not shown.
Binary file added _framework/System.Globalization.Calendars.dll
Binary file not shown.
Binary file added _framework/System.Globalization.Calendars.dll.br
Binary file not shown.
Binary file added _framework/System.Globalization.Calendars.dll.gz
Binary file not shown.
Binary file added _framework/System.Globalization.Extensions.dll
Binary file not shown.
Binary file added _framework/System.Globalization.Extensions.dll.br
Binary file not shown.
Binary file added _framework/System.Globalization.Extensions.dll.gz
Binary file not shown.
Binary file added _framework/System.Globalization.dll
Binary file not shown.
Binary file added _framework/System.Globalization.dll.br
Binary file not shown.
Binary file added _framework/System.Globalization.dll.gz
Binary file not shown.
Binary file added _framework/System.IO.Compression.Brotli.dll
Binary file not shown.
Binary file added _framework/System.IO.Compression.Brotli.dll.br
Binary file not shown.
Binary file added _framework/System.IO.Compression.Brotli.dll.gz
Binary file not shown.
Binary file added _framework/System.IO.Compression.FileSystem.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.IO.Compression.ZipFile.dll
Binary file not shown.
Binary file added _framework/System.IO.Compression.ZipFile.dll.br
Binary file not shown.
Binary file added _framework/System.IO.Compression.ZipFile.dll.gz
Binary file not shown.
Binary file added _framework/System.IO.Compression.dll
Binary file not shown.
Binary file added _framework/System.IO.Compression.dll.br
Binary file not shown.
Binary file added _framework/System.IO.Compression.dll.gz
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.AccessControl.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.DriveInfo.dll
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.DriveInfo.dll.br
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.DriveInfo.dll.gz
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.Primitives.dll
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.Primitives.dll.br
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.Watcher.dll
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.Watcher.dll.br
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.Watcher.dll.gz
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.dll
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.dll.br
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.dll.gz
Binary file not shown.
Binary file added _framework/System.IO.IsolatedStorage.dll
Binary file not shown.
Binary file added _framework/System.IO.IsolatedStorage.dll.br
Binary file not shown.
Binary file added _framework/System.IO.IsolatedStorage.dll.gz
Binary file not shown.
Binary file added _framework/System.IO.MemoryMappedFiles.dll
Binary file not shown.
Binary file added _framework/System.IO.MemoryMappedFiles.dll.br
Binary file not shown.
Binary file added _framework/System.IO.MemoryMappedFiles.dll.gz
Binary file not shown.
Binary file added _framework/System.IO.Pipelines.dll
Binary file not shown.
Binary file added _framework/System.IO.Pipelines.dll.br
Binary file not shown.
Binary file added _framework/System.IO.Pipelines.dll.gz
Binary file not shown.
Binary file added _framework/System.IO.Pipes.AccessControl.dll
Binary file not shown.
Binary file added _framework/System.IO.Pipes.AccessControl.dll.br
Binary file not shown.
Binary file added _framework/System.IO.Pipes.AccessControl.dll.gz
Binary file not shown.
Binary file added _framework/System.IO.Pipes.dll
Binary file not shown.
Binary file added _framework/System.IO.Pipes.dll.br
Binary file not shown.
Binary file added _framework/System.IO.Pipes.dll.gz
Binary file not shown.
Binary file added _framework/System.IO.UnmanagedMemoryStream.dll
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.IO.UnmanagedMemoryStream.dll.gz
Binary file not shown.
Binary file added _framework/System.IO.dll
Binary file not shown.
Binary file added _framework/System.IO.dll.br
Binary file not shown.
Binary file added _framework/System.IO.dll.gz
Binary file not shown.
Binary file added _framework/System.Linq.Expressions.dll
Binary file not shown.
Binary file added _framework/System.Linq.Expressions.dll.br
Binary file not shown.
Binary file added _framework/System.Linq.Expressions.dll.gz
Binary file not shown.
Binary file added _framework/System.Linq.Parallel.dll
Binary file not shown.
Binary file added _framework/System.Linq.Parallel.dll.br
Binary file not shown.
Binary file added _framework/System.Linq.Parallel.dll.gz
Binary file not shown.
Binary file added _framework/System.Linq.Queryable.dll
Binary file not shown.
Binary file added _framework/System.Linq.Queryable.dll.br
Binary file not shown.
Binary file added _framework/System.Linq.Queryable.dll.gz
Binary file not shown.
Binary file added _framework/System.Linq.dll
Binary file not shown.
Binary file added _framework/System.Linq.dll.br
Binary file not shown.
Binary file added _framework/System.Linq.dll.gz
Binary file not shown.
Binary file added _framework/System.Memory.dll
Binary file not shown.
Binary file added _framework/System.Memory.dll.br
Binary file not shown.
Binary file added _framework/System.Memory.dll.gz
Binary file not shown.
Binary file added _framework/System.Net.Http.Json.dll
Binary file not shown.
Binary file added _framework/System.Net.Http.Json.dll.br
Binary file not shown.
Binary file added _framework/System.Net.Http.Json.dll.gz
Binary file not shown.
Binary file added _framework/System.Net.Http.dll
Binary file not shown.
Binary file added _framework/System.Net.Http.dll.br
Binary file not shown.
Binary file added _framework/System.Net.Http.dll.gz
Binary file not shown.
Binary file added _framework/System.Net.HttpListener.dll
Binary file not shown.
Binary file added _framework/System.Net.HttpListener.dll.br
Binary file not shown.
Binary file added _framework/System.Net.HttpListener.dll.gz
Binary file not shown.
Binary file added _framework/System.Net.Mail.dll
Binary file not shown.
Binary file added _framework/System.Net.Mail.dll.br
Binary file not shown.
Binary file added _framework/System.Net.Mail.dll.gz
Binary file not shown.
Binary file added _framework/System.Net.NameResolution.dll
Binary file not shown.
Binary file added _framework/System.Net.NameResolution.dll.br
Binary file not shown.
Binary file added _framework/System.Net.NameResolution.dll.gz
Binary file not shown.
Binary file added _framework/System.Net.NetworkInformation.dll
Binary file not shown.
Binary file added _framework/System.Net.NetworkInformation.dll.br
Binary file not shown.
Binary file added _framework/System.Net.NetworkInformation.dll.gz
Binary file not shown.
Binary file added _framework/System.Net.Ping.dll
Binary file not shown.
Binary file added _framework/System.Net.Ping.dll.br
Binary file not shown.
Binary file added _framework/System.Net.Ping.dll.gz
Binary file not shown.
Binary file added _framework/System.Net.Primitives.dll
Binary file not shown.
Binary file added _framework/System.Net.Primitives.dll.br
Binary file not shown.
Binary file added _framework/System.Net.Primitives.dll.gz
Binary file not shown.
Binary file added _framework/System.Net.Requests.dll
Binary file not shown.
Binary file added _framework/System.Net.Requests.dll.br
Binary file not shown.
Binary file added _framework/System.Net.Requests.dll.gz
Binary file not shown.
Loading

0 comments on commit 2caf0c9

Please sign in to comment.