talkspace templates added

This commit is contained in:
Norm Rasmussen
2022-06-17 14:14:24 -04:00
parent f493b37b1e
commit 59aaf84c10
328 changed files with 15105 additions and 27 deletions

View File

@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<WasmBuildNative>true</WasmBuildNative>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.4" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.4" PrivateAssets="all" />
<PackageReference Include="SqliteWasmHelper" Version="1.0.43-beta-g31b50d1f54" />
</ItemGroup>
</Project>

12
Account_SQLite/App.razor Normal file
View File

@ -0,0 +1,12 @@
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>

View File

@ -0,0 +1,8 @@
namespace Account_SQLite.Data
{
public class Account
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
}
}

View File

@ -0,0 +1,14 @@
using Microsoft.EntityFrameworkCore;
namespace Account_SQLite.Data
{
public class AccountContext : DbContext
{
public AccountContext(DbContextOptions<AccountContext> opts): base(opts)
{
}
public DbSet<Account> Accounts { get; set; } = null!;
}
}

View File

@ -0,0 +1,73 @@
@page "/"
@using SqliteWasmHelper
@using Account_SQLite.Data
@using Microsoft.EntityFrameworkCore
@inject ISqliteWasmDbContextFactory<AccountContext> Factory
<PageTitle>Account_SQLite</PageTitle>
<h1>Accounts</h1>
<p>Type some account:</p>
<input @bind="newAccount" disabled="@busy" />&nbsp;
<button @onclick="@(async () => await AddAccountAsync())" disabled="@busy">Add</button>
@if (@busy)
{
<div class="alert alert-info">đź’ľ Scanning a floppy disk...</div>
}
else
{
if (accounts.Length < 1)
{
<p>I see no-account.</p>
}
else
{
<ul>
@foreach (var account in accounts)
{
<li>@account.Name</li>
}
</ul>
}
}
Download backup:
<BackupLink @ref="bl" DbContextType="typeof(AccountContext)" />
@code {
private bool busy;
private BackupLink bl = null!;
private string newAccount = string.Empty;
private Account[] accounts = Array.Empty<Account>();
protected override async Task OnInitializedAsync()
{
await RefreshUiAsync();
await base.OnInitializedAsync();
}
private async Task RefreshUiAsync()
{
using var ctx = await Factory.CreateDbContextAsync();
busy = true;
accounts = await ctx.Accounts.ToArrayAsync();
await bl.RefreshAsync();
busy = false;
StateHasChanged();
}
private async Task AddAccountAsync()
{
if (!string.IsNullOrWhiteSpace(newAccount))
{
using var ctx = await Factory.CreateDbContextAsync();
ctx.Accounts.Add(new Account { Name = newAccount });
busy = true;
await ctx.SaveChangesAsync();
newAccount = string.Empty;
busy = false;
await RefreshUiAsync();
}
}
}

View File

@ -0,0 +1,8 @@
@page "/"
@namespace Account_SQLite.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@{
Layout = "_Layout";
}
<component type="typeof(App)" render-mode="ServerPrerendered" />

View File

@ -0,0 +1,32 @@
@using Microsoft.AspNetCore.Components.Web
@namespace Account_SQLite.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="~/" />
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
<link href="css/site.css" rel="stylesheet" />
<link href="Account_SQLite.styles.css" rel="stylesheet" />
<component type="typeof(HeadOutlet)" render-mode="ServerPrerendered" />
</head>
<body>
@RenderBody()
<div id="blazor-error-ui">
<environment include="Staging,Production">
An error has occurred. This application may no longer respond until reloaded.
</environment>
<environment include="Development">
An unhandled exception has occurred. See browser dev tools for details.
</environment>
<a href="" class="reload">Reload</a>
<a class="dismiss">đź—™</a>
</div>
<script src="_framework/blazor.server.js"></script>
</body>
</html>

16
Account_SQLite/Program.cs Normal file
View File

@ -0,0 +1,16 @@
using Account_SQLite;
using Account_SQLite.Data;
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using Microsoft.EntityFrameworkCore;
using SqliteWasmHelper;
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("#app");
builder.RootComponents.Add<HeadOutlet>("head::after");
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
builder.Services.AddSqliteWasmDbContextFactory<AccountContext>(
opts => opts.UseSqlite("Data Source=blazor_todo.sqlite3"));
await builder.Build().RunAsync();

View File

@ -0,0 +1,30 @@
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:16190",
"sslPort": 44329
}
},
"profiles": {
"Account_SQLite": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"applicationUrl": "https://localhost:7055;http://localhost:5280",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}

View File

@ -0,0 +1,17 @@
@inherits LayoutComponentBase
<div class="page">
<div class="sidebar">
<NavMenu />
</div>
<main>
<div class="top-row px-4">
<a href="https://docs.microsoft.com/aspnet/" target="_blank">About</a>
</div>
<article class="content px-4">
@Body
</article>
</main>
</div>

View File

@ -0,0 +1,81 @@
.page {
position: relative;
display: flex;
flex-direction: column;
}
main {
flex: 1;
}
.sidebar {
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
.top-row {
background-color: #f7f7f7;
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}
.top-row ::deep a, .top-row ::deep .btn-link {
white-space: nowrap;
margin-left: 1.5rem;
text-decoration: none;
}
.top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
text-decoration: underline;
}
.top-row ::deep a:first-child {
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 640.98px) {
.top-row:not(.auth) {
display: none;
}
.top-row.auth {
justify-content: space-between;
}
.top-row ::deep a, .top-row ::deep .btn-link {
margin-left: 0;
}
}
@media (min-width: 641px) {
.page {
flex-direction: row;
}
.sidebar {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}
.top-row {
position: sticky;
top: 0;
z-index: 1;
}
.top-row.auth ::deep a:first-child {
flex: 1;
text-align: right;
width: 0;
}
.top-row, article {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
}

View File

@ -0,0 +1,39 @@
<div class="top-row ps-3 navbar navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="">BlazorWasmExample</a>
<button title="Navigation menu" class="navbar-toggler" @onclick="ToggleNavMenu">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>
<div class="@NavMenuCssClass" @onclick="ToggleNavMenu">
<nav class="flex-column">
<div class="nav-item px-3">
<NavLink class="nav-link" href="" Match="NavLinkMatch.All">
<span class="oi oi-home" aria-hidden="true"></span> Home
</NavLink>
</div>
<div class="nav-item px-3">
<NavLink class="nav-link" href="counter">
<span class="oi oi-plus" aria-hidden="true"></span> Counter
</NavLink>
</div>
<div class="nav-item px-3">
<NavLink class="nav-link" href="fetchdata">
<span class="oi oi-list-rich" aria-hidden="true"></span> Fetch data
</NavLink>
</div>
</nav>
</div>
@code {
private bool collapseNavMenu = true;
private string? NavMenuCssClass => collapseNavMenu ? "collapse" : null;
private void ToggleNavMenu()
{
collapseNavMenu = !collapseNavMenu;
}
}

View File

@ -0,0 +1,62 @@
.navbar-toggler {
background-color: rgba(255, 255, 255, 0.1);
}
.top-row {
height: 3.5rem;
background-color: rgba(0,0,0,0.4);
}
.navbar-brand {
font-size: 1.1rem;
}
.oi {
width: 2rem;
font-size: 1.1rem;
vertical-align: text-top;
top: -2px;
}
.nav-item {
font-size: 0.9rem;
padding-bottom: 0.5rem;
}
.nav-item:first-of-type {
padding-top: 1rem;
}
.nav-item:last-of-type {
padding-bottom: 1rem;
}
.nav-item ::deep a {
color: #d7d7d7;
border-radius: 4px;
height: 3rem;
display: flex;
align-items: center;
line-height: 3rem;
}
.nav-item ::deep a.active {
background-color: rgba(255,255,255,0.25);
color: white;
}
.nav-item ::deep a:hover {
background-color: rgba(255,255,255,0.1);
color: white;
}
@media (min-width: 641px) {
.navbar-toggler {
display: none;
}
.collapse {
/* Never collapse the sidebar for wide screens */
display: block;
}
}

View File

@ -0,0 +1,10 @@
@using System.Net.Http
@using System.Net.Http.Json
@using Microsoft.AspNetCore.Components.Forms
@using Microsoft.AspNetCore.Components.Routing
@using Microsoft.AspNetCore.Components.Web
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.AspNetCore.Components.WebAssembly.Http
@using Microsoft.JSInterop
@using Account_SQLite
@using Account_SQLite.Shared

View File

@ -0,0 +1,9 @@
{
"DetailedErrors": true,
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}

Binary file not shown.

View File

@ -0,0 +1,808 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"Account_SQLite/1.0.0": {
"dependencies": {
"Microsoft.AspNetCore.Components.WebAssembly": "6.0.6",
"Microsoft.AspNetCore.Components.WebView.WindowsForms": "6.0.400",
"Microsoft.JSInterop.WebAssembly": "6.0.6",
"SqliteWasmHelper": "1.0.43-beta-g31b50d1f54"
},
"runtime": {
"Account_SQLite.dll": {}
}
},
"Microsoft.AspNetCore.Authorization/6.0.6": {
"dependencies": {
"Microsoft.AspNetCore.Metadata": "6.0.6",
"Microsoft.Extensions.Logging.Abstractions": "6.0.1",
"Microsoft.Extensions.Options": "6.0.0"
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.622.26805"
}
}
},
"Microsoft.AspNetCore.Components/6.0.6": {
"dependencies": {
"Microsoft.AspNetCore.Authorization": "6.0.6",
"Microsoft.AspNetCore.Components.Analyzers": "6.0.6"
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Components.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.622.26805"
}
}
},
"Microsoft.AspNetCore.Components.Analyzers/6.0.6": {},
"Microsoft.AspNetCore.Components.Forms/6.0.6": {
"dependencies": {
"Microsoft.AspNetCore.Components": "6.0.6"
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.622.26805"
}
}
},
"Microsoft.AspNetCore.Components.Web/6.0.6": {
"dependencies": {
"Microsoft.AspNetCore.Components": "6.0.6",
"Microsoft.AspNetCore.Components.Forms": "6.0.6",
"Microsoft.Extensions.DependencyInjection": "6.0.0",
"Microsoft.JSInterop": "6.0.6",
"System.IO.Pipelines": "6.0.3"
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.622.26805"
}
}
},
"Microsoft.AspNetCore.Components.WebAssembly/6.0.6": {
"dependencies": {
"Microsoft.AspNetCore.Components.Web": "6.0.6",
"Microsoft.Extensions.Configuration.Binder": "6.0.0",
"Microsoft.Extensions.Configuration.Json": "6.0.0",
"Microsoft.Extensions.Logging": "6.0.0",
"Microsoft.JSInterop.WebAssembly": "6.0.6"
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll": {
"assemblyVersion": "6.0.6.0",
"fileVersion": "6.0.622.26805"
}
}
},
"Microsoft.AspNetCore.Components.WebView.WindowsForms/6.0.400": {},
"Microsoft.AspNetCore.Metadata/6.0.6": {
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.622.26805"
}
}
},
"Microsoft.Data.Sqlite.Core/6.0.4": {
"dependencies": {
"SQLitePCLRaw.core": "2.1.0-pre20220318192836"
},
"runtime": {
"lib/net6.0/Microsoft.Data.Sqlite.dll": {
"assemblyVersion": "6.0.4.0",
"fileVersion": "6.0.422.16106"
}
}
},
"Microsoft.EntityFrameworkCore/6.0.4": {
"dependencies": {
"Microsoft.EntityFrameworkCore.Abstractions": "6.0.4",
"Microsoft.EntityFrameworkCore.Analyzers": "6.0.4",
"Microsoft.Extensions.Caching.Memory": "6.0.1",
"Microsoft.Extensions.DependencyInjection": "6.0.0",
"Microsoft.Extensions.Logging": "6.0.0",
"System.Collections.Immutable": "6.0.0",
"System.Diagnostics.DiagnosticSource": "6.0.0"
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
"assemblyVersion": "6.0.4.0",
"fileVersion": "6.0.422.16106"
}
}
},
"Microsoft.EntityFrameworkCore.Abstractions/6.0.4": {
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
"assemblyVersion": "6.0.4.0",
"fileVersion": "6.0.422.16106"
}
}
},
"Microsoft.EntityFrameworkCore.Analyzers/6.0.4": {},
"Microsoft.EntityFrameworkCore.Relational/6.0.4": {
"dependencies": {
"Microsoft.EntityFrameworkCore": "6.0.4",
"Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
"assemblyVersion": "6.0.4.0",
"fileVersion": "6.0.422.16106"
}
}
},
"Microsoft.EntityFrameworkCore.Sqlite.Core/6.0.4": {
"dependencies": {
"Microsoft.Data.Sqlite.Core": "6.0.4",
"Microsoft.EntityFrameworkCore.Relational": "6.0.4",
"Microsoft.Extensions.DependencyModel": "6.0.0"
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {
"assemblyVersion": "6.0.4.0",
"fileVersion": "6.0.422.16106"
}
}
},
"Microsoft.Extensions.Caching.Abstractions/6.0.0": {
"dependencies": {
"Microsoft.Extensions.Primitives": "6.0.0"
}
},
"Microsoft.Extensions.Caching.Memory/6.0.1": {
"dependencies": {
"Microsoft.Extensions.Caching.Abstractions": "6.0.0",
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"Microsoft.Extensions.Logging.Abstractions": "6.0.1",
"Microsoft.Extensions.Options": "6.0.0",
"Microsoft.Extensions.Primitives": "6.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.222.6406"
}
}
},
"Microsoft.Extensions.Configuration/6.0.0": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
"Microsoft.Extensions.Primitives": "6.0.0"
}
},
"Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
"dependencies": {
"Microsoft.Extensions.Primitives": "6.0.0"
}
},
"Microsoft.Extensions.Configuration.Binder/6.0.0": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
}
},
"Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
"dependencies": {
"Microsoft.Extensions.Configuration": "6.0.0",
"Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
"Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
"Microsoft.Extensions.FileProviders.Physical": "6.0.0",
"Microsoft.Extensions.Primitives": "6.0.0"
}
},
"Microsoft.Extensions.Configuration.Json/6.0.0": {
"dependencies": {
"Microsoft.Extensions.Configuration": "6.0.0",
"Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
"Microsoft.Extensions.Configuration.FileExtensions": "6.0.0",
"Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
"System.Text.Json": "6.0.0"
}
},
"Microsoft.Extensions.DependencyInjection/6.0.0": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {},
"Microsoft.Extensions.DependencyModel/6.0.0": {
"dependencies": {
"System.Buffers": "4.5.1",
"System.Memory": "4.5.4",
"System.Runtime.CompilerServices.Unsafe": "6.0.0",
"System.Text.Encodings.Web": "6.0.0",
"System.Text.Json": "6.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.52210"
}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
"dependencies": {
"Microsoft.Extensions.Primitives": "6.0.0"
}
},
"Microsoft.Extensions.FileProviders.Physical/6.0.0": {
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
"Microsoft.Extensions.FileSystemGlobbing": "6.0.0",
"Microsoft.Extensions.Primitives": "6.0.0"
}
},
"Microsoft.Extensions.FileSystemGlobbing/6.0.0": {},
"Microsoft.Extensions.Logging/6.0.0": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection": "6.0.0",
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"Microsoft.Extensions.Logging.Abstractions": "6.0.1",
"Microsoft.Extensions.Options": "6.0.0",
"System.Diagnostics.DiagnosticSource": "6.0.0"
}
},
"Microsoft.Extensions.Logging.Abstractions/6.0.1": {
"runtime": {
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.322.12309"
}
}
},
"Microsoft.Extensions.Options/6.0.0": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"Microsoft.Extensions.Primitives": "6.0.0"
}
},
"Microsoft.Extensions.Primitives/6.0.0": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
}
},
"Microsoft.JSInterop/6.0.6": {
"runtime": {
"lib/net6.0/Microsoft.JSInterop.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.622.26805"
}
}
},
"Microsoft.JSInterop.WebAssembly/6.0.6": {
"dependencies": {
"Microsoft.JSInterop": "6.0.6"
},
"runtime": {
"lib/net6.0/Microsoft.JSInterop.WebAssembly.dll": {
"assemblyVersion": "6.0.6.0",
"fileVersion": "6.0.622.26805"
}
}
},
"SQLitePCLRaw.bundle_e_sqlite3/2.1.0-pre20220318192836": {
"dependencies": {
"SQLitePCLRaw.lib.e_sqlite3": "2.1.0-pre20220318192836",
"SQLitePCLRaw.provider.e_sqlite3": "2.1.0-pre20220318192836"
},
"runtime": {
"lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {
"assemblyVersion": "2.1.0.1537",
"fileVersion": "2.1.0.1537"
}
}
},
"SQLitePCLRaw.core/2.1.0-pre20220318192836": {
"dependencies": {
"System.Memory": "4.5.4"
},
"runtime": {
"lib/netstandard2.0/SQLitePCLRaw.core.dll": {
"assemblyVersion": "2.1.0.1537",
"fileVersion": "2.1.0.1537"
}
}
},
"SQLitePCLRaw.lib.e_sqlite3/2.1.0-pre20220318192836": {
"runtimeTargets": {
"runtimes/alpine-arm/native/libe_sqlite3.so": {
"rid": "alpine-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/alpine-arm64/native/libe_sqlite3.so": {
"rid": "alpine-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/alpine-x64/native/libe_sqlite3.so": {
"rid": "alpine-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a": {
"rid": "browser-wasm",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-arm/native/libe_sqlite3.so": {
"rid": "linux-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-arm64/native/libe_sqlite3.so": {
"rid": "linux-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-armel/native/libe_sqlite3.so": {
"rid": "linux-armel",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-mips64/native/libe_sqlite3.so": {
"rid": "linux-mips64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-musl-arm/native/libe_sqlite3.so": {
"rid": "linux-musl-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-musl-arm64/native/libe_sqlite3.so": {
"rid": "linux-musl-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-musl-x64/native/libe_sqlite3.so": {
"rid": "linux-musl-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-s390x/native/libe_sqlite3.so": {
"rid": "linux-s390x",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x64/native/libe_sqlite3.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x86/native/libe_sqlite3.so": {
"rid": "linux-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/osx-arm64/native/libe_sqlite3.dylib": {
"rid": "osx-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/osx-x64/native/libe_sqlite3.dylib": {
"rid": "osx-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-arm/native/e_sqlite3.dll": {
"rid": "win-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-arm64/native/e_sqlite3.dll": {
"rid": "win-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/e_sqlite3.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/e_sqlite3.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"SQLitePCLRaw.provider.e_sqlite3/2.1.0-pre20220318192836": {
"dependencies": {
"SQLitePCLRaw.core": "2.1.0-pre20220318192836"
},
"runtime": {
"lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {
"assemblyVersion": "2.1.0.1537",
"fileVersion": "2.1.0.1537"
}
}
},
"SqliteWasmHelper/1.0.43-beta-g31b50d1f54": {
"dependencies": {
"Microsoft.AspNetCore.Components.Web": "6.0.6",
"Microsoft.EntityFrameworkCore.Sqlite.Core": "6.0.4",
"SQLitePCLRaw.bundle_e_sqlite3": "2.1.0-pre20220318192836"
},
"runtime": {
"lib/net6.0/SqliteWasmHelper.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.43.46385"
}
}
},
"System.Buffers/4.5.1": {},
"System.Collections.Immutable/6.0.0": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
}
},
"System.Diagnostics.DiagnosticSource/6.0.0": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
}
},
"System.IO.Pipelines/6.0.3": {
"runtime": {
"lib/net6.0/System.IO.Pipelines.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.522.21309"
}
}
},
"System.Memory/4.5.4": {},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {},
"System.Text.Encodings.Web/6.0.0": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
}
},
"System.Text.Json/6.0.0": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0",
"System.Text.Encodings.Web": "6.0.0"
}
}
}
},
"libraries": {
"Account_SQLite/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.AspNetCore.Authorization/6.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-DCNGiX7YDM53RjMhVuEOX3IcoRg0SEVDVFdWTMCcXfehxZfTaVqvlNIzCXM/Jx1pUpguNJn7ryUlcgTJtUqZjQ==",
"path": "microsoft.aspnetcore.authorization/6.0.6",
"hashPath": "microsoft.aspnetcore.authorization.6.0.6.nupkg.sha512"
},
"Microsoft.AspNetCore.Components/6.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-S050RxIGiFyPLt3Y9Qp8swRpmbjK6g6xEN/ka68pRR9cA07IXkRRro3FYyh8zDJS4zidTGbXyusbktFLwnQdzg==",
"path": "microsoft.aspnetcore.components/6.0.6",
"hashPath": "microsoft.aspnetcore.components.6.0.6.nupkg.sha512"
},
"Microsoft.AspNetCore.Components.Analyzers/6.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bbnOX8dkEmlKDoUq/Zoeg5t6mwnOS9Jlxto0KKjqgpeHuCHHLSqLI8HNpAKmY21OUTkMuwIVgf7hm128a/n5nw==",
"path": "microsoft.aspnetcore.components.analyzers/6.0.6",
"hashPath": "microsoft.aspnetcore.components.analyzers.6.0.6.nupkg.sha512"
},
"Microsoft.AspNetCore.Components.Forms/6.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FGppLMwZbsilbqQSWD/+bgiloeRyBZvQZ+q6L9tM8MlC3u/LGWF44xW5m1+13GtMg2j3d83cGDxydq1Fp8qK7Q==",
"path": "microsoft.aspnetcore.components.forms/6.0.6",
"hashPath": "microsoft.aspnetcore.components.forms.6.0.6.nupkg.sha512"
},
"Microsoft.AspNetCore.Components.Web/6.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-B/CD2BSon0F6jJ4MMl7vMPZ/UAjwtD0D10lLTCVr06eRMMIXQcLgHI6lKBgVr1tWcqz/G2t6DhGXgJcfkEUltg==",
"path": "microsoft.aspnetcore.components.web/6.0.6",
"hashPath": "microsoft.aspnetcore.components.web.6.0.6.nupkg.sha512"
},
"Microsoft.AspNetCore.Components.WebAssembly/6.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-IREjJUTPY0qb24w/Q/PuPATwbamqO5VyNASMkcihhTD8ZQeEFoPzfmHGPNegDHcD/16UXwbuxwMHMxic9oa/3w==",
"path": "microsoft.aspnetcore.components.webassembly/6.0.6",
"hashPath": "microsoft.aspnetcore.components.webassembly.6.0.6.nupkg.sha512"
},
"Microsoft.AspNetCore.Components.WebView.WindowsForms/6.0.400": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZCVzaboHA1kXSWSqZGVuBysTaE5sDhkWoja3wMGq8ihOLDTXpj+/ozImjtB/MxsTGgVQ0xVQPUMoYYTuDK8JeQ==",
"path": "microsoft.aspnetcore.components.webview.windowsforms/6.0.400",
"hashPath": "microsoft.aspnetcore.components.webview.windowsforms.6.0.400.nupkg.sha512"
},
"Microsoft.AspNetCore.Metadata/6.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OEj19liYLOyaEgPIgBtaCMPk8AhjxqJZ8aWiZ3g3NZoe8YG5OtL+z4AVVLSqRCDoyVxKQaleyX+SoFHvqvemNA==",
"path": "microsoft.aspnetcore.metadata/6.0.6",
"hashPath": "microsoft.aspnetcore.metadata.6.0.6.nupkg.sha512"
},
"Microsoft.Data.Sqlite.Core/6.0.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3TZX7R2aX1TX5m4A5Kj+SY633NJDeHDP6JiDRCwUnJGKC3IrHgnO8p+oT2hRZpN168qx4Ixe4T9C+xZdZc26gw==",
"path": "microsoft.data.sqlite.core/6.0.4",
"hashPath": "microsoft.data.sqlite.core.6.0.4.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore/6.0.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-gTh3SJsF5WNjEmG32kYc3U4tjeTIv55QOrwHAJcF/xtrIVMteDHMArGC35N0dw86WFY0v8yFkKYKOIOln4jkfQ==",
"path": "microsoft.entityframeworkcore/6.0.4",
"hashPath": "microsoft.entityframeworkcore.6.0.4.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore.Abstractions/6.0.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-jycTQF0FUJp10cGWBmtsyFhQNeISU9CltDRKCaNiX4QRSEFzgRgaFN4vAFK0T+G5etmXugyddijE4NWCGtgznQ==",
"path": "microsoft.entityframeworkcore.abstractions/6.0.4",
"hashPath": "microsoft.entityframeworkcore.abstractions.6.0.4.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore.Analyzers/6.0.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-t12WodVyGGP2CuLo7R1qwcawHY5zlg+GiQzvkceZpsjcFJVyTFFBFDPg1isBtzurLzWsl+G3z5fVXeic90mPxg==",
"path": "microsoft.entityframeworkcore.analyzers/6.0.4",
"hashPath": "microsoft.entityframeworkcore.analyzers.6.0.4.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore.Relational/6.0.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-E867NbEXYRTElBF5ff+1AN5Awa1jkORy/Rrm0ueibaTAV5uw89LsLoH6yTe+b9urZTWMHtLfGd1RDdNjk8+KzA==",
"path": "microsoft.entityframeworkcore.relational/6.0.4",
"hashPath": "microsoft.entityframeworkcore.relational.6.0.4.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore.Sqlite.Core/6.0.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yO6XZA8FQkBLiTtClesWClL3Z1QEqT9vRoDDf/IOPkmsjzjedg2GzkNCauRGk/XnsZZ1qcz55TuJBO+1jNDIaA==",
"path": "microsoft.entityframeworkcore.sqlite.core/6.0.4",
"hashPath": "microsoft.entityframeworkcore.sqlite.core.6.0.4.nupkg.sha512"
},
"Microsoft.Extensions.Caching.Abstractions/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
"path": "microsoft.extensions.caching.abstractions/6.0.0",
"hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Caching.Memory/6.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==",
"path": "microsoft.extensions.caching.memory/6.0.1",
"hashPath": "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512"
},
"Microsoft.Extensions.Configuration/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==",
"path": "microsoft.extensions.configuration/6.0.0",
"hashPath": "microsoft.extensions.configuration.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
"path": "microsoft.extensions.configuration.abstractions/6.0.0",
"hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Binder/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==",
"path": "microsoft.extensions.configuration.binder/6.0.0",
"hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==",
"path": "microsoft.extensions.configuration.fileextensions/6.0.0",
"hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Json/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==",
"path": "microsoft.extensions.configuration.json/6.0.0",
"hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
"path": "microsoft.extensions.dependencyinjection/6.0.0",
"hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
"path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.DependencyModel/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-TD5QHg98m3+QhgEV1YVoNMl5KtBw/4rjfxLHO0e/YV9bPUBDKntApP4xdrVtGgCeQZHVfC2EXIGsdpRNrr87Pg==",
"path": "microsoft.extensions.dependencymodel/6.0.0",
"hashPath": "microsoft.extensions.dependencymodel.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==",
"path": "microsoft.extensions.fileproviders.abstractions/6.0.0",
"hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Physical/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==",
"path": "microsoft.extensions.fileproviders.physical/6.0.0",
"hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileSystemGlobbing/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==",
"path": "microsoft.extensions.filesystemglobbing/6.0.0",
"hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Logging/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
"path": "microsoft.extensions.logging/6.0.0",
"hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Abstractions/6.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==",
"path": "microsoft.extensions.logging.abstractions/6.0.1",
"hashPath": "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512"
},
"Microsoft.Extensions.Options/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
"path": "microsoft.extensions.options/6.0.0",
"hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
"path": "microsoft.extensions.primitives/6.0.0",
"hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512"
},
"Microsoft.JSInterop/6.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-K0z7oazKQS8KLQp4TfSRzqjbg8faI7/3zsRZFOPTeXcEGV9Xao+JK6XDcpgO7XFUDef/6YMurj3BLWXXmNiOSw==",
"path": "microsoft.jsinterop/6.0.6",
"hashPath": "microsoft.jsinterop.6.0.6.nupkg.sha512"
},
"Microsoft.JSInterop.WebAssembly/6.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-p96ywS1vgXrncnar4hQv5briKlgGfp4NhvZvKVknuMDzyoNythKAVUUv2PVlGRDioiI6UCxQQWVUEh5XmumBJg==",
"path": "microsoft.jsinterop.webassembly/6.0.6",
"hashPath": "microsoft.jsinterop.webassembly.6.0.6.nupkg.sha512"
},
"SQLitePCLRaw.bundle_e_sqlite3/2.1.0-pre20220318192836": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bZ94RKsiFJXIVApjlJd5+h3b96/OGAyifOkqQ8f//aJCyGoIqC3AhvYNnDNmRijgrWyczF427HyOrqCsGaQcrg==",
"path": "sqlitepclraw.bundle_e_sqlite3/2.1.0-pre20220318192836",
"hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.0-pre20220318192836.nupkg.sha512"
},
"SQLitePCLRaw.core/2.1.0-pre20220318192836": {
"type": "package",
"serviceable": true,
"sha512": "sha512-A30/f1ykOMDUO8OHoAWK/d5Lrm0TW5Hax3thbLVQ6r8vS6t4jQL5v8uS8PUAcC3hYrZLsISXhcZQckkz4WdmnQ==",
"path": "sqlitepclraw.core/2.1.0-pre20220318192836",
"hashPath": "sqlitepclraw.core.2.1.0-pre20220318192836.nupkg.sha512"
},
"SQLitePCLRaw.lib.e_sqlite3/2.1.0-pre20220318192836": {
"type": "package",
"serviceable": true,
"sha512": "sha512-L5YNSA/EmhAtsxfxot6Q/D3CLOy2Yc+Y758w7O1MXvDXZFOpoOoerMNgqzNDm92GWA5LWP070kZxVQn/nGWaJw==",
"path": "sqlitepclraw.lib.e_sqlite3/2.1.0-pre20220318192836",
"hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.0-pre20220318192836.nupkg.sha512"
},
"SQLitePCLRaw.provider.e_sqlite3/2.1.0-pre20220318192836": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZHIhiiDwr4oecowSOJz+tM+g9xLYa5qnM7urvwIZ8eaUeqlVGTi//6sd4yAMSzQ/lubftxzfqc8ZidQ0nUv8XQ==",
"path": "sqlitepclraw.provider.e_sqlite3/2.1.0-pre20220318192836",
"hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.0-pre20220318192836.nupkg.sha512"
},
"SqliteWasmHelper/1.0.43-beta-g31b50d1f54": {
"type": "package",
"serviceable": true,
"sha512": "sha512-jKa3mgNaLPqbJgugnaJdT5/MOE5YBjPTBG3aXRXeyZ45Vnm6Kj2P/cmVORDeObH2EPvy9uWYrVJxf0AePxD20Q==",
"path": "sqlitewasmhelper/1.0.43-beta-g31b50d1f54",
"hashPath": "sqlitewasmhelper.1.0.43-beta-g31b50d1f54.nupkg.sha512"
},
"System.Buffers/4.5.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
"path": "system.buffers/4.5.1",
"hashPath": "system.buffers.4.5.1.nupkg.sha512"
},
"System.Collections.Immutable/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
"path": "system.collections.immutable/6.0.0",
"hashPath": "system.collections.immutable.6.0.0.nupkg.sha512"
},
"System.Diagnostics.DiagnosticSource/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
"path": "system.diagnostics.diagnosticsource/6.0.0",
"hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512"
},
"System.IO.Pipelines/6.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
"path": "system.io.pipelines/6.0.3",
"hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
},
"System.Memory/4.5.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
"path": "system.memory/4.5.4",
"hashPath": "system.memory.4.5.4.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
"path": "system.runtime.compilerservices.unsafe/6.0.0",
"hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
},
"System.Text.Encodings.Web/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
"path": "system.text.encodings.web/6.0.0",
"hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512"
},
"System.Text.Json/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==",
"path": "system.text.json/6.0.0",
"hashPath": "system.text.json.6.0.0.nupkg.sha512"
}
}
}

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,19 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.AspNetCore.App",
"version": "6.0.0"
}
],
"configProperties": {
"System.GC.Server": true,
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

View File

@ -0,0 +1 @@
{"ContentRoots":["/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/","/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/staticwebassets/","/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/"],"Root":{"Children":{"browserCache.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"browserCache.js"},"Patterns":null},"css":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/app.css"},"Patterns":null},"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"_content":{"Children":{"SqliteWasmHelper":{"Children":{"browserCache.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"browserCache.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Account_SQLite.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Account_SQLite.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,9 @@
{
"DetailedErrors": true,
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}

View File

@ -0,0 +1,80 @@
{
"format": 1,
"restore": {
"/Users/normrasmussen/Documents/Northpass/Account_SQLite/Account_SQLite.csproj": {}
},
"projects": {
"/Users/normrasmussen/Documents/Northpass/Account_SQLite/Account_SQLite.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Account_SQLite.csproj",
"projectName": "Account_SQLite",
"projectPath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Account_SQLite.csproj",
"packagesPath": "/Users/normrasmussen/.nuget/packages/",
"outputPath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/normrasmussen/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Microsoft.AspNetCore.Components.WebAssembly": {
"target": "Package",
"version": "[6.0.4, )"
},
"Microsoft.AspNetCore.Components.WebAssembly.DevServer": {
"suppressParent": "All",
"target": "Package",
"version": "[6.0.4, )"
},
"SqliteWasmHelper": {
"target": "Package",
"version": "[1.0.43-beta-g31b50d1f54, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/6.0.300/RuntimeIdentifierGraph.json"
}
},
"runtimes": {
"browser-wasm": {
"#import": []
}
}
}
}
}

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/Users/normrasmussen/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/Users/normrasmussen/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/Users/normrasmussen/.nuget/packages/" />
</ItemGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Content Include="$(NuGetPackageRoot)sqlitewasmhelper/1.0.43-beta-g31b50d1f54/contentFiles/any/net6.0/wwwroot/browserCache.js" Condition="Exists('$(NuGetPackageRoot)sqlitewasmhelper/1.0.43-beta-g31b50d1f54/contentFiles/any/net6.0/wwwroot/browserCache.js')">
<NuGetPackageId>SqliteWasmHelper</NuGetPackageId>
<NuGetPackageVersion>1.0.43-beta-g31b50d1f54</NuGetPackageVersion>
<NuGetItemType>Content</NuGetItemType>
<Pack>false</Pack>
<Private>False</Private>
<Link>wwwroot/browserCache.js</Link>
</Content>
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)sqlitewasmhelper/1.0.43-beta-g31b50d1f54/buildTransitive/SqliteWasmHelper.props" Condition="Exists('$(NuGetPackageRoot)sqlitewasmhelper/1.0.43-beta-g31b50d1f54/buildTransitive/SqliteWasmHelper.props')" />
<Import Project="$(NuGetPackageRoot)microsoft.aspnetcore.components.webassembly/6.0.4/build/net6.0/Microsoft.AspNetCore.Components.WebAssembly.props" Condition="Exists('$(NuGetPackageRoot)microsoft.aspnetcore.components.webassembly/6.0.4/build/net6.0/Microsoft.AspNetCore.Components.WebAssembly.props')" />
</ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_AspNetCore_Components_WebAssembly_DevServer Condition=" '$(PkgMicrosoft_AspNetCore_Components_WebAssembly_DevServer)' == '' ">/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.webassembly.devserver/6.0.4</PkgMicrosoft_AspNetCore_Components_WebAssembly_DevServer>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3/2.1.0-pre20220318192836/buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets" Condition="Exists('$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3/2.1.0-pre20220318192836/buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.aspnetcore.components.analyzers/6.0.4/buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.aspnetcore.components.analyzers/6.0.4/buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.aspnetcore.components.webassembly.devserver/6.0.4/build/Microsoft.AspNetCore.Components.WebAssembly.DevServer.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.aspnetcore.components.webassembly.devserver/6.0.4/build/Microsoft.AspNetCore.Components.WebAssembly.DevServer.targets')" />
</ImportGroup>
</Project>

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

View File

@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Account_SQLite")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Account_SQLite")]
[assembly: System.Reflection.AssemblyTitleAttribute("Account_SQLite")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@ -0,0 +1 @@
665ed0f4a5fd66dc3bb8001acfd5b5347788ae64

View File

@ -0,0 +1,47 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization = false
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = browser
build_property.EnableSingleFileAnalyzer =
build_property.EnableTrimAnalyzer = true
build_property.IncludeAllContentForSelfExtract =
build_property.RootNamespace = Account_SQLite
build_property.RootNamespace = Account_SQLite
build_property.ProjectDir = /Users/normrasmussen/Documents/Northpass/Account_SQLite/
build_property.RazorLangVersion = 6.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = /Users/normrasmussen/Documents/Northpass/Account_SQLite
build_property._RazorSourceGeneratorDebug =
[/Users/normrasmussen/Documents/Northpass/Account_SQLite/App.razor]
build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[/Users/normrasmussen/Documents/Northpass/Account_SQLite/Pages/Index.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvSW5kZXgucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[/Users/normrasmussen/Documents/Northpass/Account_SQLite/_Imports.razor]
build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[/Users/normrasmussen/Documents/Northpass/Account_SQLite/Shared/MainLayout.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkL01haW5MYXlvdXQucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-jn0vslp9lp
[/Users/normrasmussen/Documents/Northpass/Account_SQLite/Shared/NavMenu.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkL05hdk1lbnUucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-hruea6gb89
[/Users/normrasmussen/Documents/Northpass/Account_SQLite/Pages/_Host.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvX0hvc3QuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[/Users/normrasmussen/Documents/Northpass/Account_SQLite/Pages/_Layout.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvX0xheW91dC5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =

View File

@ -0,0 +1,11 @@
// <auto-generated/>
global using global::Microsoft.Extensions.Configuration;
global using global::Microsoft.Extensions.DependencyInjection;
global using global::Microsoft.Extensions.Logging;
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@ -0,0 +1 @@
5860763757f4f08c7ebdea1b3a94a18109f17861

View File

@ -0,0 +1,17 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" +
"ory, Microsoft.AspNetCore.Mvc.Razor")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@ -0,0 +1 @@
ac4be707c810867893fa854e3fe969080daae679

View File

@ -0,0 +1,69 @@
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.AssemblyReference.cache
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.GeneratedMSBuildEditorConfig.editorconfig
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.AssemblyInfoInputs.cache
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.AssemblyInfo.cs
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.CoreCompileInputs.cache
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.MvcApplicationPartsAssemblyInfo.cache
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.RazorAssemblyInfo.cache
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.RazorAssemblyInfo.cs
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/appsettings.Development.json
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/appsettings.json
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Account_SQLite.staticwebassets.runtime.json
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Account_SQLite
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Account_SQLite.deps.json
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Account_SQLite.runtimeconfig.json
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Account_SQLite.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Account_SQLite.pdb
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Data.Sqlite.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/SQLitePCLRaw.batteries_v2.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/SQLitePCLRaw.core.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/SqliteWasmHelper.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/System.IO.Pipelines.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/alpine-arm/native/libe_sqlite3.so
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/alpine-arm64/native/libe_sqlite3.so
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/alpine-x64/native/libe_sqlite3.so
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/linux-arm/native/libe_sqlite3.so
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/linux-arm64/native/libe_sqlite3.so
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/linux-armel/native/libe_sqlite3.so
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/linux-mips64/native/libe_sqlite3.so
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/linux-musl-arm/native/libe_sqlite3.so
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libe_sqlite3.so
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/linux-s390x/native/libe_sqlite3.so
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/linux-x64/native/libe_sqlite3.so
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/linux-x86/native/libe_sqlite3.so
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/osx-arm64/native/libe_sqlite3.dylib
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/osx-x64/native/libe_sqlite3.dylib
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/win-arm/native/e_sqlite3.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/win-arm64/native/e_sqlite3.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/win-x64/native/e_sqlite3.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/bin/Debug/net6.0/runtimes/win-x86/native/e_sqlite3.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/staticwebassets.build.json
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/staticwebassets.development.json
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/Shared/MainLayout.razor.rz.scp.css
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/Shared/NavMenu.razor.rz.scp.css
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/Account_SQLite.styles.css
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/projectbundle/Account_SQLite.bundle.scp.css
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.csproj.CopyComplete
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/refint/Account_SQLite.dll
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.pdb
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/Account_SQLite.genruntimeconfig.cache
/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/ref/Account_SQLite.dll

Binary file not shown.

View File

@ -0,0 +1 @@
a6780b54c28dc1bf6618296ccf3ead61dcfc7758

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,81 @@
.page[b-jn0vslp9lp] {
position: relative;
display: flex;
flex-direction: column;
}
main[b-jn0vslp9lp] {
flex: 1;
}
.sidebar[b-jn0vslp9lp] {
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
.top-row[b-jn0vslp9lp] {
background-color: #f7f7f7;
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}
.top-row[b-jn0vslp9lp] a, .top-row[b-jn0vslp9lp] .btn-link {
white-space: nowrap;
margin-left: 1.5rem;
text-decoration: none;
}
.top-row[b-jn0vslp9lp] a:hover, .top-row[b-jn0vslp9lp] .btn-link:hover {
text-decoration: underline;
}
.top-row[b-jn0vslp9lp] a:first-child {
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 640.98px) {
.top-row:not(.auth)[b-jn0vslp9lp] {
display: none;
}
.top-row.auth[b-jn0vslp9lp] {
justify-content: space-between;
}
.top-row[b-jn0vslp9lp] a, .top-row[b-jn0vslp9lp] .btn-link {
margin-left: 0;
}
}
@media (min-width: 641px) {
.page[b-jn0vslp9lp] {
flex-direction: row;
}
.sidebar[b-jn0vslp9lp] {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}
.top-row[b-jn0vslp9lp] {
position: sticky;
top: 0;
z-index: 1;
}
.top-row.auth[b-jn0vslp9lp] a:first-child {
flex: 1;
text-align: right;
width: 0;
}
.top-row[b-jn0vslp9lp], article[b-jn0vslp9lp] {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
}

View File

@ -0,0 +1,62 @@
.navbar-toggler[b-hruea6gb89] {
background-color: rgba(255, 255, 255, 0.1);
}
.top-row[b-hruea6gb89] {
height: 3.5rem;
background-color: rgba(0,0,0,0.4);
}
.navbar-brand[b-hruea6gb89] {
font-size: 1.1rem;
}
.oi[b-hruea6gb89] {
width: 2rem;
font-size: 1.1rem;
vertical-align: text-top;
top: -2px;
}
.nav-item[b-hruea6gb89] {
font-size: 0.9rem;
padding-bottom: 0.5rem;
}
.nav-item:first-of-type[b-hruea6gb89] {
padding-top: 1rem;
}
.nav-item:last-of-type[b-hruea6gb89] {
padding-bottom: 1rem;
}
.nav-item[b-hruea6gb89] a {
color: #d7d7d7;
border-radius: 4px;
height: 3rem;
display: flex;
align-items: center;
line-height: 3rem;
}
.nav-item[b-hruea6gb89] a.active {
background-color: rgba(255,255,255,0.25);
color: white;
}
.nav-item[b-hruea6gb89] a:hover {
background-color: rgba(255,255,255,0.1);
color: white;
}
@media (min-width: 641px) {
.navbar-toggler[b-hruea6gb89] {
display: none;
}
.collapse[b-hruea6gb89] {
/* Never collapse the sidebar for wide screens */
display: block;
}
}

View File

@ -0,0 +1,145 @@
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-jn0vslp9lp] {
position: relative;
display: flex;
flex-direction: column;
}
main[b-jn0vslp9lp] {
flex: 1;
}
.sidebar[b-jn0vslp9lp] {
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
.top-row[b-jn0vslp9lp] {
background-color: #f7f7f7;
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}
.top-row[b-jn0vslp9lp] a, .top-row[b-jn0vslp9lp] .btn-link {
white-space: nowrap;
margin-left: 1.5rem;
text-decoration: none;
}
.top-row[b-jn0vslp9lp] a:hover, .top-row[b-jn0vslp9lp] .btn-link:hover {
text-decoration: underline;
}
.top-row[b-jn0vslp9lp] a:first-child {
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 640.98px) {
.top-row:not(.auth)[b-jn0vslp9lp] {
display: none;
}
.top-row.auth[b-jn0vslp9lp] {
justify-content: space-between;
}
.top-row[b-jn0vslp9lp] a, .top-row[b-jn0vslp9lp] .btn-link {
margin-left: 0;
}
}
@media (min-width: 641px) {
.page[b-jn0vslp9lp] {
flex-direction: row;
}
.sidebar[b-jn0vslp9lp] {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}
.top-row[b-jn0vslp9lp] {
position: sticky;
top: 0;
z-index: 1;
}
.top-row.auth[b-jn0vslp9lp] a:first-child {
flex: 1;
text-align: right;
width: 0;
}
.top-row[b-jn0vslp9lp], article[b-jn0vslp9lp] {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-hruea6gb89] {
background-color: rgba(255, 255, 255, 0.1);
}
.top-row[b-hruea6gb89] {
height: 3.5rem;
background-color: rgba(0,0,0,0.4);
}
.navbar-brand[b-hruea6gb89] {
font-size: 1.1rem;
}
.oi[b-hruea6gb89] {
width: 2rem;
font-size: 1.1rem;
vertical-align: text-top;
top: -2px;
}
.nav-item[b-hruea6gb89] {
font-size: 0.9rem;
padding-bottom: 0.5rem;
}
.nav-item:first-of-type[b-hruea6gb89] {
padding-top: 1rem;
}
.nav-item:last-of-type[b-hruea6gb89] {
padding-bottom: 1rem;
}
.nav-item[b-hruea6gb89] a {
color: #d7d7d7;
border-radius: 4px;
height: 3rem;
display: flex;
align-items: center;
line-height: 3rem;
}
.nav-item[b-hruea6gb89] a.active {
background-color: rgba(255,255,255,0.25);
color: white;
}
.nav-item[b-hruea6gb89] a:hover {
background-color: rgba(255,255,255,0.1);
color: white;
}
@media (min-width: 641px) {
.navbar-toggler[b-hruea6gb89] {
display: none;
}
.collapse[b-hruea6gb89] {
/* Never collapse the sidebar for wide screens */
display: block;
}
}

View File

@ -0,0 +1,145 @@
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-jn0vslp9lp] {
position: relative;
display: flex;
flex-direction: column;
}
main[b-jn0vslp9lp] {
flex: 1;
}
.sidebar[b-jn0vslp9lp] {
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
.top-row[b-jn0vslp9lp] {
background-color: #f7f7f7;
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}
.top-row[b-jn0vslp9lp] a, .top-row[b-jn0vslp9lp] .btn-link {
white-space: nowrap;
margin-left: 1.5rem;
text-decoration: none;
}
.top-row[b-jn0vslp9lp] a:hover, .top-row[b-jn0vslp9lp] .btn-link:hover {
text-decoration: underline;
}
.top-row[b-jn0vslp9lp] a:first-child {
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 640.98px) {
.top-row:not(.auth)[b-jn0vslp9lp] {
display: none;
}
.top-row.auth[b-jn0vslp9lp] {
justify-content: space-between;
}
.top-row[b-jn0vslp9lp] a, .top-row[b-jn0vslp9lp] .btn-link {
margin-left: 0;
}
}
@media (min-width: 641px) {
.page[b-jn0vslp9lp] {
flex-direction: row;
}
.sidebar[b-jn0vslp9lp] {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}
.top-row[b-jn0vslp9lp] {
position: sticky;
top: 0;
z-index: 1;
}
.top-row.auth[b-jn0vslp9lp] a:first-child {
flex: 1;
text-align: right;
width: 0;
}
.top-row[b-jn0vslp9lp], article[b-jn0vslp9lp] {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-hruea6gb89] {
background-color: rgba(255, 255, 255, 0.1);
}
.top-row[b-hruea6gb89] {
height: 3.5rem;
background-color: rgba(0,0,0,0.4);
}
.navbar-brand[b-hruea6gb89] {
font-size: 1.1rem;
}
.oi[b-hruea6gb89] {
width: 2rem;
font-size: 1.1rem;
vertical-align: text-top;
top: -2px;
}
.nav-item[b-hruea6gb89] {
font-size: 0.9rem;
padding-bottom: 0.5rem;
}
.nav-item:first-of-type[b-hruea6gb89] {
padding-top: 1rem;
}
.nav-item:last-of-type[b-hruea6gb89] {
padding-bottom: 1rem;
}
.nav-item[b-hruea6gb89] a {
color: #d7d7d7;
border-radius: 4px;
height: 3rem;
display: flex;
align-items: center;
line-height: 3rem;
}
.nav-item[b-hruea6gb89] a.active {
background-color: rgba(255,255,255,0.25);
color: white;
}
.nav-item[b-hruea6gb89] a:hover {
background-color: rgba(255,255,255,0.1);
color: white;
}
@media (min-width: 641px) {
.navbar-toggler[b-hruea6gb89] {
display: none;
}
.collapse[b-hruea6gb89] {
/* Never collapse the sidebar for wide screens */
display: block;
}
}

View File

@ -0,0 +1,326 @@
{
"Version": 1,
"Hash": "kYLqOT4tYO8/1MZvYKRyFcRKJyHX88x4lK6onXvt9uA=",
"Source": "Account_SQLite",
"BasePath": "/",
"Mode": "Root",
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [],
"DiscoveryPatterns": [
{
"Name": "Account_SQLite/wwwroot",
"Source": "Account_SQLite",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"Pattern": "**"
}
],
"Assets": [
{
"Identity": "/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/contentFiles/any/net6.0/wwwroot/browserCache.js",
"SourceId": "Account_SQLite",
"SourceType": "Discovered",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"RelativePath": "browserCache.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/contentFiles/any/net6.0/wwwroot/browserCache.js"
},
{
"Identity": "/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/staticwebassets/browserCache.js",
"SourceId": "SqliteWasmHelper",
"SourceType": "Package",
"ContentRoot": "/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/staticwebassets/",
"BasePath": "_content/SqliteWasmHelper",
"RelativePath": "browserCache.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/staticwebassets/browserCache.js"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/Account_SQLite.styles.css",
"SourceId": "Account_SQLite",
"SourceType": "Computed",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/",
"BasePath": "/",
"RelativePath": "Account_SQLite.styles.css",
"AssetKind": "All",
"AssetMode": "CurrentProject",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "ScopedCss",
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/Account_SQLite.styles.css"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/projectbundle/Account_SQLite.bundle.scp.css",
"SourceId": "Account_SQLite",
"SourceType": "Computed",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/projectbundle/",
"BasePath": "/",
"RelativePath": "Account_SQLite.bundle.scp.css",
"AssetKind": "All",
"AssetMode": "Reference",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "ScopedCss",
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/projectbundle/Account_SQLite.bundle.scp.css"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/app.css",
"SourceId": "Account_SQLite",
"SourceType": "Discovered",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"RelativePath": "css/app.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot/css/app.css"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/bootstrap/bootstrap.min.css",
"SourceId": "Account_SQLite",
"SourceType": "Discovered",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"RelativePath": "css/bootstrap/bootstrap.min.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot/css/bootstrap/bootstrap.min.css"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/bootstrap/bootstrap.min.css.map",
"SourceId": "Account_SQLite",
"SourceType": "Discovered",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"RelativePath": "css/bootstrap/bootstrap.min.css.map",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot/css/bootstrap/bootstrap.min.css.map"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/FONT-LICENSE",
"SourceId": "Account_SQLite",
"SourceType": "Discovered",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"RelativePath": "css/open-iconic/FONT-LICENSE",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot/css/open-iconic/FONT-LICENSE"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css",
"SourceId": "Account_SQLite",
"SourceType": "Discovered",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"RelativePath": "css/open-iconic/font/css/open-iconic-bootstrap.min.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/font/fonts/open-iconic.eot",
"SourceId": "Account_SQLite",
"SourceType": "Discovered",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"RelativePath": "css/open-iconic/font/fonts/open-iconic.eot",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot/css/open-iconic/font/fonts/open-iconic.eot"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/font/fonts/open-iconic.otf",
"SourceId": "Account_SQLite",
"SourceType": "Discovered",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"RelativePath": "css/open-iconic/font/fonts/open-iconic.otf",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot/css/open-iconic/font/fonts/open-iconic.otf"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/font/fonts/open-iconic.svg",
"SourceId": "Account_SQLite",
"SourceType": "Discovered",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"RelativePath": "css/open-iconic/font/fonts/open-iconic.svg",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot/css/open-iconic/font/fonts/open-iconic.svg"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf",
"SourceId": "Account_SQLite",
"SourceType": "Discovered",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"RelativePath": "css/open-iconic/font/fonts/open-iconic.ttf",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot/css/open-iconic/font/fonts/open-iconic.ttf"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/font/fonts/open-iconic.woff",
"SourceId": "Account_SQLite",
"SourceType": "Discovered",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"RelativePath": "css/open-iconic/font/fonts/open-iconic.woff",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot/css/open-iconic/font/fonts/open-iconic.woff"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/ICON-LICENSE",
"SourceId": "Account_SQLite",
"SourceType": "Discovered",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"RelativePath": "css/open-iconic/ICON-LICENSE",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot/css/open-iconic/ICON-LICENSE"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/css/open-iconic/README.md",
"SourceId": "Account_SQLite",
"SourceType": "Discovered",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"RelativePath": "css/open-iconic/README.md",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot/css/open-iconic/README.md"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/favicon.ico",
"SourceId": "Account_SQLite",
"SourceType": "Discovered",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"RelativePath": "favicon.ico",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot/favicon.ico"
},
{
"Identity": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/index.html",
"SourceId": "Account_SQLite",
"SourceType": "Discovered",
"ContentRoot": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/",
"BasePath": "/",
"RelativePath": "index.html",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot/index.html"
}
]
}

View File

@ -0,0 +1 @@
{"ContentRoots":["/Users/normrasmussen/Documents/Northpass/Account_SQLite/wwwroot/","/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/staticwebassets/","/Users/normrasmussen/Documents/Northpass/Account_SQLite/obj/Debug/net6.0/scopedcss/bundle/"],"Root":{"Children":{"browserCache.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"browserCache.js"},"Patterns":null},"css":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/app.css"},"Patterns":null},"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"_content":{"Children":{"SqliteWasmHelper":{"Children":{"browserCache.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"browserCache.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Account_SQLite.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Account_SQLite.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,55 @@
{
"version": 2,
"dgSpecHash": "qRMWwoh0JjV2fu65sFb7NAXia9va7Ml2N8QCb5zJB+nvjU6r6JWv9jmx9/MBO7vNZ1fJVoe0XzZTPy1mxiZlww==",
"success": true,
"projectFilePath": "/Users/normrasmussen/Documents/Northpass/Account_SQLite/Account_SQLite.csproj",
"expectedPackageFiles": [
"/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.authorization/6.0.4/microsoft.aspnetcore.authorization.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components/6.0.4/microsoft.aspnetcore.components.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.analyzers/6.0.4/microsoft.aspnetcore.components.analyzers.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.forms/6.0.4/microsoft.aspnetcore.components.forms.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.web/6.0.4/microsoft.aspnetcore.components.web.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.webassembly/6.0.4/microsoft.aspnetcore.components.webassembly.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.webassembly.devserver/6.0.4/microsoft.aspnetcore.components.webassembly.devserver.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.metadata/6.0.4/microsoft.aspnetcore.metadata.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.data.sqlite.core/6.0.4/microsoft.data.sqlite.core.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.entityframeworkcore/6.0.4/microsoft.entityframeworkcore.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.entityframeworkcore.abstractions/6.0.4/microsoft.entityframeworkcore.abstractions.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.entityframeworkcore.analyzers/6.0.4/microsoft.entityframeworkcore.analyzers.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.entityframeworkcore.relational/6.0.4/microsoft.entityframeworkcore.relational.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.entityframeworkcore.sqlite.core/6.0.4/microsoft.entityframeworkcore.sqlite.core.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.caching.abstractions/6.0.0/microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.caching.memory/6.0.1/microsoft.extensions.caching.memory.6.0.1.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration/6.0.0/microsoft.extensions.configuration.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.abstractions/6.0.0/microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.binder/6.0.0/microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.fileextensions/6.0.0/microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.json/6.0.0/microsoft.extensions.configuration.json.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.dependencyinjection/6.0.0/microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/6.0.0/microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.dependencymodel/6.0.0/microsoft.extensions.dependencymodel.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.fileproviders.abstractions/6.0.0/microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.fileproviders.physical/6.0.0/microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.filesystemglobbing/6.0.0/microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.logging/6.0.0/microsoft.extensions.logging.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.logging.abstractions/6.0.1/microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.options/6.0.0/microsoft.extensions.options.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.extensions.primitives/6.0.0/microsoft.extensions.primitives.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.jsinterop/6.0.4/microsoft.jsinterop.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/microsoft.jsinterop.webassembly/6.0.4/microsoft.jsinterop.webassembly.6.0.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/sqlitepclraw.bundle_e_sqlite3/2.1.0-pre20220318192836/sqlitepclraw.bundle_e_sqlite3.2.1.0-pre20220318192836.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/sqlitepclraw.core/2.1.0-pre20220318192836/sqlitepclraw.core.2.1.0-pre20220318192836.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/sqlitepclraw.lib.e_sqlite3/2.1.0-pre20220318192836/sqlitepclraw.lib.e_sqlite3.2.1.0-pre20220318192836.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/sqlitepclraw.provider.e_sqlite3/2.1.0-pre20220318192836/sqlitepclraw.provider.e_sqlite3.2.1.0-pre20220318192836.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/sqlitewasmhelper/1.0.43-beta-g31b50d1f54/sqlitewasmhelper.1.0.43-beta-g31b50d1f54.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/system.buffers/4.5.1/system.buffers.4.5.1.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/system.collections.immutable/6.0.0/system.collections.immutable.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/system.diagnostics.diagnosticsource/6.0.0/system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/system.io.pipelines/6.0.2/system.io.pipelines.6.0.2.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/system.memory/4.5.4/system.memory.4.5.4.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/system.text.encodings.web/6.0.0/system.text.encodings.web.6.0.0.nupkg.sha512",
"/Users/normrasmussen/.nuget/packages/system.text.json/6.0.0/system.text.json.6.0.0.nupkg.sha512"
],
"logs": []
}

View File

@ -0,0 +1,19 @@
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0

View File

@ -0,0 +1,64 @@
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
h1:focus {
outline: none;
}
a, .btn-link {
color: #0071c1;
}
.btn-primary {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.content {
padding-top: 1.1rem;
}
.valid.modified:not([type=checkbox]) {
outline: 1px solid #26b050;
}
.invalid {
outline: 1px solid red;
}
.validation-message {
color: red;
}
#blazor-error-ui {
background: lightyellow;
bottom: 0;
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
display: none;
left: 0;
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
position: fixed;
width: 100%;
z-index: 1000;
}
#blazor-error-ui .dismiss {
cursor: pointer;
position: absolute;
right: 0.75rem;
top: 0.5rem;
}
.blazor-error-boundary {
background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
padding: 1rem 1rem 1rem 3.7rem;
color: white;
}
.blazor-error-boundary::after {
content: "An error has occurred."
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,86 @@
SIL OPEN FONT LICENSE Version 1.1
Copyright (c) 2014 Waybury
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.

Some files were not shown because too many files have changed in this diff Show More