Skip to content

Commit

Permalink
Deploy to GitHub pages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Oct 23, 2024
0 parents commit 71773f7
Show file tree
Hide file tree
Showing 171 changed files with 2,419 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
43 changes: 43 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!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
// MIT License
// https://github.com/rafgraph/spa-github-pages
// 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. https://www.foo.tld/one/two?a=b&c=d#qwe, becomes
// https://www.foo.tld/?/one/two&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 pathSegmentsToKeep 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/?/one/two&a=b~and~c=d#qwe
// Otherwise, leave pathSegmentsToKeep as 0.
var pathSegmentsToKeep = 1;

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

</script>
</head>

<body>
</body>

</html>
103 changes: 103 additions & 0 deletions _content/BlazorApplicationInsights/JsInterop.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
window.blazorApplicationInsights = {
addTelemetryInitializer: function (telemetryItem) {
var telemetryInitializer = (envelope) => {
if (telemetryItem.ver !== null) {
envelope.ver = telemetryItem.ver;
}
if (telemetryItem.name !== null) {
envelope.name = telemetryItem.name;
}
if (telemetryItem.time !== null) {
envelope.time = telemetryItem.time;
}
if (telemetryItem.iKey !== null) {
envelope.iKey = telemetryItem.iKey;
}
if (telemetryItem.ext !== null) {
envelope.ext = telemetryItem.ext;
}
if (telemetryItem.tags !== null) {
envelope.tags = telemetryItem.tags;
}
if (telemetryItem.data !== null) {
Object.assign(envelope.data, telemetryItem.data);
}
if (telemetryItem.baseType !== null) {
envelope.baseType = telemetryItem.baseType;
}
if (telemetryItem.baseData !== null) {
envelope.baseData = telemetryItem.baseData;
}
}
appInsights.addTelemetryInitializer(telemetryInitializer);
},
trackDependencyData: function (data) {
var dependencyTelemetry = {};

if (data.id !== null) {
dependencyTelemetry["id"] = data.id;
}
if (data.name !== null) {
dependencyTelemetry["name"] = data.name;
}
if (data.duration !== null) {
dependencyTelemetry["duration"] = data.duration;
}
if (data.success !== null) {
dependencyTelemetry["success"] = data.success;
}
if (data.startTime !== null) {
dependencyTelemetry["startTime"] = new Date(data.startTime);
}
if (data.responseCode !== null) {
dependencyTelemetry["responseCode"] = data.responseCode;
}
if (data.correlationContext !== null) {
dependencyTelemetry["correlationContext"] = data.correlationContext;
}
if (data.type !== null) {
dependencyTelemetry["type"] = data.type;
}
if (data.data !== null) {
dependencyTelemetry["data"] = data.data;
}
if (data.target !== null) {
dependencyTelemetry["target"] = data.target;
}

appInsights.trackDependencyData(dependencyTelemetry);
},
setInstrumentationKey: function (instrumentationKey) {
appInsights.config.instrumentationKey = instrumentationKey;
},
setConnectionString: function (connectionString) {
appInsights.config.connectionString = connectionString;
},
loadAppInsights: function () {
if (appInsights.loadAppInsights !== undefined) {
appInsights.loadAppInsights();
}
},
getUserId: function () {
if (appInsights.context !== undefined) {
return appInsights.context.user.authenticatedId || appInsights.context.user.id;
}
},
getSessionId: function () {
if (appInsights.context !== undefined) {
return appInsights.context.sessionManager.automaticSession.id;
}
},
setCookiesEnabled: function (enabled) {
if (appInsights.core !== undefined) {
appInsights.core.getCookieMgr().setEnabled(enabled);
}
},
getCookiesEnabled: function () {
if (appInsights.core !== undefined) {
return appInsights.core.getCookieMgr().isEnabled();
} else {
return false;
}
},
};
29 changes: 29 additions & 0 deletions _content/BlazorBeforeUnload/BeforeUnload.js

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

Binary file added _framework/BlazorApplicationInsights.dll
Binary file not shown.
Binary file added _framework/BlazorApplicationInsights.dll.br
Binary file not shown.
Binary file added _framework/BlazorApplicationInsights.dll.gz
Binary file not shown.
Binary file added _framework/BlazorBeforeUnload.dll
Binary file not shown.
Binary file added _framework/BlazorBeforeUnload.dll.br
Binary file not shown.
Binary file added _framework/BlazorBeforeUnload.dll.gz
Binary file not shown.
Binary file added _framework/Blazored.LocalStorage.dll
Binary file not shown.
Binary file added _framework/Blazored.LocalStorage.dll.br
Binary file not shown.
Binary file added _framework/Blazored.LocalStorage.dll.gz
Binary file not shown.
Binary file added _framework/DocumentFormat.OpenXml.dll
Binary file not shown.
Binary file added _framework/DocumentFormat.OpenXml.dll.br
Binary file not shown.
Binary file added _framework/DocumentFormat.OpenXml.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 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 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/NameBadgeAutomater.dll
Binary file not shown.
Binary file added _framework/NameBadgeAutomater.dll.br
Binary file not shown.
Binary file added _framework/NameBadgeAutomater.dll.gz
Binary file not shown.
Binary file added _framework/NameBadgeAutomater.pdb.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.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.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 not shown.
Binary file not shown.
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.Packaging.dll
Binary file not shown.
Binary file added _framework/System.IO.Packaging.dll.br
Binary file not shown.
Binary file added _framework/System.IO.Packaging.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.Linq.dll
Binary file not shown.
Binary file added _framework/System.Private.Xml.Linq.dll.br
Binary file not shown.
Binary file added _framework/System.Private.Xml.Linq.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.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.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 not shown.
Binary file not shown.
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.
75 changes: 75 additions & 0 deletions _framework/blazor.boot.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
{
"entryAssembly": "NameBadgeAutomater",
"resources": {
"hash": "sha256-G8LWUQCTOi43V4tLpCBOj5xs2/qCocwJJrh54qNKqdM=",
"runtime": {
"dotnet.7.0.20.dwptlzpfyy.js": "sha256-eaJTmow4t8eE7FZMZR5Ja41JMOefGCbIYDTdpclGsac=",
"dotnet.timezones.blat": "sha256-gbATD5HDsHYtW8vdPYh9iSBY4O5CjvMeCSF5xXWF1xo=",
"dotnet.wasm": "sha256-2P6rVlE+GN7v/KBZsI/zwouhfpV38+1lEl5FMslgb4A=",
"icudt_CJK.dat": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=",
"icudt_EFIGS.dat": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=",
"icudt_no_CJK.dat": "sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="
},
"assembly": {
"BlazorApplicationInsights.dll": "sha256-QiHt9QEpoUD+OTp48Hb/CWNaNDwl1kJJ1tzUcOf/76c=",
"BlazorBeforeUnload.dll": "sha256-JyIXGXdpPZt+SJxFjako0OBpayJKk3LI/m+P1u/mln4=",
"Blazored.LocalStorage.dll": "sha256-xcO4wZtFwM5I9DIZf1sZpOdcsaTjw1HyqJ5AWciMDAk=",
"DocumentFormat.OpenXml.dll": "sha256-DfLPF90jE7jBtBWzMsMvGS1QfRa7KX4lZCk9HVZJIto=",
"Microsoft.AspNetCore.Components.dll": "sha256-O0d0dB8n+onfsI2wqxxOBobawc46J9JD5bFiU3Z+QAA=",
"Microsoft.AspNetCore.Components.Web.dll": "sha256-n6gY2ulvevyI0MkV/4uZMFlDQ2bS4Siole/BkSlKHRM=",
"Microsoft.AspNetCore.Components.WebAssembly.dll": "sha256-Q0d7/+Y22PENHZiYgBlKWvI9y/ibrXaQK8zT3QP5dp8=",
"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-QXM4fTCyq10GRulsAjO+m4/TV/PYHwRLwRmvokdzgCs=",
"Microsoft.Extensions.DependencyInjection.dll": "sha256-qi0kE7rp0kdsNqdL6DyPZEeimjUGvcLT4iWQX0YnRus=",
"Microsoft.Extensions.Logging.Abstractions.dll": "sha256-/vGfWgcHE0HwQ5oBHH7zgndxgBWiSvcnrAKfIoBAXj4=",
"Microsoft.Extensions.Logging.dll": "sha256-4dXOn1XN+DfXWE2RuBo4NPZnclh+tqpIqsvJcnaOs2M=",
"Microsoft.Extensions.Options.dll": "sha256-wre+hKKXkMGMevyOJFZjGvHYCrTSOFu4So3qzesaeIA=",
"Microsoft.Extensions.Primitives.dll": "sha256-eXvGx2jcjpTPEJoAHBsW/VuMPbNyyU+AsuhPmkzSSRY=",
"Microsoft.JSInterop.dll": "sha256-I6ZsHXon/meEX5dhhqYwk1l13W/oCl0yPL+tW8ZZh0o=",
"Microsoft.JSInterop.WebAssembly.dll": "sha256-CINf7y9/MQd41Xogmydycm4rVt+rOdgZAymO8ktk4UE=",
"NameBadgeAutomater.dll": "sha256-saPCMdCPNwsCh8KanYL429V0sVUATdgmVK3JGKOzEII=",
"netstandard.dll": "sha256-9RrIv6vvqEB9kIDpgPQPYaIfHoC86T4HGo06naRIj9I=",
"System.Collections.Concurrent.dll": "sha256-Uu61q3yof0d2ggdzXWZepEjOqluapVphJWg/pNCw+eA=",
"System.Collections.dll": "sha256-zKhYlTHdTx08Pmf4L6fUuSyCAN9x/YvcItnMJG6N1ro=",
"System.Collections.NonGeneric.dll": "sha256-q3e4AgHzmb1+Ce5bdapIL6SXPBMd91f2rnIerrATSsA=",
"System.ComponentModel.dll": "sha256-7vcDBo/3bcYI/CjzxGeFgD2a7r2TJ0a+atwSTcxZv/E=",
"System.Diagnostics.DiagnosticSource.dll": "sha256-zMkeOmSnpfXDRtQye5CambxpnnYLFU3aJ3dYsp5Agj0=",
"System.IO.Compression.dll": "sha256-zfaVJ3hhA2vs7YBCg0UnK8DTAR4vr8YMJfs7OqGf6J0=",
"System.IO.Packaging.dll": "sha256-giT6HwwUyd8/EV3Bolo6APHDQKOExNFqmItX8S06Hyw=",
"System.Linq.dll": "sha256-lvz1ys3HfUHsKbu3blbpkrU5OWWKF61/9Z3Wc94DdOI=",
"System.Linq.Expressions.dll": "sha256-ISDg+WfqW4uLcHaqzk7qzcr9BeDo2UO6RiMXxDDCfVc=",
"System.Memory.dll": "sha256-NYdInsTzDaKdk4uq46a0o94ld6TltVbEy5tyrfGjKcM=",
"System.Net.Http.dll": "sha256-SRK+EONATCNy5uoCNG/N10UOcLUhrF47bZ1QAMBMQkk=",
"System.Net.Primitives.dll": "sha256-JNtk9J4CM66aaBSOzfQ3cZRAd2P9LXgsYeLUrrQar8c=",
"System.ObjectModel.dll": "sha256-j64VLxyNh5BmfGe2QtCOKBLGlToyjQjGmb8HTfZ88sY=",
"System.Private.CoreLib.dll": "sha256-5h4+AofPvZKMcjAEPveEoH01TxAW42Gchh/necdn+wQ=",
"System.Private.Uri.dll": "sha256-B3YhzCAAktfvwH4OZXbAvDL76uvw0ay2FiiV3oc2RSY=",
"System.Private.Xml.dll": "sha256-Q15EpZsE9QjXVc+Rudwai3D86EldeklcNp2EF6VWrAU=",
"System.Private.Xml.Linq.dll": "sha256-XgTPasgiYcE9kXh7lasLkAjwY8W0LJs18FRKRv1c38Y=",
"System.Runtime.dll": "sha256-HN49QYeefJpt8QjHHcA+mu0ih/DyAhWCSGOBIIoATis=",
"System.Runtime.InteropServices.JavaScript.dll": "sha256-z5gMwKvxe0+Hh9+0chO4LpPxPIKQe95aYwJuTGbX6pE=",
"System.Text.Encodings.Web.dll": "sha256-nZ82bS6xipJXHHVhw8M7MJ5r5wOIB7X4+DpK6AMEOH4=",
"System.Text.Json.dll": "sha256-1c2l6O4rfX7RSmpps3IiNC+DhKqUDDZXWbGsGSbCLRI=",
"System.Text.RegularExpressions.dll": "sha256-ogq80o0W7xfmuyF2VAAeJUvN58VDtQT5SAWQOgoS8DI=",
"System.Threading.dll": "sha256-KE4zcy15bc4VuEojVp0LZay5dl8L4uEmo2hQ2yhkAu4=",
"System.Threading.Tasks.Extensions.dll": "sha256-WM+0oEAXadUsIlFD1yqElgX2uvy5GU1C3rgpu9RzV2o="
},
"runtimeAssets": {
"dotnet.wasm": {
"hash": "sha256-2P6rVlE+GN7v/KBZsI/zwouhfpV38+1lEl5FMslgb4A=",
"behavior": "dotnetwasm"
}
}
},
"cacheBootResources": true,
"debugBuild": false,
"debugLevel": 0,
"linkerEnabled": true,
"config": [],
"icuDataMode": 0,
"extensions": {
"blazor": {}
}
}
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 71773f7

Please sign in to comment.