Skip to content

Commit

Permalink
Deploying to main from @ block-core/angor@6c163f3 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
dangershony committed Jul 22, 2024
1 parent 2d74c1f commit 4cb0b2a
Show file tree
Hide file tree
Showing 475 changed files with 2,391 additions and 1 deletion.
Empty file added .nojekyll
Empty file.
52 changes: 52 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Angor</title>
<base href="/" />
<link rel="icon" type="image/svg+xml" href="/assets/img/angor-icon.svg" />
<link rel="icon" type="image/png" href="/assets/img/favicon.png" />
<link href="manifest.json" rel="manifest" />
<link rel="apple-touch-icon" sizes="512x512" href="/assets/img/icon-512.png" />
<link rel="apple-touch-icon" sizes="192x192" href="/assets/img/icon-192.png" />
<link href="Angor.Client.styles.css" rel="stylesheet" />
<link href="/assets/css/dashboard.css" rel="stylesheet" />
<link href="/assets/css/app.css" rel="stylesheet" />
<meta name="description" content="Angor is a decentralized crowdfunding platform built on Bitcoin, incorporating Nostr for enhanced security and transparency. It allows investors to maintain control over their funds and supports direct communication between investors and founders.">
<meta name="keywords" content="Angor, blockchain, crowdfunding, smart contracts, blockchain technology, bitcoin, nostr, decentralized applications, dApps, development, easy to use, secure">
<meta name="author" content="Angor Team">
<meta name="robots" content="index, follow">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#ffffff">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="Angor">
<meta name="application-name" content="Angor">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/assets/img/icon-512.png">
<meta name="msapplication-config" content="/manifest.json">
</head>

<body>
<div id="app">
<div class="loader-wrapper">
<div class="loader"></div>
</div>
</div>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script src="_framework/blazor.webassembly.js"></script>
<script>navigator.serviceWorker.register('service-worker.js');</script>
<script type="module" src="service-crypto.js"></script>
<script src="/ServiceWorkerRegister.js"></script>
<script src="nostr-tools-methods.js" type="module"></script>
<script src="/assets/js/appUpdate.js"></script>
<script src="/assets/js/app.js"></script>
</body>

</html>
80 changes: 80 additions & 0 deletions Angor.Client.styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
/* /Shared/MainLayout.razor.rz.scp.css */
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-fe9ehfui7y] {
background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-fe9ehfui7y] {
height: 3.5rem;
background-color: rgba(0,54,70,0.4);
}

.navbar-brand[b-fe9ehfui7y] {
font-size: 1.1rem;
}

.oi[b-fe9ehfui7y] {
width: 2rem;
font-size: 1.1rem;
vertical-align: text-top;
top: -2px;
}

.nav-item[b-fe9ehfui7y] {
font-size: 0.9rem;
padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-fe9ehfui7y] {
padding-top: 1rem;
}

.nav-item:last-of-type[b-fe9ehfui7y] {
padding-bottom: 1rem;
}

.nav-item[b-fe9ehfui7y] a {
color: #d7d7d7;
border-radius: 4px;
height: 3rem;
display: flex;
align-items: center;
line-height: 3rem;
}

.nav-item[b-fe9ehfui7y] a.active {
background-color: rgba(255,255,255,0.25);
color: white;
}

.nav-item[b-fe9ehfui7y] a:hover {
background-color: rgba(255,255,255,0.1);
color: white;
}

@media (min-width: 641px) {
.navbar-toggler[b-fe9ehfui7y] {
display: none;
}

.collapse[b-fe9ehfui7y] {
/* Never collapse the sidebar for wide screens */
display: block;
}

.nav-scrollable[b-fe9ehfui7y] {
/* Allow sidebar to scroll for tall menus */
height: calc(100vh - 3.5rem);
overflow-y: auto;
}
}

.nav-footer[b-fe9ehfui7y] {
/* Footer styles */
position: absolute;
bottom: 0;
left: 0;
right: 0;
color: #d7d7d7;
padding: 10px 0 !important;
}
1 change: 0 additions & 1 deletion README.md

This file was deleted.

74 changes: 74 additions & 0 deletions ServiceWorkerRegister.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
const serviceWorkerFileName = 'service-worker.js';
const swInstalledEvent = 'installed';
const staticCachePrefix = 'angor-cache-v';
const blazorAssembly = 'Angor';
const blazorInstallMethod = 'PWAInstallable';

const notifyNewVersion = () => {
const bc = new BroadcastChannel('angor-channel');
bc.postMessage('new-version-found');
}

window.updateAvailable = new Promise(function (resolve, reject) {
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register(serviceWorkerFileName)
.then(function (registration) {
console.log('Registration successful, scope is:', registration.scope);
registration.onupdatefound = () => {
const installingWorker = registration.installing;
installingWorker.onstatechange = () => {
switch (installingWorker.state) {
case swInstalledEvent:
if (navigator.serviceWorker.controller) {
resolve(true);
} else {
resolve(false);
}
break;
default:
}
};
};
})
.catch(error =>
console.log('Service worker registration failed, error:', error));
}
});
window['updateAvailable']
.then(isAvailable => {
if (isAvailable) {
notifyNewVersion();
}
});

function showAddToHomeScreen() {
setTimeout(function () {
const installButton = document.getElementById('installButton');
if (installButton) {
installButton.classList.remove('d-none');
}
}, 3000);
}

window.AngorAPP = {
installPWA: function () {
if (window.PWADeferredPrompt) {
window.PWADeferredPrompt.prompt();
window.PWADeferredPrompt.userChoice
.then(function (choiceResult) {
window.PWADeferredPrompt = null;
});
const installButton = document.getElementById('installButton');
if (installButton) {
installButton.classList.add('d-none');
}
}
}
};

window.addEventListener('beforeinstallprompt', function (e) {
e.preventDefault();
window.PWADeferredPrompt = e;

showAddToHomeScreen();
});
Binary file added _framework/Angor.Client.pdb.gz
Binary file not shown.
Binary file added _framework/Angor.Client.wasm
Binary file not shown.
Binary file added _framework/Angor.Client.wasm.br
Binary file not shown.
Binary file added _framework/Angor.Client.wasm.gz
Binary file not shown.
Binary file added _framework/Angor.Shared.pdb.gz
Binary file not shown.
Binary file added _framework/Angor.Shared.wasm
Binary file not shown.
Binary file added _framework/Angor.Shared.wasm.br
Binary file not shown.
Binary file added _framework/Angor.Shared.wasm.gz
Binary file not shown.
Binary file added _framework/BTCPayServer.Lightning.Common.wasm
Binary file not shown.
Binary file not shown.
Binary file added _framework/BTCPayServer.Lightning.Common.wasm.gz
Binary file not shown.
Binary file added _framework/Blazored.LocalStorage.wasm
Binary file not shown.
Binary file added _framework/Blazored.LocalStorage.wasm.br
Binary file not shown.
Binary file added _framework/Blazored.LocalStorage.wasm.gz
Binary file not shown.
Binary file added _framework/Blazored.SessionStorage.wasm
Binary file not shown.
Binary file added _framework/Blazored.SessionStorage.wasm.br
Binary file not shown.
Binary file added _framework/Blazored.SessionStorage.wasm.gz
Binary file not shown.
Binary file added _framework/Blockcore.wasm
Binary file not shown.
Binary file added _framework/Blockcore.wasm.br
Binary file not shown.
Binary file added _framework/Blockcore.wasm.gz
Binary file not shown.
Binary file added _framework/ConcurrentCollections.wasm
Binary file not shown.
Binary file added _framework/ConcurrentCollections.wasm.br
Binary file not shown.
Binary file added _framework/ConcurrentCollections.wasm.gz
Binary file not shown.
Binary file added _framework/DBreeze.wasm
Binary file not shown.
Binary file added _framework/DBreeze.wasm.br
Binary file not shown.
Binary file added _framework/DBreeze.wasm.gz
Binary file not shown.
Binary file added _framework/HashLib.wasm
Binary file not shown.
Binary file added _framework/HashLib.wasm.br
Binary file not shown.
Binary file added _framework/HashLib.wasm.gz
Binary file not shown.
Binary file added _framework/LiteDB.wasm
Binary file not shown.
Binary file added _framework/LiteDB.wasm.br
Binary file not shown.
Binary file added _framework/LiteDB.wasm.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 not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.AspNetCore.Components.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.CSharp.wasm
Binary file not shown.
Binary file added _framework/Microsoft.CSharp.wasm.br
Binary file not shown.
Binary file added _framework/Microsoft.CSharp.wasm.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 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 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.wasm
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.wasm.br
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.wasm
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.wasm.br
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.wasm.gz
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Primitives.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.WebAssembly.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.wasm
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.wasm.br
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.wasm.gz
Binary file not shown.
Binary file added _framework/NBitcoin.Secp256k1.wasm
Binary file not shown.
Binary file added _framework/NBitcoin.Secp256k1.wasm.br
Binary file not shown.
Binary file added _framework/NBitcoin.Secp256k1.wasm.gz
Binary file not shown.
Binary file added _framework/NBitcoin.wasm
Binary file not shown.
Binary file added _framework/NBitcoin.wasm.br
Binary file not shown.
Binary file added _framework/NBitcoin.wasm.gz
Binary file not shown.
Binary file added _framework/NLog.Extensions.Logging.wasm
Binary file not shown.
Binary file added _framework/NLog.Extensions.Logging.wasm.br
Binary file not shown.
Binary file added _framework/NLog.Extensions.Logging.wasm.gz
Binary file not shown.
Binary file added _framework/NLog.wasm
Binary file not shown.
Binary file added _framework/NLog.wasm.br
Binary file not shown.
Binary file added _framework/NLog.wasm.gz
Binary file not shown.
Binary file added _framework/Newtonsoft.Json.wasm
Binary file not shown.
Binary file added _framework/Newtonsoft.Json.wasm.br
Binary file not shown.
Binary file added _framework/Newtonsoft.Json.wasm.gz
Binary file not shown.
Binary file added _framework/Nostr.Client.wasm
Binary file not shown.
Binary file added _framework/Nostr.Client.wasm.br
Binary file not shown.
Binary file added _framework/Nostr.Client.wasm.gz
Binary file not shown.
Binary file added _framework/Polly.Core.wasm
Binary file not shown.
Binary file added _framework/Polly.Core.wasm.br
Binary file not shown.
Binary file added _framework/Polly.Core.wasm.gz
Binary file not shown.
Binary file added _framework/Polly.wasm
Binary file not shown.
Binary file added _framework/Polly.wasm.br
Binary file not shown.
Binary file added _framework/Polly.wasm.gz
Binary file not shown.
Binary file added _framework/QRCoder.wasm
Binary file not shown.
Binary file added _framework/QRCoder.wasm.br
Binary file not shown.
Binary file added _framework/QRCoder.wasm.gz
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.wasm
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.wasm.br
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.wasm.gz
Binary file not shown.
Binary file added _framework/System.Collections.NonGeneric.wasm
Binary file not shown.
Binary file added _framework/System.Collections.NonGeneric.wasm.br
Binary file not shown.
Binary file added _framework/System.Collections.NonGeneric.wasm.gz
Binary file not shown.
Binary file added _framework/System.Collections.Specialized.wasm
Binary file not shown.
Binary file added _framework/System.Collections.Specialized.wasm.br
Binary file not shown.
Binary file added _framework/System.Collections.Specialized.wasm.gz
Binary file not shown.
Binary file added _framework/System.Collections.wasm
Binary file not shown.
Binary file added _framework/System.Collections.wasm.br
Binary file not shown.
Binary file added _framework/System.Collections.wasm.gz
Binary file not shown.
Binary file added _framework/System.ComponentModel.Annotations.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.ComponentModel.Primitives.wasm
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.wasm
Binary file not shown.
Binary file added _framework/System.ComponentModel.wasm.br
Binary file not shown.
Binary file added _framework/System.ComponentModel.wasm.gz
Binary file not shown.
Binary file added _framework/System.Console.wasm
Binary file not shown.
Binary file added _framework/System.Console.wasm.br
Binary file not shown.
Binary file added _framework/System.Console.wasm.gz
Binary file not shown.
Binary file added _framework/System.Data.Common.wasm
Binary file not shown.
Binary file added _framework/System.Data.Common.wasm.br
Binary file not shown.
Binary file added _framework/System.Data.Common.wasm.gz
Binary file not shown.
Binary file added _framework/System.Diagnostics.Debug.wasm
Binary file not shown.
Binary file added _framework/System.Diagnostics.Debug.wasm.br
Binary file not shown.
Binary file added _framework/System.Diagnostics.Debug.wasm.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/System.Diagnostics.Process.wasm
Binary file not shown.
Binary file added _framework/System.Diagnostics.Process.wasm.br
Binary file not shown.
Binary file added _framework/System.Diagnostics.Process.wasm.gz
Binary file not shown.
Binary file added _framework/System.Diagnostics.StackTrace.wasm
Binary file not shown.
Binary file added _framework/System.Diagnostics.StackTrace.wasm.br
Binary file not shown.
Binary file added _framework/System.Diagnostics.StackTrace.wasm.gz
Binary file not shown.
Binary file added _framework/System.Diagnostics.TraceSource.wasm
Binary file not shown.
Binary file added _framework/System.Diagnostics.TraceSource.wasm.br
Binary file not shown.
Binary file added _framework/System.Diagnostics.TraceSource.wasm.gz
Binary file not shown.
Binary file added _framework/System.Drawing.Primitives.wasm
Binary file not shown.
Binary file added _framework/System.Drawing.Primitives.wasm.br
Binary file not shown.
Binary file added _framework/System.Drawing.Primitives.wasm.gz
Binary file not shown.
Binary file added _framework/System.Drawing.wasm
Binary file not shown.
Binary file added _framework/System.Drawing.wasm.br
Binary file not shown.
Binary file added _framework/System.Drawing.wasm.gz
Binary file not shown.
Binary file added _framework/System.IO.Compression.Brotli.wasm
Binary file not shown.
Binary file added _framework/System.IO.Compression.Brotli.wasm.br
Binary file not shown.
Binary file added _framework/System.IO.Compression.Brotli.wasm.gz
Binary file not shown.
Binary file added _framework/System.IO.Compression.wasm
Binary file not shown.
Binary file added _framework/System.IO.Compression.wasm.br
Binary file not shown.
Binary file added _framework/System.IO.Compression.wasm.gz
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.Primitives.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.Watcher.wasm
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.Watcher.wasm.br
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.Watcher.wasm.gz
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.wasm
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.wasm.br
Binary file not shown.
Binary file added _framework/System.IO.FileSystem.wasm.gz
Binary file not shown.
Binary file added _framework/System.IO.wasm
Binary file not shown.
Binary file added _framework/System.IO.wasm.br
Binary file not shown.
Binary file added _framework/System.IO.wasm.gz
Binary file not shown.
Binary file added _framework/System.Linq.Expressions.wasm
Binary file not shown.
Binary file added _framework/System.Linq.Expressions.wasm.br
Binary file not shown.
Binary file added _framework/System.Linq.Expressions.wasm.gz
Binary file not shown.
Binary file added _framework/System.Linq.wasm
Binary file not shown.
Binary file added _framework/System.Linq.wasm.br
Binary file not shown.
Binary file added _framework/System.Linq.wasm.gz
Binary file not shown.
Binary file added _framework/System.Memory.wasm
Binary file not shown.
Binary file added _framework/System.Memory.wasm.br
Binary file not shown.
Binary file added _framework/System.Memory.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.Http.Json.wasm
Binary file not shown.
Binary file added _framework/System.Net.Http.Json.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.Http.Json.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.Http.wasm
Binary file not shown.
Binary file added _framework/System.Net.Http.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.Http.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.Mail.wasm
Binary file not shown.
Binary file added _framework/System.Net.Mail.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.Mail.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.NameResolution.wasm
Binary file not shown.
Binary file added _framework/System.Net.NameResolution.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.NameResolution.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.NetworkInformation.wasm
Binary file not shown.
Binary file added _framework/System.Net.NetworkInformation.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.NetworkInformation.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.Primitives.wasm
Binary file not shown.
Binary file added _framework/System.Net.Primitives.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.Primitives.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.Requests.wasm
Binary file not shown.
Binary file added _framework/System.Net.Requests.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.Requests.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.Security.wasm
Binary file not shown.
Binary file added _framework/System.Net.Security.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.Security.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.Sockets.wasm
Binary file not shown.
Binary file added _framework/System.Net.Sockets.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.Sockets.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.WebHeaderCollection.wasm
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Net.WebHeaderCollection.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.WebProxy.wasm
Binary file not shown.
Binary file added _framework/System.Net.WebProxy.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.WebProxy.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.WebSockets.Client.wasm
Binary file not shown.
Binary file added _framework/System.Net.WebSockets.Client.wasm.br
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Net.WebSockets.wasm
Binary file not shown.
Binary file added _framework/System.Net.WebSockets.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.WebSockets.wasm.gz
Binary file not shown.
Binary file added _framework/System.Numerics.Vectors.wasm
Binary file not shown.
Binary file added _framework/System.Numerics.Vectors.wasm.br
Binary file not shown.
Binary file added _framework/System.Numerics.Vectors.wasm.gz
Binary file not shown.
Binary file added _framework/System.ObjectModel.wasm
Binary file not shown.
Binary file added _framework/System.ObjectModel.wasm.br
Binary file not shown.
Binary file added _framework/System.ObjectModel.wasm.gz
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.wasm
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.wasm.br
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.wasm.gz
Binary file not shown.
Binary file added _framework/System.Private.Uri.wasm
Binary file not shown.
Binary file added _framework/System.Private.Uri.wasm.br
Binary file not shown.
Binary file added _framework/System.Private.Uri.wasm.gz
Binary file not shown.
Binary file added _framework/System.Private.Xml.Linq.wasm
Binary file not shown.
Binary file added _framework/System.Private.Xml.Linq.wasm.br
Binary file not shown.
Binary file added _framework/System.Private.Xml.Linq.wasm.gz
Binary file not shown.
Binary file added _framework/System.Private.Xml.wasm
Binary file not shown.
Binary file added _framework/System.Private.Xml.wasm.br
Binary file not shown.
Binary file added _framework/System.Private.Xml.wasm.gz
Binary file not shown.
Binary file added _framework/System.Reactive.wasm
Binary file not shown.
Binary file added _framework/System.Reactive.wasm.br
Binary file not shown.
Binary file added _framework/System.Reactive.wasm.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/System.Reflection.Primitives.wasm
Binary file not shown.
Binary file added _framework/System.Reflection.Primitives.wasm.br
Binary file not shown.
Binary file added _framework/System.Reflection.Primitives.wasm.gz
Binary file not shown.
Binary file added _framework/System.Runtime.Extensions.wasm
Binary file not shown.
Binary file added _framework/System.Runtime.Extensions.wasm.br
Binary file not shown.
Binary file added _framework/System.Runtime.Extensions.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Runtime.InteropServices.wasm
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Runtime.InteropServices.wasm.gz
Binary file not shown.
Binary file added _framework/System.Runtime.Loader.wasm
Binary file not shown.
Binary file added _framework/System.Runtime.Loader.wasm.br
Binary file not shown.
Binary file added _framework/System.Runtime.Loader.wasm.gz
Binary file not shown.
Binary file added _framework/System.Runtime.Numerics.wasm
Binary file not shown.
Binary file added _framework/System.Runtime.Numerics.wasm.br
Binary file not shown.
Binary file added _framework/System.Runtime.Numerics.wasm.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/System.Runtime.wasm
Binary file not shown.
Binary file added _framework/System.Runtime.wasm.br
Binary file not shown.
Binary file added _framework/System.Runtime.wasm.gz
Binary file not shown.
Binary file added _framework/System.Security.Claims.wasm
Binary file not shown.
Binary file added _framework/System.Security.Claims.wasm.br
Binary file not shown.
Loading

0 comments on commit 4cb0b2a

Please sign in to comment.