Initial commit - LayoutLib.RCL
This commit is contained in:
@@ -0,0 +1,3 @@
|
|||||||
|
<div class="my-component">
|
||||||
|
This component is defined in the <strong>Layout</strong> library.
|
||||||
|
</div>
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
.my-component {
|
||||||
|
border: 2px dashed red;
|
||||||
|
padding: 1em;
|
||||||
|
margin: 1em 0;
|
||||||
|
background-image: url('background.png');
|
||||||
|
}
|
||||||
@@ -0,0 +1,76 @@
|
|||||||
|
@inherits LayoutComponentBase
|
||||||
|
@namespace LayoutLib
|
||||||
|
@using Common
|
||||||
|
|
||||||
|
<DaisyToastContainer />
|
||||||
|
|
||||||
|
<div class="flex h-screen bg-base-100 overflow-hidden">
|
||||||
|
<!-- Sidebar -->
|
||||||
|
<AdminSidebar />
|
||||||
|
|
||||||
|
<!-- Main Content -->
|
||||||
|
<main class="flex-1 flex flex-col min-w-0 overflow-hidden relative">
|
||||||
|
<!-- Top Navigation / Header -->
|
||||||
|
<header
|
||||||
|
class="h-20 flex items-center justify-between px-8 bg-base-100/50 backdrop-blur-md border-b border-base-300 sticky top-0 z-30">
|
||||||
|
<div class="flex items-center gap-4">
|
||||||
|
<h2 class="text-sm font-black uppercase tracking-widest text-base-content/50">Admin Panel</h2>
|
||||||
|
<div class="w-1 h-1 rounded-full bg-base-300"></div>
|
||||||
|
<div class="flex items-center gap-2">
|
||||||
|
<span class="text-sm font-bold">MassTech</span>
|
||||||
|
<div class="badge badge-outline badge-primary badge-xs">v1.0</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex items-center gap-4">
|
||||||
|
<button class="btn btn-ghost btn-circle btn-sm">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24"
|
||||||
|
stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
||||||
|
d="M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9" />
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
<div class="h-8 w-[1px] bg-base-300"></div>
|
||||||
|
<button class="btn btn-primary btn-sm px-6 rounded-xl shadow-lg shadow-primary/20">
|
||||||
|
Notifications
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- Page Content -->
|
||||||
|
<div class="flex-1 overflow-y-auto custom-scrollbar p-0 bg-base-200/30">
|
||||||
|
<div class="p-8 pb-32">
|
||||||
|
@Body
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Glass Overlay (Optional Decorative) -->
|
||||||
|
<div class="absolute -bottom-20 -right-20 w-80 h-80 bg-primary/5 rounded-full blur-[100px] pointer-events-none">
|
||||||
|
</div>
|
||||||
|
<div class="absolute -top-20 -left-20 w-80 h-80 bg-secondary/5 rounded-full blur-[100px] pointer-events-none">
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.custom-scrollbar::-webkit-scrollbar {
|
||||||
|
width: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-scrollbar::-webkit-scrollbar-track {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-scrollbar::-webkit-scrollbar-thumb {
|
||||||
|
background: hsl(var(--bc) / 0.1);
|
||||||
|
border-radius: 10px;
|
||||||
|
border: 2px solid transparent;
|
||||||
|
background-clip: content-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: hsl(var(--bc) / 0.2);
|
||||||
|
border: 2px solid transparent;
|
||||||
|
background-clip: content-box;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,123 @@
|
|||||||
|
@using Microsoft.AspNetCore.Components.Routing
|
||||||
|
|
||||||
|
<aside
|
||||||
|
class="flex flex-col w-64 h-screen bg-base-200 border-r border-base-300 shadow-xl overflow-hidden transition-all duration-300">
|
||||||
|
<!-- Sidebar Header -->
|
||||||
|
<div class="flex items-center justify-between p-6 bg-primary/5 border-b border-base-300">
|
||||||
|
<div class="flex items-center gap-3">
|
||||||
|
<div class="p-2 bg-primary rounded-xl text-primary-content shadow-lg shadow-primary/20">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24"
|
||||||
|
stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
||||||
|
d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
||||||
|
d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<span class="text-xl font-black tracking-tighter text-base-content">ADMIN</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Navigation Links -->
|
||||||
|
<nav class="flex-1 overflow-y-auto p-4 space-y-2 custom-scrollbar">
|
||||||
|
<div class="px-3 mb-2">
|
||||||
|
<p class="text-[10px] font-black uppercase tracking-[0.2em] text-base-content/40">General</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<NavLink
|
||||||
|
class="flex items-center gap-3 px-4 py-3 rounded-2xl transition-all duration-200 hover:bg-base-300 group"
|
||||||
|
href="/" Match="NavLinkMatch.All">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||||||
|
class="h-5 w-5 opacity-50 group-[.active]:opacity-100 group-[.active]:text-primary" fill="none"
|
||||||
|
viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
||||||
|
d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" />
|
||||||
|
</svg>
|
||||||
|
<span class="font-bold text-sm">Dashboard</span>
|
||||||
|
</NavLink>
|
||||||
|
|
||||||
|
<div class="px-3 mt-6 mb-2">
|
||||||
|
<p class="text-[10px] font-black uppercase tracking-[0.2em] text-base-content/40">Commerce</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<NavLink
|
||||||
|
class="flex items-center gap-3 px-4 py-3 rounded-2xl transition-all duration-200 hover:bg-base-300 group"
|
||||||
|
href="/admin/products">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||||||
|
class="h-5 w-5 opacity-50 group-[.active]:opacity-100 group-[.active]:text-primary" fill="none"
|
||||||
|
viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
||||||
|
d="M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-10L4 7m8 4v10M4 7v10l8 4" />
|
||||||
|
</svg>
|
||||||
|
<span class="font-bold text-sm">Products</span>
|
||||||
|
</NavLink>
|
||||||
|
|
||||||
|
<NavLink
|
||||||
|
class="flex items-center gap-3 px-4 py-3 rounded-2xl transition-all duration-200 hover:bg-base-300 group"
|
||||||
|
href="/admin/categories">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||||||
|
class="h-5 w-5 opacity-50 group-[.active]:opacity-100 group-[.active]:text-primary" fill="none"
|
||||||
|
viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h7" />
|
||||||
|
</svg>
|
||||||
|
<span class="font-bold text-sm">Categories</span>
|
||||||
|
</NavLink>
|
||||||
|
|
||||||
|
<div class="px-3 mt-6 mb-2">
|
||||||
|
<p class="text-[10px] font-black uppercase tracking-[0.2em] text-base-content/40">Settings</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<NavLink
|
||||||
|
class="flex items-center gap-3 px-4 py-3 rounded-2xl transition-all duration-200 hover:bg-base-300 group"
|
||||||
|
href="/manage-UserRole">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||||||
|
class="h-5 w-5 opacity-50 group-[.active]:opacity-100 group-[.active]:text-primary" fill="none"
|
||||||
|
viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
||||||
|
d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z" />
|
||||||
|
</svg>
|
||||||
|
<span class="font-bold text-sm">User Roles</span>
|
||||||
|
</NavLink>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<!-- Sidebar Footer -->
|
||||||
|
<div class="p-4 border-t border-base-300 bg-base-300/20">
|
||||||
|
<div class="flex items-center gap-3 p-3 rounded-2xl bg-base-100 border border-base-300 shadow-sm">
|
||||||
|
<div class="avatar placeholder">
|
||||||
|
<div class="bg-neutral text-neutral-content rounded-xl w-10">
|
||||||
|
<span class="text-xs">AD</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-col overflow-hidden">
|
||||||
|
<span class="text-sm font-black truncate">Admin User</span>
|
||||||
|
<span class="text-[10px] opacity-50 truncate">admin@company.com</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.custom-scrollbar::-webkit-scrollbar {
|
||||||
|
width: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-scrollbar::-webkit-scrollbar-track {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-scrollbar::-webkit-scrollbar-thumb {
|
||||||
|
background: hsl(var(--bc) / 0.1);
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: hsl(var(--bc) / 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.active {
|
||||||
|
background-color: hsl(var(--b3));
|
||||||
|
border-left: 4px solid hsl(var(--p));
|
||||||
|
border-radius: 0 1rem 1rem 0 !important;
|
||||||
|
padding-left: calc(1rem - 4px) !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
@inherits LayoutComponentBase
|
||||||
|
@namespace LayoutLib
|
||||||
|
@* Required *@
|
||||||
|
|
||||||
|
<div>
|
||||||
|
@Body
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@code {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@* <div class="page">
|
||||||
|
<div class="sidebar">
|
||||||
|
<NavMenu />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<div class="top-row px-4">
|
||||||
|
<a href="https://learn.microsoft.com/aspnet/core/" target="_blank">About</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<article class="content px-4">
|
||||||
|
@Body
|
||||||
|
</article>
|
||||||
|
</main>
|
||||||
|
</div> *@
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
@* @inherits LayoutComponentBase *@
|
||||||
|
@* Required *@
|
||||||
|
@* <MudRTLProvider RightToLeft="@_rightToLeft">
|
||||||
|
|
||||||
|
<MudThemeProvider />
|
||||||
|
<MudPopoverProvider />
|
||||||
|
|
||||||
|
<MudDialogProvider />
|
||||||
|
|
||||||
|
<MudSnackbarProvider />
|
||||||
|
|
||||||
|
<MudLayout>
|
||||||
|
<MudAppBar>
|
||||||
|
<MudIconButton Icon="@Icons.Material.Filled.Menu" Color="Color.Inherit" Edge="Edge.Start"
|
||||||
|
OnClick="@((e) => DrawerToggle())" />
|
||||||
|
My Application
|
||||||
|
<MudToggleIconButton @bind-Toggled="_rightToLeft" Icon="@Icons.Material.Filled.Language" Edge="Edge.End"
|
||||||
|
Color="Color.Inherit">
|
||||||
|
</MudToggleIconButton>
|
||||||
|
|
||||||
|
</MudAppBar>
|
||||||
|
<MudDrawer @bind-Open="@_drawerOpen">
|
||||||
|
<NavMenu />
|
||||||
|
</MudDrawer>
|
||||||
|
<MudMainContent>
|
||||||
|
@Body
|
||||||
|
</MudMainContent>
|
||||||
|
</MudLayout>
|
||||||
|
</MudRTLProvider> *@
|
||||||
|
|
||||||
|
@* @code {
|
||||||
|
bool _drawerOpen = true;
|
||||||
|
|
||||||
|
bool _rightToLeft = true;
|
||||||
|
|
||||||
|
void DrawerToggle()
|
||||||
|
{
|
||||||
|
_drawerOpen = !_drawerOpen;
|
||||||
|
}
|
||||||
|
} *@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@* <div class="page">
|
||||||
|
<div class="sidebar">
|
||||||
|
<NavMenu />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<div class="top-row px-4">
|
||||||
|
<a href="https://learn.microsoft.com/aspnet/core/" target="_blank">About</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<article class="content px-4">
|
||||||
|
@Body
|
||||||
|
</article>
|
||||||
|
</main>
|
||||||
|
</div> *@
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
@inherits LayoutComponentBase
|
||||||
|
@namespace LayoutLib
|
||||||
|
@using Common
|
||||||
|
|
||||||
|
<DaisyToastContainer />
|
||||||
|
<NavMenu1 />
|
||||||
|
@Body
|
||||||
|
|
||||||
|
|
||||||
|
@code {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@* <div class="page">
|
||||||
|
<div class="sidebar">
|
||||||
|
<NavMenu />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<div class="top-row px-4">
|
||||||
|
<a href="https://learn.microsoft.com/aspnet/core/" target="_blank">About</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<article class="content px-4">
|
||||||
|
@Body
|
||||||
|
</article>
|
||||||
|
</main>
|
||||||
|
</div> *@
|
||||||
@@ -0,0 +1,107 @@
|
|||||||
|
@using Microsoft.Extensions.Localization
|
||||||
|
@using Common
|
||||||
|
@inject IStringLocalizer<SharedRes> Loc
|
||||||
|
|
||||||
|
<header class="navbar w-full bg-transparent shadow-lg absolute z-30">
|
||||||
|
<nav class="navbar-start bg-transparent ">
|
||||||
|
<a class="btn btn-ghost text-xl font-bold text-accent">@Loc["MassTech"]</a>
|
||||||
|
</nav>
|
||||||
|
<div class="navbar-end lg:flex">
|
||||||
|
<div class="dropdown dropdown-end">
|
||||||
|
<div tabindex="0" role="button" class="btn btn-ghost lg:hidden text-accent">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24"
|
||||||
|
stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h8m-8 6h16" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<ul tabindex="0"
|
||||||
|
class="menu menu-sm navbar-end dropdown-content bg-transparent opacity-50 rounded-box z-1 mt-3 w-52 p-2 shadow-xl">
|
||||||
|
<li class="">
|
||||||
|
<a class="text-base font-bold text-accent" href="/">@Loc["Home"]</a>
|
||||||
|
</li>
|
||||||
|
<li class="">
|
||||||
|
<a class="text-base font-bold text-accent" href="/categories">@Loc["Categories"]</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="">
|
||||||
|
<a class="text-base font-bold text-accent" href="/lines">@Loc["Lines"]</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="">
|
||||||
|
<a class="text-base font-bold text-accent" href="/products">@Loc["Products"]</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="">
|
||||||
|
<a class="text-base font-bold text-accent" href="/about">@Loc["About"]</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li class="">
|
||||||
|
<a class="text-base font-bold text-accent" href="/contact">@Loc["Contact"]</a>
|
||||||
|
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li class="">
|
||||||
|
<LanguageSwitcher SupportedCultures='["en", "ar", "de", "es", "fr"]'></LanguageSwitcher>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<ul class="menu menu-horizontal hidden lg:flex px-1">
|
||||||
|
<li class="py-5">
|
||||||
|
<a class="text-base font-bold text-accent" href="/">@Loc["Home"]</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li class="py-5">
|
||||||
|
<details>
|
||||||
|
<summary class="text-base font-bold text-accent">@Loc["Search"]</summary>
|
||||||
|
<ul class="p-2 shadow-xl bg-transparent ">
|
||||||
|
<li class="">
|
||||||
|
<a class="text-base font-bold text-accent" href="/categories">@Loc["Categories"]</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="">
|
||||||
|
<a class="text-base font-bold text-accent" href="/lines">@Loc["Lines"]</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="">
|
||||||
|
<a class="text-base font-bold text-accent" href="/products">@Loc["Products"]</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</details>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="py-5">
|
||||||
|
<a class="text-base font-bold text-accent" href="/about">@Loc["About"]</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li class="py-5">
|
||||||
|
<a class="text-base font-bold text-accent" href="/contact">@Loc["Contact"]</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="py-5">
|
||||||
|
<LanguageSwitcher SupportedCultures='["en", "ar", "de", "es", "fr"]'></LanguageSwitcher>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@code {
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
using Microsoft.JSInterop;
|
||||||
|
|
||||||
|
namespace Layout;
|
||||||
|
|
||||||
|
// This class provides an example of how JavaScript functionality can be wrapped
|
||||||
|
// in a .NET class for easy consumption. The associated JavaScript module is
|
||||||
|
// loaded on demand when first needed.
|
||||||
|
//
|
||||||
|
// This class can be registered as scoped DI service and then injected into Blazor
|
||||||
|
// components for use.
|
||||||
|
|
||||||
|
public class ExampleJsInterop : IAsyncDisposable
|
||||||
|
{
|
||||||
|
private readonly Lazy<Task<IJSObjectReference>> moduleTask;
|
||||||
|
|
||||||
|
public ExampleJsInterop(IJSRuntime jsRuntime)
|
||||||
|
{
|
||||||
|
moduleTask = new (() => jsRuntime.InvokeAsync<IJSObjectReference>(
|
||||||
|
"import", "./_content/Layout/exampleJsInterop.js").AsTask());
|
||||||
|
}
|
||||||
|
|
||||||
|
public async ValueTask<string> Prompt(string message)
|
||||||
|
{
|
||||||
|
var module = await moduleTask.Value;
|
||||||
|
return await module.InvokeAsync<string>("showPrompt", message);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async ValueTask DisposeAsync()
|
||||||
|
{
|
||||||
|
if (moduleTask.IsValueCreated)
|
||||||
|
{
|
||||||
|
var module = await moduleTask.Value;
|
||||||
|
await module.DisposeAsync();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<SupportedPlatform Include="browser" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
|
||||||
|
<PackageReference Include="MudBlazor" Version="8.9.0" />
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="10.0.1" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="../../../Generic/Common/Common.RCL/Common.RCL.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace LayoutLib.RCL;
|
||||||
|
|
||||||
|
public class SharedRes
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
@using Microsoft.AspNetCore.Components.Web
|
||||||
|
@using Common
|
||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/bundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"background.png"},"Patterns":null},"Common.RCL.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Common.RCL.styles.css"},"Patterns":null},"Common.RCL.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fy9rjyaakk-{0}-dph6jvottp-dph6jvottp.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fiwgk79u47-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"css":{"Children":{"carousal.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/carousal.js"},"Patterns":null},"carousal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"32onbuj1wh-{0}-vnhftjewbd-vnhftjewbd.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/bundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"background.png"},"Patterns":null},"Common.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Common.styles.css"},"Patterns":null},"Common.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"css":{"Children":{"carousal.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/carousal.js"},"Patterns":null},"carousal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz"},"Patterns":null}},"Asset":null,"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.
@@ -0,0 +1,445 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v10.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v10.0": {
|
||||||
|
"LayoutLib.RCL/1.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Common.RCL": "1.0.0",
|
||||||
|
"Microsoft.AspNetCore.Components.Web": "10.0.1",
|
||||||
|
"MudBlazor": "8.9.0"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"LayoutLib.RCL.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Authorization/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Metadata": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Diagnostics": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Options": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.AspNetCore.Authorization.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Authorization": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.AspNetCore.Components.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Forms/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Components": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Validation": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Web/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Components": "10.0.1",
|
||||||
|
"Microsoft.AspNetCore.Components.Forms": "10.0.1",
|
||||||
|
"Microsoft.Extensions.DependencyInjection": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Primitives": "10.0.1",
|
||||||
|
"Microsoft.JSInterop": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.AspNetCore.Components.Web.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Metadata/10.0.1": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.AspNetCore.Metadata.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Configuration.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Primitives": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Configuration.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration.Abstractions/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Primitives": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration.Binder/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Configuration": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Configuration.Abstractions": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Diagnostics/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Configuration": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Diagnostics.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Diagnostics.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Options": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization/9.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Localization.Abstractions": "9.0.1",
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Options": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.Localization.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.124.61009"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization.Abstractions/9.0.1": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.124.61009"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Options/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Primitives": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Options.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Configuration.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Configuration.Binder": "10.0.1",
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Options": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Primitives": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Primitives/10.0.1": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Primitives.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Validation/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Options": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Validation.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.JSInterop/10.0.1": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.JSInterop.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"MudBlazor/8.9.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Components": "10.0.1",
|
||||||
|
"Microsoft.AspNetCore.Components.Web": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Localization": "9.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/MudBlazor.dll": {
|
||||||
|
"assemblyVersion": "8.9.0.0",
|
||||||
|
"fileVersion": "8.9.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Common.RCL/1.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Generic.CL": "1.0.0",
|
||||||
|
"Microsoft.AspNetCore.Components.Web": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"Common.RCL.dll": {
|
||||||
|
"assemblyVersion": "1.0.0.0",
|
||||||
|
"fileVersion": "1.0.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Generic.CL/1.0.0": {
|
||||||
|
"runtime": {
|
||||||
|
"Generic.CL.dll": {
|
||||||
|
"assemblyVersion": "1.0.0.0",
|
||||||
|
"fileVersion": "1.0.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"LayoutLib.RCL/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Authorization/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-Y9QE0gH4Q4cR7ZRToFju47c1MoeqxaLHdpzOviqD2TmnGGAeDMT9AV56j2BOVm5CsJAVyI/USxLYrkk2NVinZA==",
|
||||||
|
"path": "microsoft.aspnetcore.authorization/10.0.1",
|
||||||
|
"hashPath": "microsoft.aspnetcore.authorization.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-SbABcQ7soM9jC/HvPKrg/smQxsMD2gW9iHBRFtBiYTMSs5Vqh7+i47BTOe3OM3IGzly2FiOmeNHJhMYK7YFGWA==",
|
||||||
|
"path": "microsoft.aspnetcore.components/10.0.1",
|
||||||
|
"hashPath": "microsoft.aspnetcore.components.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Forms/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-aWUpLOz749gwMMaKe81tet+INC8nfskbauF2VO5Qr3lspj/l8S24zNLr95Bl8EwAizvBCNqwb8fPFU1dnn3WbA==",
|
||||||
|
"path": "microsoft.aspnetcore.components.forms/10.0.1",
|
||||||
|
"hashPath": "microsoft.aspnetcore.components.forms.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Web/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-hX74ijqAiUfIo6WpvLWignGYp7tkrRR3KRVBErwFSAcsiHeaCxGM81fYRXd9rf+gkFUNoKvcSxYyVZc2vFJVXg==",
|
||||||
|
"path": "microsoft.aspnetcore.components.web/10.0.1",
|
||||||
|
"hashPath": "microsoft.aspnetcore.components.web.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Metadata/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-6JrG03xROuR4mQIHGcT8OnaKVBoPLLbto5RicKQIUV3JIU7cZYKIWDAnk0SQcl7ziQr6R327D6QBOo+PbYnnrw==",
|
||||||
|
"path": "microsoft.aspnetcore.metadata/10.0.1",
|
||||||
|
"hashPath": "microsoft.aspnetcore.metadata.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-njoRekyMIK+smav8B6KL2YgIfUtlsRNuT7wvurpLW+m/hoRKVnoELk2YxnUnWRGScCd1rukLMxShwLqEOKowDg==",
|
||||||
|
"path": "microsoft.extensions.configuration/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.configuration.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration.Abstractions/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-kPlU11hql+L9RjrN2N9/0GcRcRcZrNFlLLjadasFWeBORT6pL6OE+RYRk90GGCyVGSxTK+e1/f3dsMj5zpFFiQ==",
|
||||||
|
"path": "microsoft.extensions.configuration.abstractions/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.configuration.abstractions.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration.Binder/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-Lp4CZIuTVXtlvkAnTq6QvMSW7+H62gX2cU2vdFxHQUxvrWTpi7LwYI3X+YAyIS0r12/p7gaosco7efIxL4yFNw==",
|
||||||
|
"path": "microsoft.extensions.configuration.binder/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.configuration.binder.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-zerXV0GAR9LCSXoSIApbWn+Dq1/T+6vbXMHGduq1LoVQRHT0BXsGQEau0jeLUBUcsoF/NaUT8ADPu8b+eNcIyg==",
|
||||||
|
"path": "microsoft.extensions.dependencyinjection/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.dependencyinjection.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-oIy8fQxxbUsSrrOvgBqlVgOeCtDmrcynnTG+FQufcUWBrwyPfwlUkCDB2vaiBeYPyT+20u9/HeuHeBf+H4F/8g==",
|
||||||
|
"path": "microsoft.extensions.dependencyinjection.abstractions/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Diagnostics/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-YaocqxscJLxLit0F5yq2XyB+9C7rSRfeTL7MJIl7XwaOoUO3i0EqfO2kmtjiRduYWw7yjcSINEApYZbzjau2gQ==",
|
||||||
|
"path": "microsoft.extensions.diagnostics/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.diagnostics.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-QMoMrkNpnQym5mpfdxfxpRDuqLpsOuztguFvzH9p+Ex+do+uLFoi7UkAsBO4e9/tNR3eMFraFf2fOAi2cp3jjA==",
|
||||||
|
"path": "microsoft.extensions.diagnostics.abstractions/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization/9.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-UgvX4Yb2T3tEsKT30ktZr0H7kTRPapCgEH0bdTwxiEGSdA39/hAQMvvb+vgHpqmevDU5+puyI9ujRkmmbF946w==",
|
||||||
|
"path": "microsoft.extensions.localization/9.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.localization.9.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization.Abstractions/9.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-CABog43lyaZQMjmlktuImCy6zmAzRBaXqN81uPaMQjlp//ISDVYItZPh6KWpWRF4MY/B67X5oDc3JTUpfdocZw==",
|
||||||
|
"path": "microsoft.extensions.localization.abstractions/9.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-YkmyiPIWAXVb+lPIrM0LE5bbtLOJkCiRTFiHpkVOvhI7uTvCfoOHLEN0LcsY56GpSD7NqX3gJNpsaDe87/B3zg==",
|
||||||
|
"path": "microsoft.extensions.logging.abstractions/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.logging.abstractions.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Options/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-G6VVwywpJI4XIobetGHwg7wDOYC2L2XBYdtskxLaKF/Ynb5QBwLl7Q//wxAR2aVCLkMpoQrjSP9VoORkyddsNQ==",
|
||||||
|
"path": "microsoft.extensions.options/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.options.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-pL78/Im7O3WmxHzlKUsWTYchKL881udU7E26gCD3T0+/tPhWVfjPwMzfN/MRKU7aoFYcOiqcG2k1QTlH5woWow==",
|
||||||
|
"path": "microsoft.extensions.options.configurationextensions/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.options.configurationextensions.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Primitives/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-DO8XrJkp5x4PddDuc/CH37yDBCs9BYN6ijlKyR3vMb55BP1Vwh90vOX8bNfnKxr5B2qEI3D8bvbY1fFbDveDHQ==",
|
||||||
|
"path": "microsoft.extensions.primitives/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.primitives.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Validation/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-5bcu9zWhgY8AZUN1ERNH0BQKFh10xlx4UrCh+0cDn7wB01QkrK4S6Jh45fCgEqmWJWVGqBS2g8MN0Lu/99Zgdg==",
|
||||||
|
"path": "microsoft.extensions.validation/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.validation.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.JSInterop/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-pTfoYBjs7HKmTEk9cNWcSySdTKT8USjviLgmMaSs/YA0+oONufKy9hqqZ5EE4CNy9y24SDDc9lerXfV7aiVfWA==",
|
||||||
|
"path": "microsoft.jsinterop/10.0.1",
|
||||||
|
"hashPath": "microsoft.jsinterop.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"MudBlazor/8.9.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-KdjXMXiSvl6uNr+S2YDhGI1aX/TULMQejQSniMlp6QTss35NKFrJyrMAmN082HNvOObuKdnTtLpntJ7rM5Op/A==",
|
||||||
|
"path": "mudblazor/8.9.0",
|
||||||
|
"hashPath": "mudblazor.8.9.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Common.RCL/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"Generic.CL/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/compressed/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/scopedcss/bundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/projectbundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/","/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/"],"Root":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"background.png"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ly0x8gpdve-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"LayoutLib.RCL.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"LayoutLib.RCL.styles.css"},"Patterns":null},"LayoutLib.RCL.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"44umfahe6v-{0}-4uc3imhjqu-4uc3imhjqu.gz"},"Patterns":null},"resources":{"Children":{"SharedRes.ar.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"resources/SharedRes.ar.json"},"Patterns":null},"SharedRes.ar.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4s4ng6c1jl-{0}-w52k902j3l-w52k902j3l.gz"},"Patterns":null},"SharedRes.en.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"resources/SharedRes.en.json"},"Patterns":null},"SharedRes.en.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1d086a33fb-{0}-z8qc8wrh10-z8qc8wrh10.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Common.RCL":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"background.png"},"Patterns":null},"Common.RCL.dph6jvottp.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Common.RCL.bundle.scp.css"},"Patterns":null},"Common.RCL.dph6jvottp.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"nyiqsnbdqh-{0}-dph6jvottp-dph6jvottp.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"fiwgk79u47-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"css":{"Children":{"carousal.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/carousal.js"},"Patterns":null},"carousal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"32onbuj1wh-{0}-vnhftjewbd-vnhftjewbd.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":3,"Pattern":"**","Depth":2}]},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
||||||
@@ -0,0 +1,445 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v10.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v10.0": {
|
||||||
|
"LayoutLib/1.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Common": "1.0.0",
|
||||||
|
"Microsoft.AspNetCore.Components.Web": "10.0.1",
|
||||||
|
"MudBlazor": "8.9.0"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"LayoutLib.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Authorization/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Metadata": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Diagnostics": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Options": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.AspNetCore.Authorization.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Authorization": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.AspNetCore.Components.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Forms/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Components": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Validation": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Web/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Components": "10.0.1",
|
||||||
|
"Microsoft.AspNetCore.Components.Forms": "10.0.1",
|
||||||
|
"Microsoft.Extensions.DependencyInjection": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Primitives": "10.0.1",
|
||||||
|
"Microsoft.JSInterop": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.AspNetCore.Components.Web.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Metadata/10.0.1": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.AspNetCore.Metadata.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Configuration.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Primitives": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Configuration.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration.Abstractions/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Primitives": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration.Binder/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Configuration": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Configuration.Abstractions": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Diagnostics/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Configuration": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Diagnostics.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Diagnostics.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Options": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization/9.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Localization.Abstractions": "9.0.1",
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Options": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.Localization.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.124.61009"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization.Abstractions/9.0.1": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.124.61009"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Options/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Primitives": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Options.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.Configuration.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Configuration.Binder": "10.0.1",
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Options": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Primitives": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Primitives/10.0.1": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Primitives.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Validation/10.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Options": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.Extensions.Validation.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.JSInterop/10.0.1": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net10.0/Microsoft.JSInterop.dll": {
|
||||||
|
"assemblyVersion": "10.0.0.0",
|
||||||
|
"fileVersion": "10.0.125.57005"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"MudBlazor/8.9.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Components": "10.0.1",
|
||||||
|
"Microsoft.AspNetCore.Components.Web": "10.0.1",
|
||||||
|
"Microsoft.Extensions.Localization": "9.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/MudBlazor.dll": {
|
||||||
|
"assemblyVersion": "8.9.0.0",
|
||||||
|
"fileVersion": "8.9.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Common/1.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Generic": "1.0.0",
|
||||||
|
"Microsoft.AspNetCore.Components.Web": "10.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"Common.dll": {
|
||||||
|
"assemblyVersion": "1.0.0.0",
|
||||||
|
"fileVersion": "1.0.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Generic/1.0.0": {
|
||||||
|
"runtime": {
|
||||||
|
"Generic.dll": {
|
||||||
|
"assemblyVersion": "1.0.0.0",
|
||||||
|
"fileVersion": "1.0.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"LayoutLib/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Authorization/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-Y9QE0gH4Q4cR7ZRToFju47c1MoeqxaLHdpzOviqD2TmnGGAeDMT9AV56j2BOVm5CsJAVyI/USxLYrkk2NVinZA==",
|
||||||
|
"path": "microsoft.aspnetcore.authorization/10.0.1",
|
||||||
|
"hashPath": "microsoft.aspnetcore.authorization.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-SbABcQ7soM9jC/HvPKrg/smQxsMD2gW9iHBRFtBiYTMSs5Vqh7+i47BTOe3OM3IGzly2FiOmeNHJhMYK7YFGWA==",
|
||||||
|
"path": "microsoft.aspnetcore.components/10.0.1",
|
||||||
|
"hashPath": "microsoft.aspnetcore.components.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Forms/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-aWUpLOz749gwMMaKe81tet+INC8nfskbauF2VO5Qr3lspj/l8S24zNLr95Bl8EwAizvBCNqwb8fPFU1dnn3WbA==",
|
||||||
|
"path": "microsoft.aspnetcore.components.forms/10.0.1",
|
||||||
|
"hashPath": "microsoft.aspnetcore.components.forms.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Web/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-hX74ijqAiUfIo6WpvLWignGYp7tkrRR3KRVBErwFSAcsiHeaCxGM81fYRXd9rf+gkFUNoKvcSxYyVZc2vFJVXg==",
|
||||||
|
"path": "microsoft.aspnetcore.components.web/10.0.1",
|
||||||
|
"hashPath": "microsoft.aspnetcore.components.web.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Metadata/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-6JrG03xROuR4mQIHGcT8OnaKVBoPLLbto5RicKQIUV3JIU7cZYKIWDAnk0SQcl7ziQr6R327D6QBOo+PbYnnrw==",
|
||||||
|
"path": "microsoft.aspnetcore.metadata/10.0.1",
|
||||||
|
"hashPath": "microsoft.aspnetcore.metadata.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-njoRekyMIK+smav8B6KL2YgIfUtlsRNuT7wvurpLW+m/hoRKVnoELk2YxnUnWRGScCd1rukLMxShwLqEOKowDg==",
|
||||||
|
"path": "microsoft.extensions.configuration/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.configuration.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration.Abstractions/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-kPlU11hql+L9RjrN2N9/0GcRcRcZrNFlLLjadasFWeBORT6pL6OE+RYRk90GGCyVGSxTK+e1/f3dsMj5zpFFiQ==",
|
||||||
|
"path": "microsoft.extensions.configuration.abstractions/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.configuration.abstractions.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Configuration.Binder/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-Lp4CZIuTVXtlvkAnTq6QvMSW7+H62gX2cU2vdFxHQUxvrWTpi7LwYI3X+YAyIS0r12/p7gaosco7efIxL4yFNw==",
|
||||||
|
"path": "microsoft.extensions.configuration.binder/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.configuration.binder.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-zerXV0GAR9LCSXoSIApbWn+Dq1/T+6vbXMHGduq1LoVQRHT0BXsGQEau0jeLUBUcsoF/NaUT8ADPu8b+eNcIyg==",
|
||||||
|
"path": "microsoft.extensions.dependencyinjection/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.dependencyinjection.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-oIy8fQxxbUsSrrOvgBqlVgOeCtDmrcynnTG+FQufcUWBrwyPfwlUkCDB2vaiBeYPyT+20u9/HeuHeBf+H4F/8g==",
|
||||||
|
"path": "microsoft.extensions.dependencyinjection.abstractions/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Diagnostics/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-YaocqxscJLxLit0F5yq2XyB+9C7rSRfeTL7MJIl7XwaOoUO3i0EqfO2kmtjiRduYWw7yjcSINEApYZbzjau2gQ==",
|
||||||
|
"path": "microsoft.extensions.diagnostics/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.diagnostics.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-QMoMrkNpnQym5mpfdxfxpRDuqLpsOuztguFvzH9p+Ex+do+uLFoi7UkAsBO4e9/tNR3eMFraFf2fOAi2cp3jjA==",
|
||||||
|
"path": "microsoft.extensions.diagnostics.abstractions/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization/9.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-UgvX4Yb2T3tEsKT30ktZr0H7kTRPapCgEH0bdTwxiEGSdA39/hAQMvvb+vgHpqmevDU5+puyI9ujRkmmbF946w==",
|
||||||
|
"path": "microsoft.extensions.localization/9.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.localization.9.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization.Abstractions/9.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-CABog43lyaZQMjmlktuImCy6zmAzRBaXqN81uPaMQjlp//ISDVYItZPh6KWpWRF4MY/B67X5oDc3JTUpfdocZw==",
|
||||||
|
"path": "microsoft.extensions.localization.abstractions/9.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-YkmyiPIWAXVb+lPIrM0LE5bbtLOJkCiRTFiHpkVOvhI7uTvCfoOHLEN0LcsY56GpSD7NqX3gJNpsaDe87/B3zg==",
|
||||||
|
"path": "microsoft.extensions.logging.abstractions/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.logging.abstractions.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Options/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-G6VVwywpJI4XIobetGHwg7wDOYC2L2XBYdtskxLaKF/Ynb5QBwLl7Q//wxAR2aVCLkMpoQrjSP9VoORkyddsNQ==",
|
||||||
|
"path": "microsoft.extensions.options/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.options.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-pL78/Im7O3WmxHzlKUsWTYchKL881udU7E26gCD3T0+/tPhWVfjPwMzfN/MRKU7aoFYcOiqcG2k1QTlH5woWow==",
|
||||||
|
"path": "microsoft.extensions.options.configurationextensions/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.options.configurationextensions.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Primitives/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-DO8XrJkp5x4PddDuc/CH37yDBCs9BYN6ijlKyR3vMb55BP1Vwh90vOX8bNfnKxr5B2qEI3D8bvbY1fFbDveDHQ==",
|
||||||
|
"path": "microsoft.extensions.primitives/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.primitives.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Validation/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-5bcu9zWhgY8AZUN1ERNH0BQKFh10xlx4UrCh+0cDn7wB01QkrK4S6Jh45fCgEqmWJWVGqBS2g8MN0Lu/99Zgdg==",
|
||||||
|
"path": "microsoft.extensions.validation/10.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.validation.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.JSInterop/10.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-pTfoYBjs7HKmTEk9cNWcSySdTKT8USjviLgmMaSs/YA0+oONufKy9hqqZ5EE4CNy9y24SDDc9lerXfV7aiVfWA==",
|
||||||
|
"path": "microsoft.jsinterop/10.0.1",
|
||||||
|
"hashPath": "microsoft.jsinterop.10.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"MudBlazor/8.9.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-KdjXMXiSvl6uNr+S2YDhGI1aX/TULMQejQSniMlp6QTss35NKFrJyrMAmN082HNvOObuKdnTtLpntJ7rM5Op/A==",
|
||||||
|
"path": "mudblazor/8.9.0",
|
||||||
|
"hashPath": "mudblazor.8.9.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Common/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"Generic/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/bundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/projectbundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/","/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/"],"Root":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"background.png"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"j230ay6ibu-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"LayoutLib.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"LayoutLib.styles.css"},"Patterns":null},"LayoutLib.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"o5dp2pr57p-{0}-5phnxoj3fu-5phnxoj3fu.gz"},"Patterns":null},"resources":{"Children":{"SharedRes.ar.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"resources/SharedRes.ar.json"},"Patterns":null},"SharedRes.ar.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rx6wnqzng0-{0}-w52k902j3l-w52k902j3l.gz"},"Patterns":null},"SharedRes.en.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"resources/SharedRes.en.json"},"Patterns":null},"SharedRes.en.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zamg5qeycn-{0}-z8qc8wrh10-z8qc8wrh10.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Common":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"background.png"},"Patterns":null},"Common.dyev8wf6eo.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Common.bundle.scp.css"},"Patterns":null},"Common.dyev8wf6eo.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"css":{"Children":{"carousal.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/carousal.js"},"Patterns":null},"carousal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":3,"Pattern":"**","Depth":2}]},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"ContentRoots":["/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/","/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/"],"Root":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"background.png"},"Patterns":null},"Common.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Common.styles.css"},"Patterns":null},"Common.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"eonzp9tba4-dyev8wf6eo.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"azr3gilc9r-luzdqbu196.gz"},"Patterns":null},"css":{"Children":{"carousal.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/carousal.js"},"Patterns":null},"carousal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"uhkfeye1o1-vnhftjewbd.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,285 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v9.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v9.0": {
|
||||||
|
"Layout/1.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Components.Web": "9.0.5",
|
||||||
|
"MudBlazor": "8.9.0"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"Layout.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Authorization/9.0.5": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Metadata": "9.0.5",
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions": "9.0.5",
|
||||||
|
"Microsoft.Extensions.Options": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.AspNetCore.Authorization.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.22904"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components/9.0.5": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Authorization": "9.0.5",
|
||||||
|
"Microsoft.AspNetCore.Components.Analyzers": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.AspNetCore.Components.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.22904"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Analyzers/9.0.5": {},
|
||||||
|
"Microsoft.AspNetCore.Components.Forms/9.0.5": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Components": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.22904"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Web/9.0.5": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Components": "9.0.5",
|
||||||
|
"Microsoft.AspNetCore.Components.Forms": "9.0.5",
|
||||||
|
"Microsoft.Extensions.DependencyInjection": "9.0.5",
|
||||||
|
"Microsoft.Extensions.Primitives": "9.0.5",
|
||||||
|
"Microsoft.JSInterop": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.22904"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Metadata/9.0.5": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.AspNetCore.Metadata.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.22904"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection/9.0.5": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.21509"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.5": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.21509"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization/9.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.5",
|
||||||
|
"Microsoft.Extensions.Localization.Abstractions": "9.0.1",
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions": "9.0.5",
|
||||||
|
"Microsoft.Extensions.Options": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.Localization.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.124.61009"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization.Abstractions/9.0.1": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.124.61009"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions/9.0.5": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.21509"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Options/9.0.5": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.5",
|
||||||
|
"Microsoft.Extensions.Primitives": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.Options.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.21509"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Primitives/9.0.5": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.Primitives.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.21509"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.JSInterop/9.0.5": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.JSInterop.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.22904"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"MudBlazor/8.9.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Components": "9.0.5",
|
||||||
|
"Microsoft.AspNetCore.Components.Web": "9.0.5",
|
||||||
|
"Microsoft.Extensions.Localization": "9.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/MudBlazor.dll": {
|
||||||
|
"assemblyVersion": "8.9.0.0",
|
||||||
|
"fileVersion": "8.9.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"Layout/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Authorization/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-HPd+7PG+nMZSP13bTJuM5+q0vdzoBtjoBUMP9iuUGwG/kFHkeBOZ9QrZuSHHGmz/IgYdLbqbdJGEykSI5biIPw==",
|
||||||
|
"path": "microsoft.aspnetcore.authorization/9.0.5",
|
||||||
|
"hashPath": "microsoft.aspnetcore.authorization.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-qwA9bx7nWayh1ogWe1H13vyGL64pNjHrukHmnZ9WZbQPtHeY9QTuXkvF/Uue0tzGbxChBf9v2LH5+KeVaRJIqw==",
|
||||||
|
"path": "microsoft.aspnetcore.components/9.0.5",
|
||||||
|
"hashPath": "microsoft.aspnetcore.components.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Analyzers/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-u9dQP0/bjkTVHFHVBV+8TYpBVerjbFfvD3nwwOfaoJ8VmyCHoBFbD8m4nxV+rfu+jVLe2FQF4skjHZLIjjFbyQ==",
|
||||||
|
"path": "microsoft.aspnetcore.components.analyzers/9.0.5",
|
||||||
|
"hashPath": "microsoft.aspnetcore.components.analyzers.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Forms/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-KsAPGDQIa3SpP9yaIDrlETHpqprtmbbotdbGfGJ9aVvn/vi72cCTUVzpWOXIXgstVCb0ZQ940o/wfHKxBZEQMg==",
|
||||||
|
"path": "microsoft.aspnetcore.components.forms/9.0.5",
|
||||||
|
"hashPath": "microsoft.aspnetcore.components.forms.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Web/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-llh2dh9rR9JcnAMqvbijc9BzEnVhloQwKF8Kvfw73N2tJMnUJoxF3C9Ln1sao+nkZo3IpUuUu3k2czLOpS3NRQ==",
|
||||||
|
"path": "microsoft.aspnetcore.components.web/9.0.5",
|
||||||
|
"hashPath": "microsoft.aspnetcore.components.web.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Metadata/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-E4lbYlraZfZLvWgliUEtrqKt42++Yh9mpGKLyGHPGo1FpbZrXF/x+fOg5dbe22bnuosgWn3cj30566XKdwiodw==",
|
||||||
|
"path": "microsoft.aspnetcore.metadata/9.0.5",
|
||||||
|
"hashPath": "microsoft.aspnetcore.metadata.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-N1Mn0T/tUBPoLL+Fzsp+VCEtneUhhxc1//Dx3BeuQ8AX+XrMlYCfnp2zgpEXnTCB7053CLdiqVWPZ7mEX6MPjg==",
|
||||||
|
"path": "microsoft.extensions.dependencyinjection/9.0.5",
|
||||||
|
"hashPath": "microsoft.extensions.dependencyinjection.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-cjnRtsEAzU73aN6W7vkWy8Phj5t3Xm78HSqgrbh/O4Q9SK/yN73wZVa21QQY6amSLQRQ/M8N+koGnY6PuvKQsw==",
|
||||||
|
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.5",
|
||||||
|
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization/9.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-UgvX4Yb2T3tEsKT30ktZr0H7kTRPapCgEH0bdTwxiEGSdA39/hAQMvvb+vgHpqmevDU5+puyI9ujRkmmbF946w==",
|
||||||
|
"path": "microsoft.extensions.localization/9.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.localization.9.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization.Abstractions/9.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-CABog43lyaZQMjmlktuImCy6zmAzRBaXqN81uPaMQjlp//ISDVYItZPh6KWpWRF4MY/B67X5oDc3JTUpfdocZw==",
|
||||||
|
"path": "microsoft.extensions.localization.abstractions/9.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-pP1PADCrIxMYJXxFmTVbAgEU7GVpjK5i0/tyfU9DiE0oXQy3JWQaOVgCkrCiePLgS8b5sghM3Fau3EeHiVWbCg==",
|
||||||
|
"path": "microsoft.extensions.logging.abstractions/9.0.5",
|
||||||
|
"hashPath": "microsoft.extensions.logging.abstractions.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Options/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-vPdJQU8YLOUSSK8NL0RmwcXJr2E0w8xH559PGQl4JYsglgilZr9LZnqV2zdgk+XR05+kuvhBEZKoDVd46o7NqA==",
|
||||||
|
"path": "microsoft.extensions.options/9.0.5",
|
||||||
|
"hashPath": "microsoft.extensions.options.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Primitives/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-b4OAv1qE1C9aM+ShWJu3rlo/WjDwa/I30aIPXqDWSKXTtKl1Wwh6BZn+glH5HndGVVn3C6ZAPQj5nv7/7HJNBQ==",
|
||||||
|
"path": "microsoft.extensions.primitives/9.0.5",
|
||||||
|
"hashPath": "microsoft.extensions.primitives.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.JSInterop/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-ji4fQKbUUZiq3lmzVBMvp15VgBtEyfR51NrmEjo6qnD97Jf1R6C6QkSMjwUO8bw5NZIDRtmPCYurypB3W5AMEg==",
|
||||||
|
"path": "microsoft.jsinterop/9.0.5",
|
||||||
|
"hashPath": "microsoft.jsinterop.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"MudBlazor/8.9.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-KdjXMXiSvl6uNr+S2YDhGI1aX/TULMQejQSniMlp6QTss35NKFrJyrMAmN082HNvOObuKdnTtLpntJ7rM5Op/A==",
|
||||||
|
"path": "mudblazor/8.9.0",
|
||||||
|
"hashPath": "mudblazor.8.9.0.nupkg.sha512"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1 @@
|
|||||||
|
{"ContentRoots":["/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/","/run/media/yla/Dataa/Programming/AllProjects/MainProgram/UI/Libs/Layouts/Layout/wwwroot/","/run/media/yla/Dataa/Programming/AllProjects/MainProgram/UI/Libs/Layouts/Layout/obj/Debug/net9.0/scopedcss/bundle/","/run/media/yla/Dataa/Programming/AllProjects/MainProgram/UI/Libs/Layouts/Layout/obj/Debug/net9.0/compressed/"],"Root":{"Children":{"_content":{"Children":{"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"tzxjg6is5z-sowobu9fea.gz"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"0wz98yz2xy-b8x8f7e52z.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"background.png":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"background.png"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"exampleJsInterop.js"},"Patterns":null},"Layout.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Layout.styles.css"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"5i1g5ll3ec-luzdqbu196.gz"},"Patterns":null},"Layout.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"rjhiux40iu-h822i75eif.gz"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":1,"Pattern":"**","Depth":0}]}}
|
||||||
@@ -0,0 +1,316 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v9.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v9.0": {
|
||||||
|
"LayoutLib/1.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Common": "1.0.0",
|
||||||
|
"Microsoft.AspNetCore.Components.Web": "9.0.5",
|
||||||
|
"MudBlazor": "8.9.0"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"LayoutLib.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Authorization/9.0.5": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Metadata": "9.0.5",
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions": "9.0.5",
|
||||||
|
"Microsoft.Extensions.Options": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.AspNetCore.Authorization.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.22904"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components/9.0.5": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Authorization": "9.0.5",
|
||||||
|
"Microsoft.AspNetCore.Components.Analyzers": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.AspNetCore.Components.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.22904"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Analyzers/9.0.5": {},
|
||||||
|
"Microsoft.AspNetCore.Components.Forms/9.0.5": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Components": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.22904"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Web/9.0.5": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Components": "9.0.5",
|
||||||
|
"Microsoft.AspNetCore.Components.Forms": "9.0.5",
|
||||||
|
"Microsoft.Extensions.DependencyInjection": "9.0.5",
|
||||||
|
"Microsoft.Extensions.Primitives": "9.0.5",
|
||||||
|
"Microsoft.JSInterop": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.22904"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Metadata/9.0.5": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.AspNetCore.Metadata.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.22904"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection/9.0.5": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.21509"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.5": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.21509"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization/9.0.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.5",
|
||||||
|
"Microsoft.Extensions.Localization.Abstractions": "9.0.1",
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions": "9.0.5",
|
||||||
|
"Microsoft.Extensions.Options": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.Localization.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.124.61009"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization.Abstractions/9.0.1": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.124.61009"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions/9.0.5": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.21509"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Options/9.0.5": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.5",
|
||||||
|
"Microsoft.Extensions.Primitives": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.Options.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.21509"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Primitives/9.0.5": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.Extensions.Primitives.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.21509"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.JSInterop/9.0.5": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/Microsoft.JSInterop.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.525.22904"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"MudBlazor/8.9.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.Components": "9.0.5",
|
||||||
|
"Microsoft.AspNetCore.Components.Web": "9.0.5",
|
||||||
|
"Microsoft.Extensions.Localization": "9.0.1"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net9.0/MudBlazor.dll": {
|
||||||
|
"assemblyVersion": "8.9.0.0",
|
||||||
|
"fileVersion": "8.9.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Common/1.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Generic": "1.0.0",
|
||||||
|
"Microsoft.AspNetCore.Components.Web": "9.0.5"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"Common.dll": {
|
||||||
|
"assemblyVersion": "1.0.0.0",
|
||||||
|
"fileVersion": "1.0.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Generic/1.0.0": {
|
||||||
|
"runtime": {
|
||||||
|
"Generic.dll": {
|
||||||
|
"assemblyVersion": "1.0.0.0",
|
||||||
|
"fileVersion": "1.0.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"LayoutLib/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Authorization/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-HPd+7PG+nMZSP13bTJuM5+q0vdzoBtjoBUMP9iuUGwG/kFHkeBOZ9QrZuSHHGmz/IgYdLbqbdJGEykSI5biIPw==",
|
||||||
|
"path": "microsoft.aspnetcore.authorization/9.0.5",
|
||||||
|
"hashPath": "microsoft.aspnetcore.authorization.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-qwA9bx7nWayh1ogWe1H13vyGL64pNjHrukHmnZ9WZbQPtHeY9QTuXkvF/Uue0tzGbxChBf9v2LH5+KeVaRJIqw==",
|
||||||
|
"path": "microsoft.aspnetcore.components/9.0.5",
|
||||||
|
"hashPath": "microsoft.aspnetcore.components.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Analyzers/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-u9dQP0/bjkTVHFHVBV+8TYpBVerjbFfvD3nwwOfaoJ8VmyCHoBFbD8m4nxV+rfu+jVLe2FQF4skjHZLIjjFbyQ==",
|
||||||
|
"path": "microsoft.aspnetcore.components.analyzers/9.0.5",
|
||||||
|
"hashPath": "microsoft.aspnetcore.components.analyzers.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Forms/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-KsAPGDQIa3SpP9yaIDrlETHpqprtmbbotdbGfGJ9aVvn/vi72cCTUVzpWOXIXgstVCb0ZQ940o/wfHKxBZEQMg==",
|
||||||
|
"path": "microsoft.aspnetcore.components.forms/9.0.5",
|
||||||
|
"hashPath": "microsoft.aspnetcore.components.forms.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Components.Web/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-llh2dh9rR9JcnAMqvbijc9BzEnVhloQwKF8Kvfw73N2tJMnUJoxF3C9Ln1sao+nkZo3IpUuUu3k2czLOpS3NRQ==",
|
||||||
|
"path": "microsoft.aspnetcore.components.web/9.0.5",
|
||||||
|
"hashPath": "microsoft.aspnetcore.components.web.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.AspNetCore.Metadata/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-E4lbYlraZfZLvWgliUEtrqKt42++Yh9mpGKLyGHPGo1FpbZrXF/x+fOg5dbe22bnuosgWn3cj30566XKdwiodw==",
|
||||||
|
"path": "microsoft.aspnetcore.metadata/9.0.5",
|
||||||
|
"hashPath": "microsoft.aspnetcore.metadata.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-N1Mn0T/tUBPoLL+Fzsp+VCEtneUhhxc1//Dx3BeuQ8AX+XrMlYCfnp2zgpEXnTCB7053CLdiqVWPZ7mEX6MPjg==",
|
||||||
|
"path": "microsoft.extensions.dependencyinjection/9.0.5",
|
||||||
|
"hashPath": "microsoft.extensions.dependencyinjection.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-cjnRtsEAzU73aN6W7vkWy8Phj5t3Xm78HSqgrbh/O4Q9SK/yN73wZVa21QQY6amSLQRQ/M8N+koGnY6PuvKQsw==",
|
||||||
|
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.5",
|
||||||
|
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization/9.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-UgvX4Yb2T3tEsKT30ktZr0H7kTRPapCgEH0bdTwxiEGSdA39/hAQMvvb+vgHpqmevDU5+puyI9ujRkmmbF946w==",
|
||||||
|
"path": "microsoft.extensions.localization/9.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.localization.9.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Localization.Abstractions/9.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-CABog43lyaZQMjmlktuImCy6zmAzRBaXqN81uPaMQjlp//ISDVYItZPh6KWpWRF4MY/B67X5oDc3JTUpfdocZw==",
|
||||||
|
"path": "microsoft.extensions.localization.abstractions/9.0.1",
|
||||||
|
"hashPath": "microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-pP1PADCrIxMYJXxFmTVbAgEU7GVpjK5i0/tyfU9DiE0oXQy3JWQaOVgCkrCiePLgS8b5sghM3Fau3EeHiVWbCg==",
|
||||||
|
"path": "microsoft.extensions.logging.abstractions/9.0.5",
|
||||||
|
"hashPath": "microsoft.extensions.logging.abstractions.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Options/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-vPdJQU8YLOUSSK8NL0RmwcXJr2E0w8xH559PGQl4JYsglgilZr9LZnqV2zdgk+XR05+kuvhBEZKoDVd46o7NqA==",
|
||||||
|
"path": "microsoft.extensions.options/9.0.5",
|
||||||
|
"hashPath": "microsoft.extensions.options.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.Primitives/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-b4OAv1qE1C9aM+ShWJu3rlo/WjDwa/I30aIPXqDWSKXTtKl1Wwh6BZn+glH5HndGVVn3C6ZAPQj5nv7/7HJNBQ==",
|
||||||
|
"path": "microsoft.extensions.primitives/9.0.5",
|
||||||
|
"hashPath": "microsoft.extensions.primitives.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.JSInterop/9.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-ji4fQKbUUZiq3lmzVBMvp15VgBtEyfR51NrmEjo6qnD97Jf1R6C6QkSMjwUO8bw5NZIDRtmPCYurypB3W5AMEg==",
|
||||||
|
"path": "microsoft.jsinterop/9.0.5",
|
||||||
|
"hashPath": "microsoft.jsinterop.9.0.5.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"MudBlazor/8.9.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-KdjXMXiSvl6uNr+S2YDhGI1aX/TULMQejQSniMlp6QTss35NKFrJyrMAmN082HNvOObuKdnTtLpntJ7rM5Op/A==",
|
||||||
|
"path": "mudblazor/8.9.0",
|
||||||
|
"hashPath": "mudblazor.8.9.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Common/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"Generic/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"ContentRoots":["/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/wwwroot/","/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net9.0/compressed/","/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net9.0/scopedcss/bundle/","/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/","/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/","/home/yla/.nuget/packages/mudblazor/8.9.0/staticwebassets/"],"Root":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"background.png"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8pznqeuxgm-luzdqbu196.gz"},"Patterns":null},"LayoutLib.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"LayoutLib.styles.css"},"Patterns":null},"LayoutLib.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9yjcmi6iat-5phnxoj3fu.gz"},"Patterns":null},"_content":{"Children":{"Common":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"background.png"},"Patterns":null},"Common.dyev8wf6eo.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Common.bundle.scp.css"},"Patterns":null},"Common.dyev8wf6eo.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"qc5h9nywsh-dyev8wf6eo.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"azr3gilc9r-luzdqbu196.gz"},"Patterns":null},"css":{"Children":{"carousal.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/carousal.js"},"Patterns":null},"carousal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"uhkfeye1o1-vnhftjewbd.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":3,"Pattern":"**","Depth":2}]},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-sowobu9fea.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-b8x8f7e52z.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
namespace Microsoft.CodeAnalysis
|
||||||
|
{
|
||||||
|
internal sealed partial class EmbeddedAttribute : global::System.Attribute
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -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("LayoutLib")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+89d8c7f2868cdc25655d2a003c6dc8ab9e106e46")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("LayoutLib")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("LayoutLib")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
92284eaa4718406d93060bba7cf8e405ebc2855655116c45aa50fafc6f6ad0c1
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.MudDebugAnalyzer =
|
||||||
|
build_property.MudAllowedAttributePattern =
|
||||||
|
build_property.MudAllowedAttributeList =
|
||||||
|
build_property.TargetFramework = net10.0
|
||||||
|
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||||
|
build_property.TargetFrameworkVersion = v10.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows,browser
|
||||||
|
build_property.RootNamespace = LayoutLib
|
||||||
|
build_property.RootNamespace = LayoutLib
|
||||||
|
build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.RazorLangVersion = 9.0
|
||||||
|
build_property.SupportLocalizedComponentNames =
|
||||||
|
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||||
|
build_property.MSBuildProjectDirectory = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib
|
||||||
|
build_property._RazorSourceGeneratorDebug =
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 10.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/Components/AdminLayout.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9BZG1pbkxheW91dC5yYXpvcg==
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/Components/AdminSidebar.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9BZG1pblNpZGViYXIucmF6b3I=
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/Components/EmptyLayout.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9FbXB0eUxheW91dC5yYXpvcg==
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/Components/FormalLayout.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9Gb3JtYWxMYXlvdXQucmF6b3I=
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/Components/MainLayout.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NYWluTGF5b3V0LnJhem9y
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/Components/NavMenu1.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9OYXZNZW51MS5yYXpvcg==
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/_Imports.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/Component1.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50MS5yYXpvcg==
|
||||||
|
build_metadata.AdditionalFiles.CssScope = b-9t81rh4z7r
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using Microsoft.Extensions.Validation.Embedded;
|
||||||
|
global using System;
|
||||||
|
global using System.Collections.Generic;
|
||||||
|
global using System.IO;
|
||||||
|
global using System.Linq;
|
||||||
|
global using System.Net.Http;
|
||||||
|
global using System.Threading;
|
||||||
|
global using System.Threading.Tasks;
|
||||||
@@ -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("LayoutLib.RCL")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+206dfeabd74212fb6442b2ac195b5904b0472cb7")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("LayoutLib.RCL")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("LayoutLib.RCL")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
452ce32875901a67e0586dd53f6a0d5d7489b4db7c566af443d83d43e1c4c922
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.MudDebugAnalyzer =
|
||||||
|
build_property.MudAllowedAttributePattern =
|
||||||
|
build_property.MudAllowedAttributeList =
|
||||||
|
build_property.TargetFramework = net10.0
|
||||||
|
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||||
|
build_property.TargetFrameworkVersion = v10.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows,browser
|
||||||
|
build_property.RootNamespace = LayoutLib.RCL
|
||||||
|
build_property.RootNamespace = LayoutLib.RCL
|
||||||
|
build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.RazorLangVersion = 9.0
|
||||||
|
build_property.SupportLocalizedComponentNames =
|
||||||
|
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||||
|
build_property.MSBuildProjectDirectory = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL
|
||||||
|
build_property._RazorSourceGeneratorDebug =
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 10.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/Components/AdminLayout.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9BZG1pbkxheW91dC5yYXpvcg==
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/Components/AdminSidebar.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9BZG1pblNpZGViYXIucmF6b3I=
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/Components/EmptyLayout.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9FbXB0eUxheW91dC5yYXpvcg==
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/Components/FormalLayout.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9Gb3JtYWxMYXlvdXQucmF6b3I=
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/Components/MainLayout.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NYWluTGF5b3V0LnJhem9y
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/Components/NavMenu1.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9OYXZNZW51MS5yYXpvcg==
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/_Imports.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/Component1.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50MS5yYXpvcg==
|
||||||
|
build_metadata.AdditionalFiles.CssScope = b-jc6b0a6phe
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using Microsoft.Extensions.Validation.Embedded;
|
||||||
|
global using System;
|
||||||
|
global using System.Collections.Generic;
|
||||||
|
global using System.IO;
|
||||||
|
global using System.Linq;
|
||||||
|
global using System.Net.Http;
|
||||||
|
global using System.Threading;
|
||||||
|
global using System.Threading.Tasks;
|
||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
cd90bf3d6d5322ef560a060dc0aeb1490f825f82d9fda85111d6f2df521a6067
|
||||||
@@ -0,0 +1,46 @@
|
|||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/bin/Debug/net10.0/Common.RCL.staticwebassets.runtime.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/bin/Debug/net10.0/Common.RCL.staticwebassets.endpoints.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/bin/Debug/net10.0/LayoutLib.RCL.staticwebassets.runtime.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/bin/Debug/net10.0/LayoutLib.RCL.staticwebassets.endpoints.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/bin/Debug/net10.0/LayoutLib.RCL.deps.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/bin/Debug/net10.0/LayoutLib.RCL.dll
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/bin/Debug/net10.0/LayoutLib.RCL.pdb
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/bin/Debug/net10.0/Common.RCL.dll
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/bin/Debug/net10.0/Generic.CL.dll
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/bin/Debug/net10.0/Common.RCL.pdb
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/bin/Debug/net10.0/Generic.CL.pdb
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/EmbeddedAttribute.cs
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/ValidatableTypeAttribute.cs
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/LayoutLib.RCL.csproj.AssemblyReference.cache
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/rpswa.dswa.cache.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/LayoutLib.RCL.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/LayoutLib.RCL.AssemblyInfoInputs.cache
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/LayoutLib.RCL.AssemblyInfo.cs
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/LayoutLib.RCL.csproj.CoreCompileInputs.cache
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/rjimswa.dswa.cache.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/scopedcss/Component1.razor.rz.scp.css
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/scopedcss/bundle/LayoutLib.RCL.styles.css
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/scopedcss/projectbundle/LayoutLib.RCL.bundle.scp.css
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/compressed/ly0x8gpdve-{0}-luzdqbu196-luzdqbu196.gz
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/compressed/4s4ng6c1jl-{0}-w52k902j3l-w52k902j3l.gz
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/compressed/1d086a33fb-{0}-z8qc8wrh10-z8qc8wrh10.gz
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/compressed/44umfahe6v-{0}-4uc3imhjqu-4uc3imhjqu.gz
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/compressed/p6ggwg176d-{0}-hnhbkm6n9q-hnhbkm6n9q.gz
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/staticwebassets.build.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/staticwebassets.build.json.cache
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/staticwebassets.development.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/staticwebassets.build.endpoints.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/swae.build.ex.cache
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/staticwebassets/msbuild.LayoutLib.RCL.Microsoft.AspNetCore.StaticWebAssets.props
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/staticwebassets/msbuild.LayoutLib.RCL.Microsoft.AspNetCore.StaticWebAssetEndpoints.props
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/staticwebassets/msbuild.build.LayoutLib.RCL.props
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.LayoutLib.RCL.props
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.LayoutLib.RCL.props
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/staticwebassets.pack.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/LayoutLi.6B53A92E.Up2Date
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/LayoutLib.RCL.dll
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/refint/LayoutLib.RCL.dll
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/LayoutLib.RCL.pdb
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/obj/Debug/net10.0/ref/LayoutLib.RCL.dll
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
2a7f69ff36267aae5cd370e7fdf4f5d1e4cad0036da76c15313f24823ce53c54
|
||||||
@@ -0,0 +1,92 @@
|
|||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/Common.staticwebassets.runtime.json
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/Common.staticwebassets.endpoints.json
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/LayoutLib.staticwebassets.runtime.json
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/LayoutLib.staticwebassets.endpoints.json
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/LayoutLib.deps.json
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/LayoutLib.dll
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/LayoutLib.pdb
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/Common.dll
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/Generic.dll
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/Common.pdb
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/Generic.pdb
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/EmbeddedAttribute.cs
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/ValidatableTypeAttribute.cs
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.csproj.AssemblyReference.cache
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/rpswa.dswa.cache.json
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.AssemblyInfoInputs.cache
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.AssemblyInfo.cs
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.csproj.CoreCompileInputs.cache
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/rjimswa.dswa.cache.json
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/Component1.razor.rz.scp.css
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/bundle/LayoutLib.styles.css
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/projectbundle/LayoutLib.bundle.scp.css
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/j230ay6ibu-{0}-luzdqbu196-luzdqbu196.gz
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/o5dp2pr57p-{0}-5phnxoj3fu-5phnxoj3fu.gz
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/s5p096awx1-{0}-wql9u47zkx-wql9u47zkx.gz
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets.build.json
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets.build.json.cache
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets.development.json
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets.build.endpoints.json
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/swae.build.ex.cache
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets/msbuild.LayoutLib.Microsoft.AspNetCore.StaticWebAssets.props
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets/msbuild.LayoutLib.Microsoft.AspNetCore.StaticWebAssetEndpoints.props
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets/msbuild.build.LayoutLib.props
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.LayoutLib.props
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.LayoutLib.props
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets.pack.json
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.csproj.Up2Date
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.dll
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/refint/LayoutLib.dll
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.pdb
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/ref/LayoutLib.dll
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/lkkot1bgnl-{0}-w52k902j3l-w52k902j3l.gz
|
||||||
|
/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/wlwwkyajss-{0}-z8qc8wrh10-z8qc8wrh10.gz
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/Common.staticwebassets.runtime.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/Common.staticwebassets.endpoints.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/LayoutLib.staticwebassets.runtime.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/LayoutLib.staticwebassets.endpoints.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/LayoutLib.deps.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/LayoutLib.dll
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/LayoutLib.pdb
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/Common.dll
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/Generic.dll
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/Common.pdb
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/bin/Debug/net10.0/Generic.pdb
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/EmbeddedAttribute.cs
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/ValidatableTypeAttribute.cs
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.csproj.AssemblyReference.cache
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/rpswa.dswa.cache.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.AssemblyInfoInputs.cache
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.AssemblyInfo.cs
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.csproj.CoreCompileInputs.cache
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/rjimswa.dswa.cache.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/Component1.razor.rz.scp.css
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/bundle/LayoutLib.styles.css
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/scopedcss/projectbundle/LayoutLib.bundle.scp.css
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/j230ay6ibu-{0}-luzdqbu196-luzdqbu196.gz
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/rx6wnqzng0-{0}-w52k902j3l-w52k902j3l.gz
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/zamg5qeycn-{0}-z8qc8wrh10-z8qc8wrh10.gz
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/o5dp2pr57p-{0}-5phnxoj3fu-5phnxoj3fu.gz
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/compressed/s5p096awx1-{0}-wql9u47zkx-wql9u47zkx.gz
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets.build.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets.build.json.cache
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets.development.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets.build.endpoints.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/swae.build.ex.cache
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets/msbuild.LayoutLib.Microsoft.AspNetCore.StaticWebAssets.props
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets/msbuild.LayoutLib.Microsoft.AspNetCore.StaticWebAssetEndpoints.props
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets/msbuild.build.LayoutLib.props
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.LayoutLib.props
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.LayoutLib.props
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/staticwebassets.pack.json
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.csproj.Up2Date
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.dll
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/refint/LayoutLib.dll
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/LayoutLib.pdb
|
||||||
|
/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/obj/Debug/net10.0/ref/LayoutLib.dll
|
||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,9 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
namespace Microsoft.Extensions.Validation.Embedded
|
||||||
|
{
|
||||||
|
[global::Microsoft.CodeAnalysis.EmbeddedAttribute]
|
||||||
|
[global::System.AttributeUsage(global::System.AttributeTargets.Class)]
|
||||||
|
internal sealed class ValidatableTypeAttribute : global::System.Attribute
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
{"GlobalPropertiesHash":"lP7hdz/r+owcqVLjY2HevfWGBfcJVoL0a1STIgfs1S4=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["3iPLbGIUW8BnU8AbY1UGyZpVrVJrfFRGDdo7IoSUGqU=","Oe6oglh2OcQ8dmTe/1X5KHugPLVQyXXbxMc4mTCywDc=","SUgLJ8vtcu3JQJDzvj8vcH3nCdh5EmaA5warRL1hL1s=","Fb12fnjPXA9eaA8mYdF3XXs89bq1sZEH8wHEpixFyGc="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"GlobalPropertiesHash":"SjPQfCo/rKYqPRXTqtHr4GtZNbeksLhJ/4KorMSAR/A=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["DlPVpOByp7gftk5g\u002B5puJQp6pMexVK15otTY9OpoYd0=","4JxWCiiiDvOhFPv7\u002Bern4Alfqrb6WVb6VyMLz1Pzmis=","B5P9EV1WPVRlb6E3///2RXexFGoiqgLmE5OF7pzmC/g=","h/GUPw389OwrXYxTd\u002Boz9kKj7mpkDu7kXN/\u002B1mswIUw=","xaAD/0Mtajpt0GOoA7Gu\u002B4piEd8lC4HlxD9L3g\u002B4Kbw=","Ji6AuvZ1QvZLAZJatD2anr6FTeuAcJMeboRSYZnzdtM=","HtzFexFtNNr7S6C177ZPR7uXQFt10s4xtwhtEHCtrRQ=","JqY5qbz0eOcCVerot2fOax6u\u002By8wmofFAV0T70e/MX4=","wMCDDm156zBC4a1fgxPXrYd5iCHnXCgVIQ085mtm\u002B5E=","r1hR7rMFcIIv3rzpgikdRQv0Iat\u002BHX2PcowVg6f1DmY=","pZjcrk8w4Dm5asr0S0QHtzWmMnmDvkcmDZV9dkcJySM=","UHEchCkVDSXtKUN7CPuleQwj8S7wq\u002BB28z7GyKGPgPM=","sunp\u002BuuoErLuTxzDaO5JgIenWfyyILah3pWmNL5KLKw="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"GlobalPropertiesHash":"y7ghwRFoCURL8WjqBJwVjlsehUGLkRhseXr7iyoMDOI=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["DlPVpOByp7gftk5g\u002B5puJQp6pMexVK15otTY9OpoYd0=","4JxWCiiiDvOhFPv7\u002Bern4Alfqrb6WVb6VyMLz1Pzmis=","B5P9EV1WPVRlb6E3///2RXexFGoiqgLmE5OF7pzmC/g=","h/GUPw389OwrXYxTd\u002Boz9kKj7mpkDu7kXN/\u002B1mswIUw=","xaAD/0Mtajpt0GOoA7Gu\u002B4piEd8lC4HlxD9L3g\u002B4Kbw=","Ji6AuvZ1QvZLAZJatD2anr6FTeuAcJMeboRSYZnzdtM=","HtzFexFtNNr7S6C177ZPR7uXQFt10s4xtwhtEHCtrRQ=","JqY5qbz0eOcCVerot2fOax6u\u002By8wmofFAV0T70e/MX4=","wMCDDm156zBC4a1fgxPXrYd5iCHnXCgVIQ085mtm\u002B5E=","r1hR7rMFcIIv3rzpgikdRQv0Iat\u002BHX2PcowVg6f1DmY=","pZjcrk8w4Dm5asr0S0QHtzWmMnmDvkcmDZV9dkcJySM=","UHEchCkVDSXtKUN7CPuleQwj8S7wq\u002BB28z7GyKGPgPM=","sunp\u002BuuoErLuTxzDaO5JgIenWfyyILah3pWmNL5KLKw="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"GlobalPropertiesHash":"3HJDF4sZIGrtdleV2nUgb3GKFKx5Q30w8KfKanASYMY=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["DlPVpOByp7gftk5g\u002B5puJQp6pMexVK15otTY9OpoYd0=","4JxWCiiiDvOhFPv7\u002Bern4Alfqrb6WVb6VyMLz1Pzmis=","B5P9EV1WPVRlb6E3///2RXexFGoiqgLmE5OF7pzmC/g=","h/GUPw389OwrXYxTd\u002Boz9kKj7mpkDu7kXN/\u002B1mswIUw=","xaAD/0Mtajpt0GOoA7Gu\u002B4piEd8lC4HlxD9L3g\u002B4Kbw=","Ji6AuvZ1QvZLAZJatD2anr6FTeuAcJMeboRSYZnzdtM=","HtzFexFtNNr7S6C177ZPR7uXQFt10s4xtwhtEHCtrRQ=","JqY5qbz0eOcCVerot2fOax6u\u002By8wmofFAV0T70e/MX4=","wMCDDm156zBC4a1fgxPXrYd5iCHnXCgVIQ085mtm\u002B5E=","r1hR7rMFcIIv3rzpgikdRQv0Iat\u002BHX2PcowVg6f1DmY=","pZjcrk8w4Dm5asr0S0QHtzWmMnmDvkcmDZV9dkcJySM=","UHEchCkVDSXtKUN7CPuleQwj8S7wq\u002BB28z7GyKGPgPM="],"CachedAssets":{"DlPVpOByp7gftk5g\u002B5puJQp6pMexVK15otTY9OpoYd0=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/wwwroot/background.png","SourceId":"LayoutLib.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/wwwroot/","BasePath":"_content/LayoutLib.RCL","RelativePath":"background#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"x2rx4ajns0","Integrity":"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/background.png","FileLength":378,"LastWriteTime":"2025-08-23T11:32:12.3480878+00:00"},"4JxWCiiiDvOhFPv7\u002Bern4Alfqrb6WVb6VyMLz1Pzmis=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/wwwroot/exampleJsInterop.js","SourceId":"LayoutLib.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/wwwroot/","BasePath":"_content/LayoutLib.RCL","RelativePath":"exampleJsInterop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"luzdqbu196","Integrity":"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/exampleJsInterop.js","FileLength":241,"LastWriteTime":"2025-08-23T11:32:12.3710883+00:00"},"B5P9EV1WPVRlb6E3///2RXexFGoiqgLmE5OF7pzmC/g=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/wwwroot/resources/SharedRes.ar.json","SourceId":"LayoutLib.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/wwwroot/","BasePath":"_content/LayoutLib.RCL","RelativePath":"resources/SharedRes.ar#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"w52k902j3l","Integrity":"9ND4R7FT1nAHrO0GsokCbnVyTN812HoZq6LOLTTI3hM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/resources/SharedRes.ar.json","FileLength":258,"LastWriteTime":"2026-01-21T14:44:12.1978346+00:00"},"h/GUPw389OwrXYxTd\u002Boz9kKj7mpkDu7kXN/\u002B1mswIUw=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/wwwroot/resources/SharedRes.en.json","SourceId":"LayoutLib.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Layouts/LayoutLib/LayoutLib.RCL/wwwroot/","BasePath":"_content/LayoutLib.RCL","RelativePath":"resources/SharedRes.en#[.{fingerprint}]?.json","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z8qc8wrh10","Integrity":"44f0YMMkZiMG4L510FizmT1i\u002BukZmQWFmhHYTBL\u002BRdg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/resources/SharedRes.en.json","FileLength":204,"LastWriteTime":"2026-01-24T19:32:51.1492605+00:00"}},"CachedCopyCandidates":{}}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
.my-component[b-jc6b0a6phe] {
|
||||||
|
border: 2px dashed red;
|
||||||
|
padding: 1em;
|
||||||
|
margin: 1em 0;
|
||||||
|
background-image: url('background.png');
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
@import '_content/Common.RCL/Common.RCL.dph6jvottp.bundle.scp.css';
|
||||||
|
|
||||||
|
/* _content/LayoutLib.RCL/Component1.razor.rz.scp.css */
|
||||||
|
.my-component[b-jc6b0a6phe] {
|
||||||
|
border: 2px dashed red;
|
||||||
|
padding: 1em;
|
||||||
|
margin: 1em 0;
|
||||||
|
background-image: url('background.png');
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
@import '_content/Common/Common.dyev8wf6eo.bundle.scp.css';
|
||||||
|
|
||||||
|
/* _content/LayoutLib/Component1.razor.rz.scp.css */
|
||||||
|
.my-component[b-9t81rh4z7r] {
|
||||||
|
border: 2px dashed red;
|
||||||
|
padding: 1em;
|
||||||
|
margin: 1em 0;
|
||||||
|
background-image: url('background.png');
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
/* _content/LayoutLib.RCL/Component1.razor.rz.scp.css */
|
||||||
|
.my-component[b-jc6b0a6phe] {
|
||||||
|
border: 2px dashed red;
|
||||||
|
padding: 1em;
|
||||||
|
margin: 1em 0;
|
||||||
|
background-image: url('background.png');
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
/* _content/LayoutLib/Component1.razor.rz.scp.css */
|
||||||
|
.my-component[b-9t81rh4z7r] {
|
||||||
|
border: 2px dashed red;
|
||||||
|
padding: 1em;
|
||||||
|
margin: 1em 0;
|
||||||
|
background-image: url('background.png');
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user