Skip to content

Commit

Permalink
deploy to github-pages branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacharyPatten committed Oct 17, 2023
0 parents commit fcb2ae1
Show file tree
Hide file tree
Showing 207 changed files with 1,553 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
39 changes: 39 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Single Page Apps for GitHub Pages</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/dotnet-console-games/?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/dotnet-console-games/?p=/one/two&q=a=b~and~c=d#qwe
// Otherwise, leave segmentCount as 0.
var segmentCount = 0;
var l = window.location;
l.replace(
l.protocol + '//' + l.hostname + (l.port ? ':' + l.port : '') +
l.pathname.split('/').slice(0, 1 + segmentCount).join('/') + '/dotnet-console-games/?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>
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @ZacharyPatten
145 changes: 145 additions & 0 deletions Website.styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-sy2l7isrkd] {
position: relative;
display: flex;
flex-direction: column;
}

main[b-sy2l7isrkd] {
flex: 1;
}

.sidebar[b-sy2l7isrkd] {
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-sy2l7isrkd] {
background-color: #f7f7f7;
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}

.top-row[b-sy2l7isrkd] a, .top-row[b-sy2l7isrkd] .btn-link {
white-space: nowrap;
margin-left: 1.5rem;
text-decoration: none;
}

.top-row[b-sy2l7isrkd] a:hover, .top-row[b-sy2l7isrkd] .btn-link:hover {
text-decoration: underline;
}

.top-row[b-sy2l7isrkd] a:first-child {
overflow: hidden;
text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
.top-row:not(.auth)[b-sy2l7isrkd] {
display: none;
}

.top-row.auth[b-sy2l7isrkd] {
justify-content: space-between;
}

.top-row[b-sy2l7isrkd] a, .top-row[b-sy2l7isrkd] .btn-link {
margin-left: 0;
}
}

@media (min-width: 641px) {
.page[b-sy2l7isrkd] {
flex-direction: row;
}

.sidebar[b-sy2l7isrkd] {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}

.top-row[b-sy2l7isrkd] {
position: sticky;
top: 0;
z-index: 1;
}

.top-row.auth[b-sy2l7isrkd] a:first-child {
flex: 1;
text-align: right;
width: 0;
}

.top-row[b-sy2l7isrkd], article[b-sy2l7isrkd] {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-y13vmniad5] {
background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

.collapse[b-y13vmniad5] {
/* Never collapse the sidebar for wide screens */
display: block;
}
}
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 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.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/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.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 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.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.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.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.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.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.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.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.ObjectModel.dll
Binary file not shown.
Binary file added _framework/System.ObjectModel.dll.br
Binary file not shown.
Binary file added _framework/System.ObjectModel.dll.gz
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.dll
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.dll.br
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.dll.gz
Binary file not shown.
Binary file added _framework/System.Private.Uri.dll
Binary file not shown.
Binary file added _framework/System.Private.Uri.dll.br
Binary file not shown.
Binary file added _framework/System.Private.Uri.dll.gz
Binary file not shown.
Binary file added _framework/System.Private.Xml.dll
Binary file not shown.
Binary file added _framework/System.Private.Xml.dll.br
Binary file not shown.
Binary file added _framework/System.Private.Xml.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Runtime.Numerics.dll
Binary file not shown.
Binary file added _framework/System.Runtime.Numerics.dll.br
Binary file not shown.
Binary file added _framework/System.Runtime.Numerics.dll.gz
Binary file not shown.
Binary file added _framework/System.Runtime.dll
Binary file not shown.
Binary file added _framework/System.Runtime.dll.br
Binary file not shown.
Binary file added _framework/System.Runtime.dll.gz
Binary file not shown.
Binary file added _framework/System.Security.Cryptography.dll
Binary file not shown.
Binary file added _framework/System.Security.Cryptography.dll.br
Binary file not shown.
Binary file added _framework/System.Security.Cryptography.dll.gz
Binary file not shown.
Binary file added _framework/System.Text.Encodings.Web.dll
Binary file not shown.
Binary file added _framework/System.Text.Encodings.Web.dll.br
Binary file not shown.
Binary file added _framework/System.Text.Encodings.Web.dll.gz
Binary file not shown.
Binary file added _framework/System.Text.Json.dll
Binary file not shown.
Binary file added _framework/System.Text.Json.dll.br
Binary file not shown.
Binary file added _framework/System.Text.Json.dll.gz
Binary file not shown.
Binary file added _framework/System.Text.RegularExpressions.dll
Binary file not shown.
Binary file added _framework/System.Text.RegularExpressions.dll.br
Binary file not shown.
Binary file added _framework/System.Text.RegularExpressions.dll.gz
Binary file not shown.
Binary file added _framework/System.Threading.dll
Binary file not shown.
Binary file added _framework/System.Threading.dll.br
Binary file not shown.
Binary file added _framework/System.Threading.dll.gz
Binary file not shown.
Binary file added _framework/System.Web.HttpUtility.dll
Binary file not shown.
Binary file added _framework/System.Web.HttpUtility.dll.br
Binary file not shown.
Binary file added _framework/System.Web.HttpUtility.dll.gz
Binary file not shown.
Binary file added _framework/System.Xml.ReaderWriter.dll
Binary file not shown.
Binary file added _framework/System.Xml.ReaderWriter.dll.br
Binary file not shown.
Binary file added _framework/System.Xml.ReaderWriter.dll.gz
Binary file not shown.
Binary file added _framework/System.Xml.XmlSerializer.dll
Binary file not shown.
Binary file added _framework/System.Xml.XmlSerializer.dll.br
Binary file not shown.
Binary file added _framework/System.Xml.XmlSerializer.dll.gz
Binary file not shown.
Binary file added _framework/System.dll
Binary file not shown.
Binary file added _framework/System.dll.br
Binary file not shown.
Binary file added _framework/System.dll.gz
Binary file not shown.
Binary file added _framework/Towel.dll
Binary file not shown.
Binary file added _framework/Towel.dll.br
Binary file not shown.
Binary file added _framework/Towel.dll.gz
Binary file not shown.
Binary file added _framework/Website.dll
Binary file not shown.
Binary file added _framework/Website.dll.br
Binary file not shown.
Binary file added _framework/Website.dll.gz
Binary file not shown.
Binary file added _framework/Website.pdb.gz
Binary file not shown.
79 changes: 79 additions & 0 deletions _framework/blazor.boot.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
{
"cacheBootResources": true,
"config": [ ],
"debugBuild": false,
"entryAssembly": "Website",
"icuDataMode": 0,
"linkerEnabled": true,
"resources": {
"assembly": {
"Microsoft.AspNetCore.Components.dll": "sha256-ryX\/Jh\/70yt+l+YISU+V9adaLgF092TEC02zhqv0XDc=",
"Microsoft.AspNetCore.Components.Web.dll": "sha256-+rpIvlOzSJkRV3z8oQ6gcnxKSsV6xeRbb6crNLEc2RI=",
"Microsoft.AspNetCore.Components.WebAssembly.dll": "sha256-IiCeDD2\/cESvpd281cmPUvaLlj5RlX\/Gy2c0FzTfcec=",
"Microsoft.Extensions.Configuration.Abstractions.dll": "sha256-X\/f4fDl2cuIRXeWHhK\/f2UqQbFioD+RU4a4CEh0zrrQ=",
"Microsoft.Extensions.Configuration.dll": "sha256-DBOKSPriP2JDxVbbWrLXyD3K4\/x3RBifNBWk\/q1I39M=",
"Microsoft.Extensions.Configuration.Json.dll": "sha256-Q5AqJneA2TZnzC0IYzBx6j\/tHRhWAeMbpH3BsV7KgWg=",
"Microsoft.Extensions.DependencyInjection.Abstractions.dll": "sha256-RQakQLe0UP6Ngaoye5WMQm3Z+RhaSWtoOPBfBex7woQ=",
"Microsoft.Extensions.DependencyInjection.dll": "sha256-qi0kE7rp0kdsNqdL6DyPZEeimjUGvcLT4iWQX0YnRus=",
"Microsoft.Extensions.Logging.Abstractions.dll": "sha256-M\/xZhgXtA\/uoto5VPlwoWe3\/fr\/IrnNCFSzrBUqvGHc=",
"Microsoft.Extensions.Logging.dll": "sha256-RJE660TEC1wm3MyL1EXQfTQB1qK+JWy1efVUxI8nNUo=",
"Microsoft.Extensions.Options.dll": "sha256-WPBQk7rt2p4aMEo2pTp1sBpsiWdE8MmWuIYq+zl1ceo=",
"Microsoft.Extensions.Primitives.dll": "sha256-eXvGx2jcjpTPEJoAHBsW\/VuMPbNyyU+AsuhPmkzSSRY=",
"Microsoft.JSInterop.dll": "sha256-d1AApAzy1QFD8J2+smh\/oYtL\/FrUcrezQ\/VrJOjmeYM=",
"Microsoft.JSInterop.WebAssembly.dll": "sha256-3+dHa65PgCYOsUMlsJSDYPxt294+nWZxeMbopoWb+fA=",
"System.Collections.Concurrent.dll": "sha256-8L2GaXbOdia85H+TSUqKR\/AsQSEYfxnnmb\/+Ye1Ot9k=",
"System.Collections.dll": "sha256-jRQj3VmdP0FNgKBJ02G2uzN5Jvf3iM7VMDSrQdyWHxM=",
"System.Collections.NonGeneric.dll": "sha256-yVN2\/KPt\/wuYH4f0+hHGx0nRAUvlA4ybjr+8gaPvA7c=",
"System.Collections.Specialized.dll": "sha256-tG5Ajj9qUq+xfFRVaPoo94gN1VQ+AUbMHibF9KiD4VQ=",
"System.ComponentModel.dll": "sha256-7Q\/NXN65gE4JtXUu61hnC8nYnGpfPndS4I8Tds2v5uo=",
"System.ComponentModel.Primitives.dll": "sha256-+MqWUb62lAFJkaVVPmJdsSasLapV55il8DsDIgV5n6A=",
"System.ComponentModel.TypeConverter.dll": "sha256-lZ8E3IhuHqT9rKKH12+piSp\/+BOyp5t40J8V4gXxKJI=",
"System.Console.dll": "sha256-lzOe5jNjXyhVbVR3nErWxAQXHDLDVZ0U2VRMgVQDhMo=",
"System.Diagnostics.TraceSource.dll": "sha256-3bBjXa+8VSIL0bGNjhyunja72tVH8bn9O+WR5oIdPwg=",
"System.dll": "sha256-0FM7lecMRXqYYN0oYnNU8NC1ipKpU+jYHuHkgK73cvo=",
"System.IO.FileSystem.dll": "sha256-FLJEYMnVBd8xJmQg6KXHGbI7awrKytZPNiPq4y9B9Ls=",
"System.Linq.dll": "sha256-SklGvTyMsJYt3lEDpM+qw606dkNQHWZWRuoKJix2yAA=",
"System.Linq.Expressions.dll": "sha256-XKw0jOEIhA9ncJ2uiSL5XCYiukDh+OeG7G939qoGYMI=",
"System.Memory.dll": "sha256-+bnRJx50jxs9du1Ex0hPOZpDhk76+oMqTnocLVx5304=",
"System.Net.Http.dll": "sha256-T52ooKQbZc7jhQvAARFyvTXyHkyTrVJpUneg\/fGU8jQ=",
"System.Net.Primitives.dll": "sha256-dJ\/1AooBxDrQrktYlFIeipM8yeIWf27nW8rwy1mM6Sc=",
"System.ObjectModel.dll": "sha256-rMAiMpYwLwKwEZ+xPZBT69Z27qXDfOMPRFTVZVT90Ac=",
"System.Private.CoreLib.dll": "sha256-fwxlhw2HhXXVjSPMobveF90SURJgxYNezKJSHHWfyb0=",
"System.Private.Uri.dll": "sha256-RWwzc9ZTgFDwFMpwm8NrqI3BzMTaG\/9kKVO6gZ+OsqQ=",
"System.Private.Xml.dll": "sha256-Uzml7RS\/Az889tTkJrV0hYxZTXQvcLZIJ0anDZ7I4W0=",
"System.Runtime.dll": "sha256-QK1WosBlWh5wgvoVfe5dz6pk0jLs4wdeq4Gat\/AxeAg=",
"System.Runtime.InteropServices.JavaScript.dll": "sha256-MC8P5BswE5sDJgKgKCNyNj44Z4mbH\/uyPUvKUaV\/xwo=",
"System.Runtime.Numerics.dll": "sha256-bn+IwumTVS\/2A0quPwCBcFAtmMCCoRAivCYDplYsfyo=",
"System.Security.Cryptography.dll": "sha256-\/Qrw2\/IFFzsNFTFK2UmovIo07TATgsuPd3eRXhJI8lc=",
"System.Text.Encodings.Web.dll": "sha256-7c\/x+3P1B2yjC4SneODQOtfVfiMPZ0O12n8fjkh75+k=",
"System.Text.Json.dll": "sha256-X+g6FZW8utSvHbz+ORc\/xzjEkYiAQQR8cJH4ISCor58=",
"System.Text.RegularExpressions.dll": "sha256-S+00LYVk88XwtpjhW+ODbOVr1DHZREiZ65uyYuDZ0LU=",
"System.Threading.dll": "sha256-p+2mptUNLe9hYbOBdpPEwlsKGckgMqhbhYag8Z8SzYQ=",
"System.Web.HttpUtility.dll": "sha256-tVF\/Xy13LbNnGxYv8f\/uEbid38K06n3QEFRREhIr7K4=",
"System.Xml.ReaderWriter.dll": "sha256-M7LErYEPZE+redscCuhxVAjEzXrztkCkJTrBv01HWmI=",
"System.Xml.XmlSerializer.dll": "sha256-syk2jLSgY+K3aOKHlyxr9Ttu0zrebLU1E2ZoAwIcQEQ=",
"Towel.dll": "sha256-gA9RIer4Ao3lKVux7VSG5lo\/YAF\/O2K\/WFXpV31GmmM=",
"Website.dll": "sha256-Ag+7TPbzfTUEJHmKP5wlLRvJbk\/lcRh4DwQMBcCwXAU="
},
"extensions": null,
"lazyAssembly": null,
"libraryInitializers": null,
"pdb": null,
"runtime": {
"dotnet.7.0.11.1i0gdicz49.js": "sha256-RtIVigdAD1mUvR4pxoKyD8kcQgw4INP81v+PVSqkeQY=",
"dotnet.timezones.blat": "sha256-gIJRsMe\/q4cM8EeOn+wrpfipBqBOq0niTDjqSBdXsVI=",
"dotnet.wasm": "sha256-hm1Mz+MEUcCzB1ptOGcOa7Kdyb4wf5\/XLZCe8VoiqkU=",
"icudt_CJK.dat": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=",
"icudt_EFIGS.dat": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=",
"icudt_no_CJK.dat": "sha256-L7sV7NEYP37\/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=",
"icudt.dat": "sha256-tO5O5YzMTVSaKBboxAqezOQL9ewmupzV2JrB5Rkc8a4="
},
"runtimeAssets": {
"dotnet.wasm": {
"behavior": "dotnetwasm",
"hash": "sha256-hm1Mz+MEUcCzB1ptOGcOa7Kdyb4wf5\/XLZCe8VoiqkU="
}
},
"satelliteResources": null
}
}
Binary file added _framework/blazor.boot.json.br
Binary file not shown.
Binary file added _framework/blazor.boot.json.gz
Binary file not shown.
1 change: 1 addition & 0 deletions _framework/blazor.webassembly.js

Large diffs are not rendered by default.

Binary file added _framework/blazor.webassembly.js.br
Binary file not shown.
Binary file added _framework/blazor.webassembly.js.gz
Binary file not shown.
Loading

0 comments on commit fcb2ae1

Please sign in to comment.