add files
This commit is contained in:
21
Components/App.razor
Normal file
21
Components/App.razor
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<base href="/" />
|
||||||
|
<link rel="stylesheet" href="@Assets["lib/bootstrap/dist/css/bootstrap.min.css"]" />
|
||||||
|
<link rel="stylesheet" href="@Assets["app.css"]" />
|
||||||
|
<link rel="stylesheet" href="@Assets["respdemo.styles.css"]" />
|
||||||
|
<ImportMap />
|
||||||
|
<link rel="icon" type="image/png" href="favicon.png" />
|
||||||
|
<HeadOutlet />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<Routes />
|
||||||
|
<script src="_framework/blazor.web.js"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
23
Components/Layout/MainLayout.razor
Normal file
23
Components/Layout/MainLayout.razor
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
@inherits LayoutComponentBase
|
||||||
|
|
||||||
|
<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>
|
||||||
|
|
||||||
|
<div id="blazor-error-ui" data-nosnippet>
|
||||||
|
An unhandled error has occurred.
|
||||||
|
<a href="." class="reload">Reload</a>
|
||||||
|
<span class="dismiss">🗙</span>
|
||||||
|
</div>
|
||||||
98
Components/Layout/MainLayout.razor.css
Normal file
98
Components/Layout/MainLayout.razor.css
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
.page {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar {
|
||||||
|
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row {
|
||||||
|
background-color: #f7f7f7;
|
||||||
|
border-bottom: 1px solid #d6d5d5;
|
||||||
|
justify-content: flex-end;
|
||||||
|
height: 3.5rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row ::deep a, .top-row ::deep .btn-link {
|
||||||
|
white-space: nowrap;
|
||||||
|
margin-left: 1.5rem;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row ::deep a:first-child {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 640.98px) {
|
||||||
|
.top-row {
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row ::deep a, .top-row ::deep .btn-link {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 641px) {
|
||||||
|
.page {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar {
|
||||||
|
width: 250px;
|
||||||
|
height: 100vh;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row {
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row.auth ::deep a:first-child {
|
||||||
|
flex: 1;
|
||||||
|
text-align: right;
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row, article {
|
||||||
|
padding-left: 2rem !important;
|
||||||
|
padding-right: 1.5rem !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#blazor-error-ui {
|
||||||
|
color-scheme: light only;
|
||||||
|
background: lightyellow;
|
||||||
|
bottom: 0;
|
||||||
|
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: none;
|
||||||
|
left: 0;
|
||||||
|
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#blazor-error-ui .dismiss {
|
||||||
|
cursor: pointer;
|
||||||
|
position: absolute;
|
||||||
|
right: 0.75rem;
|
||||||
|
top: 0.5rem;
|
||||||
|
}
|
||||||
30
Components/Layout/NavMenu.razor
Normal file
30
Components/Layout/NavMenu.razor
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
<div class="top-row ps-3 navbar navbar-dark">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<a class="navbar-brand" href="">respdemo</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<input type="checkbox" title="Navigation menu" class="navbar-toggler" />
|
||||||
|
|
||||||
|
<div class="nav-scrollable" onclick="document.querySelector('.navbar-toggler').click()">
|
||||||
|
<nav class="nav flex-column">
|
||||||
|
<div class="nav-item px-3">
|
||||||
|
<NavLink class="nav-link" href="" Match="NavLinkMatch.All">
|
||||||
|
<span class="bi bi-house-door-fill-nav-menu" aria-hidden="true"></span> Home
|
||||||
|
</NavLink>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="nav-item px-3">
|
||||||
|
<NavLink class="nav-link" href="counter">
|
||||||
|
<span class="bi bi-plus-square-fill-nav-menu" aria-hidden="true"></span> Counter
|
||||||
|
</NavLink>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="nav-item px-3">
|
||||||
|
<NavLink class="nav-link" href="weather">
|
||||||
|
<span class="bi bi-list-nested-nav-menu" aria-hidden="true"></span> Weather
|
||||||
|
</NavLink>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
|
||||||
105
Components/Layout/NavMenu.razor.css
Normal file
105
Components/Layout/NavMenu.razor.css
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
.navbar-toggler {
|
||||||
|
appearance: none;
|
||||||
|
cursor: pointer;
|
||||||
|
width: 3.5rem;
|
||||||
|
height: 2.5rem;
|
||||||
|
color: white;
|
||||||
|
position: absolute;
|
||||||
|
top: 0.5rem;
|
||||||
|
right: 1rem;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-toggler:checked {
|
||||||
|
background-color: rgba(255, 255, 255, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row {
|
||||||
|
min-height: 3.5rem;
|
||||||
|
background-color: rgba(0,0,0,0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand {
|
||||||
|
font-size: 1.1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi {
|
||||||
|
display: inline-block;
|
||||||
|
position: relative;
|
||||||
|
width: 1.25rem;
|
||||||
|
height: 1.25rem;
|
||||||
|
margin-right: 0.75rem;
|
||||||
|
top: -1px;
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi-house-door-fill-nav-menu {
|
||||||
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi-plus-square-fill-nav-menu {
|
||||||
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi-list-nested-nav-menu {
|
||||||
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
padding-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item:first-of-type {
|
||||||
|
padding-top: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item:last-of-type {
|
||||||
|
padding-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item ::deep .nav-link {
|
||||||
|
color: #d7d7d7;
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
border-radius: 4px;
|
||||||
|
height: 3rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
line-height: 3rem;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item ::deep a.active {
|
||||||
|
background-color: rgba(255,255,255,0.37);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item ::deep .nav-link:hover {
|
||||||
|
background-color: rgba(255,255,255,0.1);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-scrollable {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-toggler:checked ~ .nav-scrollable {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 641px) {
|
||||||
|
.navbar-toggler {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-scrollable {
|
||||||
|
/* Never collapse the sidebar for wide screens */
|
||||||
|
display: block;
|
||||||
|
|
||||||
|
/* Allow sidebar to scroll for tall menus */
|
||||||
|
height: calc(100vh - 3.5rem);
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
19
Components/Pages/Counter.razor
Normal file
19
Components/Pages/Counter.razor
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
@page "/counter"
|
||||||
|
@rendermode InteractiveServer
|
||||||
|
|
||||||
|
<PageTitle>Counter</PageTitle>
|
||||||
|
|
||||||
|
<h1>Counter</h1>
|
||||||
|
|
||||||
|
<p role="status">Current count: @currentCount</p>
|
||||||
|
|
||||||
|
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>
|
||||||
|
|
||||||
|
@code {
|
||||||
|
private int currentCount = 0;
|
||||||
|
|
||||||
|
private void IncrementCount()
|
||||||
|
{
|
||||||
|
currentCount++;
|
||||||
|
}
|
||||||
|
}
|
||||||
36
Components/Pages/Error.razor
Normal file
36
Components/Pages/Error.razor
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
@page "/Error"
|
||||||
|
@using System.Diagnostics
|
||||||
|
|
||||||
|
<PageTitle>Error</PageTitle>
|
||||||
|
|
||||||
|
<h1 class="text-danger">Error.</h1>
|
||||||
|
<h2 class="text-danger">An error occurred while processing your request.</h2>
|
||||||
|
|
||||||
|
@if (ShowRequestId)
|
||||||
|
{
|
||||||
|
<p>
|
||||||
|
<strong>Request ID:</strong> <code>@RequestId</code>
|
||||||
|
</p>
|
||||||
|
}
|
||||||
|
|
||||||
|
<h3>Development Mode</h3>
|
||||||
|
<p>
|
||||||
|
Swapping to <strong>Development</strong> environment will display more detailed information about the error that occurred.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<strong>The Development environment shouldn't be enabled for deployed applications.</strong>
|
||||||
|
It can result in displaying sensitive information from exceptions to end users.
|
||||||
|
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>
|
||||||
|
and restarting the app.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
@code{
|
||||||
|
[CascadingParameter]
|
||||||
|
private HttpContext? HttpContext { get; set; }
|
||||||
|
|
||||||
|
private string? RequestId { get; set; }
|
||||||
|
private bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
||||||
|
|
||||||
|
protected override void OnInitialized() =>
|
||||||
|
RequestId = Activity.Current?.Id ?? HttpContext?.TraceIdentifier;
|
||||||
|
}
|
||||||
7
Components/Pages/Home.razor
Normal file
7
Components/Pages/Home.razor
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
@page "/"
|
||||||
|
|
||||||
|
<PageTitle>Home</PageTitle>
|
||||||
|
|
||||||
|
<h1>Hello, Respellion!!</h1>
|
||||||
|
|
||||||
|
Welcome to your new demo environment.
|
||||||
64
Components/Pages/Weather.razor
Normal file
64
Components/Pages/Weather.razor
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
@page "/weather"
|
||||||
|
@attribute [StreamRendering]
|
||||||
|
|
||||||
|
<PageTitle>Weather</PageTitle>
|
||||||
|
|
||||||
|
<h1>Weather</h1>
|
||||||
|
|
||||||
|
<p>This component demonstrates showing data.</p>
|
||||||
|
|
||||||
|
@if (forecasts == null)
|
||||||
|
{
|
||||||
|
<p><em>Loading...</em></p>
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
<table class="table">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Date</th>
|
||||||
|
<th aria-label="Temperature in Celsius">Temp. (C)</th>
|
||||||
|
<th aria-label="Temperature in Farenheit">Temp. (F)</th>
|
||||||
|
<th>Summary</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
@foreach (var forecast in forecasts)
|
||||||
|
{
|
||||||
|
<tr>
|
||||||
|
<td>@forecast.Date.ToShortDateString()</td>
|
||||||
|
<td>@forecast.TemperatureC</td>
|
||||||
|
<td>@forecast.TemperatureF</td>
|
||||||
|
<td>@forecast.Summary</td>
|
||||||
|
</tr>
|
||||||
|
}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
}
|
||||||
|
|
||||||
|
@code {
|
||||||
|
private WeatherForecast[]? forecasts;
|
||||||
|
|
||||||
|
protected override async Task OnInitializedAsync()
|
||||||
|
{
|
||||||
|
// Simulate asynchronous loading to demonstrate streaming rendering
|
||||||
|
await Task.Delay(500);
|
||||||
|
|
||||||
|
var startDate = DateOnly.FromDateTime(DateTime.Now);
|
||||||
|
var summaries = new[] { "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" };
|
||||||
|
forecasts = Enumerable.Range(1, 5).Select(index => new WeatherForecast
|
||||||
|
{
|
||||||
|
Date = startDate.AddDays(index),
|
||||||
|
TemperatureC = Random.Shared.Next(-20, 55),
|
||||||
|
Summary = summaries[Random.Shared.Next(summaries.Length)]
|
||||||
|
}).ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
private class WeatherForecast
|
||||||
|
{
|
||||||
|
public DateOnly Date { get; set; }
|
||||||
|
public int TemperatureC { get; set; }
|
||||||
|
public string? Summary { get; set; }
|
||||||
|
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
|
||||||
|
}
|
||||||
|
}
|
||||||
6
Components/Routes.razor
Normal file
6
Components/Routes.razor
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<Router AppAssembly="typeof(Program).Assembly">
|
||||||
|
<Found Context="routeData">
|
||||||
|
<RouteView RouteData="routeData" DefaultLayout="typeof(Layout.MainLayout)" />
|
||||||
|
<FocusOnNavigate RouteData="routeData" Selector="h1" />
|
||||||
|
</Found>
|
||||||
|
</Router>
|
||||||
10
Components/_Imports.razor
Normal file
10
Components/_Imports.razor
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
@using System.Net.Http
|
||||||
|
@using System.Net.Http.Json
|
||||||
|
@using Microsoft.AspNetCore.Components.Forms
|
||||||
|
@using Microsoft.AspNetCore.Components.Routing
|
||||||
|
@using Microsoft.AspNetCore.Components.Web
|
||||||
|
@using static Microsoft.AspNetCore.Components.Web.RenderMode
|
||||||
|
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
||||||
|
@using Microsoft.JSInterop
|
||||||
|
@using respdemo
|
||||||
|
@using respdemo.Components
|
||||||
28
Program.cs
Normal file
28
Program.cs
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
using respdemo.Components;
|
||||||
|
|
||||||
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
|
// Add services to the container.
|
||||||
|
builder.Services.AddRazorComponents()
|
||||||
|
.AddInteractiveServerComponents();
|
||||||
|
|
||||||
|
var app = builder.Build();
|
||||||
|
|
||||||
|
// Configure the HTTP request pipeline.
|
||||||
|
if (!app.Environment.IsDevelopment())
|
||||||
|
{
|
||||||
|
app.UseExceptionHandler("/Error", createScopeForErrors: true);
|
||||||
|
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
||||||
|
app.UseHsts();
|
||||||
|
}
|
||||||
|
|
||||||
|
app.UseHttpsRedirection();
|
||||||
|
|
||||||
|
|
||||||
|
app.UseAntiforgery();
|
||||||
|
|
||||||
|
app.MapStaticAssets();
|
||||||
|
app.MapRazorComponents<App>()
|
||||||
|
.AddInteractiveServerRenderMode();
|
||||||
|
|
||||||
|
app.Run();
|
||||||
23
Properties/launchSettings.json
Normal file
23
Properties/launchSettings.json
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://json.schemastore.org/launchsettings.json",
|
||||||
|
"profiles": {
|
||||||
|
"http": {
|
||||||
|
"commandName": "Project",
|
||||||
|
"dotnetRunMessages": true,
|
||||||
|
"launchBrowser": true,
|
||||||
|
"applicationUrl": "http://localhost:5200",
|
||||||
|
"environmentVariables": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"https": {
|
||||||
|
"commandName": "Project",
|
||||||
|
"dotnetRunMessages": true,
|
||||||
|
"launchBrowser": true,
|
||||||
|
"applicationUrl": "https://localhost:7187;http://localhost:5200",
|
||||||
|
"environmentVariables": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
8
appsettings.Development.json
Normal file
8
appsettings.Development.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
9
appsettings.json
Normal file
9
appsettings.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*"
|
||||||
|
}
|
||||||
8
bin/Debug/net9.0/appsettings.Development.json
Normal file
8
bin/Debug/net9.0/appsettings.Development.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
9
bin/Debug/net9.0/appsettings.json
Normal file
9
bin/Debug/net9.0/appsettings.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*"
|
||||||
|
}
|
||||||
BIN
bin/Debug/net9.0/respdemo
Executable file
BIN
bin/Debug/net9.0/respdemo
Executable file
Binary file not shown.
23
bin/Debug/net9.0/respdemo.deps.json
Normal file
23
bin/Debug/net9.0/respdemo.deps.json
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v9.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v9.0": {
|
||||||
|
"respdemo/1.0.0": {
|
||||||
|
"runtime": {
|
||||||
|
"respdemo.dll": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"respdemo/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
bin/Debug/net9.0/respdemo.dll
Normal file
BIN
bin/Debug/net9.0/respdemo.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/respdemo.pdb
Normal file
BIN
bin/Debug/net9.0/respdemo.pdb
Normal file
Binary file not shown.
19
bin/Debug/net9.0/respdemo.runtimeconfig.json
Normal file
19
bin/Debug/net9.0/respdemo.runtimeconfig.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net9.0",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "9.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.AspNetCore.App",
|
||||||
|
"version": "9.0.0"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configProperties": {
|
||||||
|
"System.GC.Server": true,
|
||||||
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
1
bin/Debug/net9.0/respdemo.staticwebassets.endpoints.json
Normal file
1
bin/Debug/net9.0/respdemo.staticwebassets.endpoints.json
Normal file
File diff suppressed because one or more lines are too long
1
bin/Debug/net9.0/respdemo.staticwebassets.runtime.json
Normal file
1
bin/Debug/net9.0/respdemo.staticwebassets.runtime.json
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
|
||||||
BIN
obj/Debug/net9.0/apphost
Executable file
BIN
obj/Debug/net9.0/apphost
Executable file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/037g8fh3ke-d7shbmvgxk.gz
Normal file
BIN
obj/Debug/net9.0/compressed/037g8fh3ke-d7shbmvgxk.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/2g9lmdzet4-kbrnm935zg.gz
Normal file
BIN
obj/Debug/net9.0/compressed/2g9lmdzet4-kbrnm935zg.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/2koeu3fciv-ausgxo2sd3.gz
Normal file
BIN
obj/Debug/net9.0/compressed/2koeu3fciv-ausgxo2sd3.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/3i7qpn4al8-iovd86k7lj.gz
Normal file
BIN
obj/Debug/net9.0/compressed/3i7qpn4al8-iovd86k7lj.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/4z63nzlnrp-k8d9w2qqmf.gz
Normal file
BIN
obj/Debug/net9.0/compressed/4z63nzlnrp-k8d9w2qqmf.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/66jrx6gzqf-46ein0sx1k.gz
Normal file
BIN
obj/Debug/net9.0/compressed/66jrx6gzqf-46ein0sx1k.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/6sr5n83anu-493y06b0oq.gz
Normal file
BIN
obj/Debug/net9.0/compressed/6sr5n83anu-493y06b0oq.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/6xi37ejj44-cosvhxvwiu.gz
Normal file
BIN
obj/Debug/net9.0/compressed/6xi37ejj44-cosvhxvwiu.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/748zzbyqt0-fvhpjtyr6v.gz
Normal file
BIN
obj/Debug/net9.0/compressed/748zzbyqt0-fvhpjtyr6v.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/7a35yehanc-s35ty4nyc5.gz
Normal file
BIN
obj/Debug/net9.0/compressed/7a35yehanc-s35ty4nyc5.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/8fki17p4ja-notf2xhcfb.gz
Normal file
BIN
obj/Debug/net9.0/compressed/8fki17p4ja-notf2xhcfb.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/8jf5yyukwr-tdbxkamptv.gz
Normal file
BIN
obj/Debug/net9.0/compressed/8jf5yyukwr-tdbxkamptv.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/8kc49kakn1-erw9l3u2r3.gz
Normal file
BIN
obj/Debug/net9.0/compressed/8kc49kakn1-erw9l3u2r3.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/axxu02vsef-vr1egmr9el.gz
Normal file
BIN
obj/Debug/net9.0/compressed/axxu02vsef-vr1egmr9el.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/b6a3au9ilv-nvvlpmu67g.gz
Normal file
BIN
obj/Debug/net9.0/compressed/b6a3au9ilv-nvvlpmu67g.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/b98i31988i-xb8jqj7wjw.gz
Normal file
BIN
obj/Debug/net9.0/compressed/b98i31988i-xb8jqj7wjw.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/bn01ov5hau-h1s4sie4z3.gz
Normal file
BIN
obj/Debug/net9.0/compressed/bn01ov5hau-h1s4sie4z3.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/by0r86twzo-6pdc2jztkx.gz
Normal file
BIN
obj/Debug/net9.0/compressed/by0r86twzo-6pdc2jztkx.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/c5prr2r1ln-6cfz1n2cew.gz
Normal file
BIN
obj/Debug/net9.0/compressed/c5prr2r1ln-6cfz1n2cew.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/c9vm9svgyf-khv3u5hwcm.gz
Normal file
BIN
obj/Debug/net9.0/compressed/c9vm9svgyf-khv3u5hwcm.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/e8jdu2gpm9-0j3bgjxly4.gz
Normal file
BIN
obj/Debug/net9.0/compressed/e8jdu2gpm9-0j3bgjxly4.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/f2k6f65nl9-bqjiyaj88i.gz
Normal file
BIN
obj/Debug/net9.0/compressed/f2k6f65nl9-bqjiyaj88i.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/f5mar9tjyf-ee0r1s7dh0.gz
Normal file
BIN
obj/Debug/net9.0/compressed/f5mar9tjyf-ee0r1s7dh0.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/f7jgd74xpp-b7pk76d08c.gz
Normal file
BIN
obj/Debug/net9.0/compressed/f7jgd74xpp-b7pk76d08c.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/g7u53r61af-jd9uben2k1.gz
Normal file
BIN
obj/Debug/net9.0/compressed/g7u53r61af-jd9uben2k1.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/gqymwasvd1-jj8uyg4cgr.gz
Normal file
BIN
obj/Debug/net9.0/compressed/gqymwasvd1-jj8uyg4cgr.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/hbuievj6f6-xb8jqj7wjw.gz
Normal file
BIN
obj/Debug/net9.0/compressed/hbuievj6f6-xb8jqj7wjw.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/hf4hb8fdaw-pk9g2wxc8p.gz
Normal file
BIN
obj/Debug/net9.0/compressed/hf4hb8fdaw-pk9g2wxc8p.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/hrda8l9wx5-khy4lop6wu.gz
Normal file
BIN
obj/Debug/net9.0/compressed/hrda8l9wx5-khy4lop6wu.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/l3kp9j1m7j-c2oey78nd0.gz
Normal file
BIN
obj/Debug/net9.0/compressed/l3kp9j1m7j-c2oey78nd0.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/mhdx42c2bm-v0zj4ognzu.gz
Normal file
BIN
obj/Debug/net9.0/compressed/mhdx42c2bm-v0zj4ognzu.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/n7eaculdoo-ft3s53vfgj.gz
Normal file
BIN
obj/Debug/net9.0/compressed/n7eaculdoo-ft3s53vfgj.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/nn5jn2s15d-lcd1t2u6c8.gz
Normal file
BIN
obj/Debug/net9.0/compressed/nn5jn2s15d-lcd1t2u6c8.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/nogezqfyxg-rzd6atqjts.gz
Normal file
BIN
obj/Debug/net9.0/compressed/nogezqfyxg-rzd6atqjts.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/o2b252r68h-hrwsygsryq.gz
Normal file
BIN
obj/Debug/net9.0/compressed/o2b252r68h-hrwsygsryq.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/o972miqg0a-y7v9cxd14o.gz
Normal file
BIN
obj/Debug/net9.0/compressed/o972miqg0a-y7v9cxd14o.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/p76mz8idx4-ub07r2b239.gz
Normal file
BIN
obj/Debug/net9.0/compressed/p76mz8idx4-ub07r2b239.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/q9ycvp2kwz-pj5nd1wqec.gz
Normal file
BIN
obj/Debug/net9.0/compressed/q9ycvp2kwz-pj5nd1wqec.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/r3uuen6u52-37tfw0ft22.gz
Normal file
BIN
obj/Debug/net9.0/compressed/r3uuen6u52-37tfw0ft22.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/sc67q2aysw-c2jlpeoesf.gz
Normal file
BIN
obj/Debug/net9.0/compressed/sc67q2aysw-c2jlpeoesf.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/tbb9gfxnjk-dxx9fxp4il.gz
Normal file
BIN
obj/Debug/net9.0/compressed/tbb9gfxnjk-dxx9fxp4il.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/tnh8dpb5r3-r4e9w2rdcm.gz
Normal file
BIN
obj/Debug/net9.0/compressed/tnh8dpb5r3-r4e9w2rdcm.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/uq7nhdzr2l-aexeepp0ev.gz
Normal file
BIN
obj/Debug/net9.0/compressed/uq7nhdzr2l-aexeepp0ev.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/xbc9lfnip6-06098lyss8.gz
Normal file
BIN
obj/Debug/net9.0/compressed/xbc9lfnip6-06098lyss8.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/yay1v5ungw-63fj8s7r0e.gz
Normal file
BIN
obj/Debug/net9.0/compressed/yay1v5ungw-63fj8s7r0e.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/z6kqn339x9-j5mq2jizvt.gz
Normal file
BIN
obj/Debug/net9.0/compressed/z6kqn339x9-j5mq2jizvt.gz
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/compressed/znc6glfa0c-fsbi9cje9m.gz
Normal file
BIN
obj/Debug/net9.0/compressed/znc6glfa0c-fsbi9cje9m.gz
Normal file
Binary file not shown.
1
obj/Debug/net9.0/rbcswa.dswa.cache.json
Normal file
1
obj/Debug/net9.0/rbcswa.dswa.cache.json
Normal file
File diff suppressed because one or more lines are too long
BIN
obj/Debug/net9.0/ref/respdemo.dll
Normal file
BIN
obj/Debug/net9.0/ref/respdemo.dll
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/refint/respdemo.dll
Normal file
BIN
obj/Debug/net9.0/refint/respdemo.dll
Normal file
Binary file not shown.
22
obj/Debug/net9.0/respdemo.AssemblyInfo.cs
Normal file
22
obj/Debug/net9.0/respdemo.AssemblyInfo.cs
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("respdemo")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8ca56d075567cd59d34c147860c8d6e0d227ba53")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("respdemo")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("respdemo")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
1
obj/Debug/net9.0/respdemo.AssemblyInfoInputs.cache
Normal file
1
obj/Debug/net9.0/respdemo.AssemblyInfoInputs.cache
Normal file
@@ -0,0 +1 @@
|
|||||||
|
5611379ece74fa832249341d9e1a9f96eb93e6a1d507eae67507f85280901f91
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net9.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb = true
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = respdemo
|
||||||
|
build_property.RootNamespace = respdemo
|
||||||
|
build_property.ProjectDir = /home/leon/repo/respdemo/
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.RazorLangVersion = 9.0
|
||||||
|
build_property.SupportLocalizedComponentNames =
|
||||||
|
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||||
|
build_property.MSBuildProjectDirectory = /home/leon/repo/respdemo
|
||||||
|
build_property._RazorSourceGeneratorDebug =
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 9.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
|
|
||||||
|
[/home/leon/repo/respdemo/Components/App.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9BcHAucmF6b3I=
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/home/leon/repo/respdemo/Components/Pages/Counter.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9Db3VudGVyLnJhem9y
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/home/leon/repo/respdemo/Components/Pages/Error.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9FcnJvci5yYXpvcg==
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/home/leon/repo/respdemo/Components/Pages/Home.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9Ib21lLnJhem9y
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/home/leon/repo/respdemo/Components/Pages/Weather.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9XZWF0aGVyLnJhem9y
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/home/leon/repo/respdemo/Components/Routes.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9Sb3V0ZXMucmF6b3I=
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/home/leon/repo/respdemo/Components/_Imports.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9fSW1wb3J0cy5yYXpvcg==
|
||||||
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
|
[/home/leon/repo/respdemo/Components/Layout/MainLayout.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9MYXlvdXQvTWFpbkxheW91dC5yYXpvcg==
|
||||||
|
build_metadata.AdditionalFiles.CssScope = b-17dty9wdfs
|
||||||
|
|
||||||
|
[/home/leon/repo/respdemo/Components/Layout/NavMenu.razor]
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9MYXlvdXQvTmF2TWVudS5yYXpvcg==
|
||||||
|
build_metadata.AdditionalFiles.CssScope = b-0zvk2p042a
|
||||||
17
obj/Debug/net9.0/respdemo.GlobalUsings.g.cs
Normal file
17
obj/Debug/net9.0/respdemo.GlobalUsings.g.cs
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::Microsoft.AspNetCore.Builder;
|
||||||
|
global using global::Microsoft.AspNetCore.Hosting;
|
||||||
|
global using global::Microsoft.AspNetCore.Http;
|
||||||
|
global using global::Microsoft.AspNetCore.Routing;
|
||||||
|
global using global::Microsoft.Extensions.Configuration;
|
||||||
|
global using global::Microsoft.Extensions.DependencyInjection;
|
||||||
|
global using global::Microsoft.Extensions.Hosting;
|
||||||
|
global using global::Microsoft.Extensions.Logging;
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.IO;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Net.Http;
|
||||||
|
global using global::System.Net.Http.Json;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
||||||
BIN
obj/Debug/net9.0/respdemo.assets.cache
Normal file
BIN
obj/Debug/net9.0/respdemo.assets.cache
Normal file
Binary file not shown.
1
obj/Debug/net9.0/respdemo.csproj.CoreCompileInputs.cache
Normal file
1
obj/Debug/net9.0/respdemo.csproj.CoreCompileInputs.cache
Normal file
@@ -0,0 +1 @@
|
|||||||
|
9072c8ed78e0be90822a4d02ac0541142987ac7ade695df96d8620d91674cb0a
|
||||||
78
obj/Debug/net9.0/respdemo.csproj.FileListAbsolute.txt
Normal file
78
obj/Debug/net9.0/respdemo.csproj.FileListAbsolute.txt
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
/home/leon/repo/respdemo/bin/Debug/net9.0/appsettings.Development.json
|
||||||
|
/home/leon/repo/respdemo/bin/Debug/net9.0/appsettings.json
|
||||||
|
/home/leon/repo/respdemo/bin/Debug/net9.0/respdemo.staticwebassets.runtime.json
|
||||||
|
/home/leon/repo/respdemo/bin/Debug/net9.0/respdemo.staticwebassets.endpoints.json
|
||||||
|
/home/leon/repo/respdemo/bin/Debug/net9.0/respdemo
|
||||||
|
/home/leon/repo/respdemo/bin/Debug/net9.0/respdemo.deps.json
|
||||||
|
/home/leon/repo/respdemo/bin/Debug/net9.0/respdemo.runtimeconfig.json
|
||||||
|
/home/leon/repo/respdemo/bin/Debug/net9.0/respdemo.dll
|
||||||
|
/home/leon/repo/respdemo/bin/Debug/net9.0/respdemo.pdb
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/rpswa.dswa.cache.json
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/respdemo.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/respdemo.AssemblyInfoInputs.cache
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/respdemo.AssemblyInfo.cs
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/respdemo.csproj.CoreCompileInputs.cache
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/respdemo.MvcApplicationPartsAssemblyInfo.cache
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/rjimswa.dswa.cache.json
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/rjsmrazor.dswa.cache.json
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/scopedcss/Components/Layout/MainLayout.razor.rz.scp.css
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/scopedcss/Components/Layout/NavMenu.razor.rz.scp.css
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/scopedcss/bundle/respdemo.styles.css
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/scopedcss/projectbundle/respdemo.bundle.scp.css
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/hrda8l9wx5-khy4lop6wu.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/f2k6f65nl9-bqjiyaj88i.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/sc67q2aysw-c2jlpeoesf.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/8kc49kakn1-erw9l3u2r3.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/uq7nhdzr2l-aexeepp0ev.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/037g8fh3ke-d7shbmvgxk.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/2koeu3fciv-ausgxo2sd3.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/4z63nzlnrp-k8d9w2qqmf.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/6xi37ejj44-cosvhxvwiu.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/p76mz8idx4-ub07r2b239.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/748zzbyqt0-fvhpjtyr6v.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/f7jgd74xpp-b7pk76d08c.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/znc6glfa0c-fsbi9cje9m.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/nogezqfyxg-rzd6atqjts.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/f5mar9tjyf-ee0r1s7dh0.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/tbb9gfxnjk-dxx9fxp4il.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/g7u53r61af-jd9uben2k1.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/c9vm9svgyf-khv3u5hwcm.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/tnh8dpb5r3-r4e9w2rdcm.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/nn5jn2s15d-lcd1t2u6c8.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/l3kp9j1m7j-c2oey78nd0.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/8jf5yyukwr-tdbxkamptv.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/z6kqn339x9-j5mq2jizvt.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/xbc9lfnip6-06098lyss8.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/b6a3au9ilv-nvvlpmu67g.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/7a35yehanc-s35ty4nyc5.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/q9ycvp2kwz-pj5nd1wqec.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/66jrx6gzqf-46ein0sx1k.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/mhdx42c2bm-v0zj4ognzu.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/r3uuen6u52-37tfw0ft22.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/o2b252r68h-hrwsygsryq.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/hf4hb8fdaw-pk9g2wxc8p.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/n7eaculdoo-ft3s53vfgj.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/c5prr2r1ln-6cfz1n2cew.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/by0r86twzo-6pdc2jztkx.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/6sr5n83anu-493y06b0oq.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/3i7qpn4al8-iovd86k7lj.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/axxu02vsef-vr1egmr9el.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/2g9lmdzet4-kbrnm935zg.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/gqymwasvd1-jj8uyg4cgr.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/o972miqg0a-y7v9cxd14o.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/8fki17p4ja-notf2xhcfb.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/bn01ov5hau-h1s4sie4z3.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/yay1v5ungw-63fj8s7r0e.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/e8jdu2gpm9-0j3bgjxly4.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/hbuievj6f6-xb8jqj7wjw.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/compressed/b98i31988i-xb8jqj7wjw.gz
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/staticwebassets.build.json
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/staticwebassets.build.json.cache
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/staticwebassets.development.json
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/staticwebassets.build.endpoints.json
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/respdemo.dll
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/refint/respdemo.dll
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/respdemo.pdb
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/respdemo.genruntimeconfig.cache
|
||||||
|
/home/leon/repo/respdemo/obj/Debug/net9.0/ref/respdemo.dll
|
||||||
BIN
obj/Debug/net9.0/respdemo.dll
Normal file
BIN
obj/Debug/net9.0/respdemo.dll
Normal file
Binary file not shown.
1
obj/Debug/net9.0/respdemo.genruntimeconfig.cache
Normal file
1
obj/Debug/net9.0/respdemo.genruntimeconfig.cache
Normal file
@@ -0,0 +1 @@
|
|||||||
|
bcce7b28692a079d0bf03aad260f84c32be1c434c904956828e41de6eabd6a37
|
||||||
BIN
obj/Debug/net9.0/respdemo.pdb
Normal file
BIN
obj/Debug/net9.0/respdemo.pdb
Normal file
Binary file not shown.
1
obj/Debug/net9.0/rjimswa.dswa.cache.json
Normal file
1
obj/Debug/net9.0/rjimswa.dswa.cache.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"GlobalPropertiesHash":"7fbXhTGsP6GKfYrgREFEBOq5ORffQye0q7omc6dvLsM=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["2roO5od93LfKcpzd94IcTP/WE2hOfRs0B3ojRmuQHmw=","af5wYHRzGNtrVDhvPpzOQRunVZNrDrR693fGXzBQ\u002BQQ=","Q4b0ylVfTXkzI8nY63sMwep0UNWWlH5QK0QZy/FCbwE=","icLWa9ga7BMZdVCfAWunUvDhRqNuAUgHpzkGY7aF8KU=","DRqVoecBzREy\u002B6ADuFE2Iqn2phvzBXVg2854H1fbdpM=","4tFm5VaYmKgTfuo/uIGvBRdOT200Xav4t1EvYisLq1o=","5vJXycEXJHE7IyFwqp9ZVXvQV2PdA5R6Fu9nvccHUuI=","Wq4eDwZm3FOgf3TQUbQv519t/h\u002BnmM/sLWdKTxi7Nq8=","8zGnkbCPKevZhegAMyjG\u002Br39tjoHIIz86oKbXEdnIUo=","798lIpQNlNx\u002BdDIyI9HmRtSyeah1ztG9eiAvmUHa0T4=","wupEvcNMhToquZZCudAOsLxH78IVr3ZVKTBAW7usij4=","i97vOoUb3sF9VBcIRUg9WF\u002B\u002BaId6wC3gDXyblduNypg=","ZcgGAdwUO1iuFjBWeNkcZpSY/Xum2EgHUezb\u002BbDKT3Y=","iO1Cyg1vhC4p\u002BmcTgb4Uq2OxLA\u002Bcul7SbR5SNyS\u002BqvU=","wEebRZZOl\u002Bx\u002Bvu6ZbknW/Ja0y5Pp6mRbPjjbqaNZejE=","K8Gp8\u002BltgN7MKGsm4PxaVtEtxR1GlD6MybJzI5\u002Blncs=","236cU3YDulhXhB4ddWzLTYZGH2DBO\u002BOih7dNMzH/N1g=","xwV1hud0L3DCW1jQnmEoni4OqxNzAWC\u002Bq48Ko\u002BwuKCI=","TmykPGYZq32ZMFXgdw6J7/slRxSy5VEROqsubObG9Fk=","fkR5Nbdg6wOy9KGHUJw5UbSPh2PEE1ThObXCgiDt3gA=","XIfSJMBkiUyqc5SpM2Su39A21pmrJ/gpkCrhpJi/DRU=","R0VqQkdWta0/jkBFSr2dOcj9KT1KdOwkVXnQJIttdw8=","Ly9vaRNkR6ewo8tK3qno\u002BbqBr8V09TM\u002Bo3XPvJOtwC0=","1f54\u002BRgQS10JmLkH8UFlOHpdF1w3KJDyRhhpCbNnhzg=","U\u002BrVEMxmOVzoO2DFxctZrSjQlMGIeBoOMN/CQebyKoI=","0HotGgTKWB/idJX\u002BWkygwh7I5xp8HR\u002B4TXBpgDq9NTQ=","ESC0oRs4Yho5Th8fSuGUuUJCRKWddVO99kasMf/mVeI=","GuD6qdVhTdeMLwJ5Mv0nt7NtrCostrFH5MWK\u002ByhVQ2Q=","OmHx7d2K5Q0/Rdc5u\u002B/jNHOujiznZp7ovAjLi9o1JNU=","n8GqzgPR5sdsVSUkfVdrMlUWL\u002B0xK0wgQpJj7aVYOmM=","AhTuPJzVIwLaZh/balsRCBlfm5iobBSl46M\u002B2zr2tcw=","rgBnvgims65CwStwNLaRFeXgL8HquDnr9sHrr/rO89A=","yZIVtA4RE1PGBH4HwhhT77D7lqsWF2lb2SaZ6\u002B2BviE=","\u002BcNMUr4enwj1tLAuFL\u002Bn\u002BWy0F/uhF9/qtodC0ti3rVI=","8pIk9NjD34OxlrxkSl52fuo1Mgc7/zgHr9\u002B6jdTaU3U=","zweagEpxyXYkjne/KX3\u002BMgy3ZHd3OT5OOW/haJO\u002BLA4=","WKCkRwAw1uPK\u002B3lKWpiyzHDMbkBCopbv05jM9\u002BldUEM=","D5lU7IRPv9P5i8yBi75k8dWY22lOr5fUWuIW\u002Bn7q440=","MrfuZ3\u002BASKWke85J7wvHjkeU1ba4HGxT00qmU8cCF0A=","Q69CBDJqVUCUstOW9dN3J\u002BbYlAVzVr7e/XAsjHnFqBE=","59Ds4KpZ/d3QtaucTOZHtJLvo9soWy0fCc3aowLQF\u002BI=","GTHoKRqZEy8yWIB/RqV\u002Bqel2ypZZXVxNcgIRWKH2HvA=","VDx6\u002Bsoq1nytus4cARMliYzOOcTqMoFrcOZSey34ihQ=","yhaSFsjtDr56B2S\u002BpD\u002BFwtyksRC6two8vobj3gLWxAc=","2D2/Vu6W92n1wXCMgo43RplgKAZVDvUknagyaBTz1WU=","o0yzeh1\u002BRW3D5F9vRMcEvzWbioYfcmrBeifUxM4gTgs="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||||
1
obj/Debug/net9.0/rjsmcshtml.dswa.cache.json
Normal file
1
obj/Debug/net9.0/rjsmcshtml.dswa.cache.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"GlobalPropertiesHash":"WBondYB80pjAR20iVKL1vh+m2/bU2tGzK832ipUgmEU=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["bf/JGgkcIyXX9Xq7SX9bPdJI9DbpMWPmCdJVGJqiNcQ=","GlR/6X1rZhE7pyCUtlyu\u002BjDYbjJUmzTWBV0Fuck7KL0=","nCxhtSElBHtn25YBwTa79Huo2\u002B9g3/hPatYvfByuC6g=","xKfw72VZ0a88evXeFJwWkrN0rJw6ffzsTAfCAF6fE08=","XGawn78YIByu7DfeHOOnBUx2xMoyvIRRaUIJYPRx7Mw=","95sjqQ2E13qDQ7btje57yxJAGBBz1na7FxbF2zvqh4M=","X8AO0GA3kBwf/Um368ZJ4TkddJJePQvw28FU/ma3lZQ=","NNklZoWkdJ8Oxi4BkunGKXaHi5uP6M1w3r0Sy0618GM=","9Ssz/VBaIGzJJ0W3yhkNHFZnJloxqJgC5RFIURFYO1g=","tep4tTTELpjd7AMd6Q2jJmJ2SzinAK89yQZElnIqdqE=","Zu8jinc4wt8jtDP0nzhryKYCEB5o5AODt9LPQ9z8xRY=","vRjANjrlhf1kqU4dPC813xLg4ljsbGRHEMv\u002BhJGcaj8=","R2Kc5UjuUrHqM\u002B2oeBF04BgwD/mEa\u002BHkCp42UfhAcSg=","V6Hi7Xmhgwdm8E0ygKh/wnNYZ9S30x7jk/RGMjKcep0=","TK1g646164K1a6IMJqoZryNr6hHcvVvX\u002BqLVeQzJbJ4=","6dqau3\u002B4VZAoOp5w9m\u002BOQau37sJLxXGhcdA2zvmqruY=","6ttOSK/qxolJbzvSOJvSCAMBYgcz5WFY6FtuV8DDGiY=","GIy/jeKceh3qiPaWCK2obNsrOTTyQ4n3H5ECwQvYxgM=","ExoYd\u002BPhBZ4jAd3ZBTGHe6/VU9iai6j3/csA7wZWBXg=","D9KpvBKd7dPLtN0lt8s1qG5NcK\u002Bx0ORb1T0Fe7ISg\u002BU=","Bqzu2t9a\u002BmBcUBS/dipu7p3ce6F8dMCu67jFjwjT1Vs=","kStEt9tQ1QZwP2EkSUAXeb9UIzq0wEELyufdUHu4vNs=","5ILRuUpK3dqBgVGlMuRASMV/uWKsJa/d660nAAKF/RE=","oVL/tG0r0o2XbvSZ95hMKHsfeNXQJt7YXGt7xHEKKQA=","88VKh\u002BqMmQ3E6Seb7iT6xkCCP3MafixkXbbSeYDHnWo=","OZzGfMqFgdkTsDAFSnBMksc4BLK7MfZlRsP54ZaHSp8=","khzGYpBRolLbp3RcNKJF\u002B72MwIrOZ91XSstlgs0bUWk=","dsVvngek1heumiVCSGS6ExxjtCyogC9lW7tWy0JHSm8=","vtTL55bTrppisxkM78aff2\u002BKMw/2B9U1B4wds5jAflM=","jPnfrL2Od1KkMYS2r6VJ8DHHUAd7VPSYeGo8u\u002B2H9mo=","2RC1bUKThRoibJ2hx21lN3lpfhowMZtqVrMdonTzF0c=","O\u002BlS/oxAjF/nrS1aYECbt1qWblO/zNCQUj74P6o3Cpo=","kHl\u002Bv/sy5kNSfbMg8SUo3iVVdgYIvJjn1FZH2wuRbV4=","6abu2wlcskUhF1hlPOS\u002BImkgtuSZeX5KNF56QVSaKlI=","JURuPlWwEr0vgyuwgx55LVQBrQZPyMi8ARX/Us/Qr08=","a7gsQIxSRa/zUka1y9acFZMGYHIvfY/kDeES5nL//3U=","usVzGAELfatpELykz5kDyTRV7nE0z3IKCxPpyObMO30=","6Zxb\u002BnWqOj/s\u002BrGQNsuFIRmO1VhiLXq\u002B7AxLZKOWFbo=","M4zx9nSXsU1sb9G5OLzsL\u002Bt/aQVrQ00\u002B4258Hv6JTAQ=","WelIVkMffY75xdFo6ej2Vibs8ChlhRZIvjmv0uwx2Mg=","oj1Fu/0SFL2SmEno5ZjVInrL5HjmM8L9oxavWmn2X1w=","q2HK1RNNlWP57//fKiZ9IpKL\u002BXoR8A5jrfLvixaN\u002BYQ=","r0vM9erd1y2z0Uz7gMvEHFLRrM9Xg23STudB3S\u002Bc9Xs=","Tx6jKJIkip48dEDN15TFp/DwTTJxD4dBZpRrdP39o68=","pwLae5d15Ku3g72QMkfZNfEZQM5Qyg\u002BviQ458/MSNn0=","shrJHHtEfFsdrScaW43THn52Je1ujxqhzTjfPa4W9tg=","WlYYP4GNaTGPbBO4iM1exigxMzM1ah\u002Bh0zjuByJYct8=","6ppTpwaV5ozqmKRoFFYB4ZsYRzUQkweKH3vJ/M6q\u002BRk=","/Yijhx0QITLdeFtJSrJNs1ejJVO8kaaWhv3YdVrein0=","tIYX2UpaExC6/gWv/NoF/oWPC/7AEv2lyc4I3230CRk=","t8QUv\u002BypUAw9dAqrskTIDzqZVPuGJwGZ02v53RC4nYs=","yoeRQw4fw62/hhnTCVbpp5n0L7kaERHFMIx\u002Bt8kAJVU=","50NYWnFbgkvjylQzSVYE11SKqeTLRkfAj3bnBVX3Ilg=","elm1S1iIEwyfqemkPDaVL7YoERqHDX3qLZHcd\u002BP7e9I=","GSzyAEMx2wlEM/H\u002B51Rzzd7TNdBPb3vgNZZbsSw5CQU=","8ffkuwDd1Po7vfx/SZvFrKZixHfmr\u002BHPhLqfk/On90A=","YpoSoT7yw\u002BFeBnQdO3cU4UjBnWaUXcT0t1wG0T\u002BEImY=","izAK0CFrI\u002Bv3DNKSpLD2PxaELHNxEqHD2K4yYrr2dQs=","m3o3BFK8fajQb5xsrPajTw/WE/rIiIY4xZAPyIfWOVc=","vx4Enlxc0TyTnztBz0zFdSM6UXbMVQn0QcR/1t2hMsE=","Or7b8LvkxtMVODGiRLPvhuYeVbKge6qJ5S06C7jE2sE="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||||
1
obj/Debug/net9.0/rjsmrazor.dswa.cache.json
Normal file
1
obj/Debug/net9.0/rjsmrazor.dswa.cache.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"GlobalPropertiesHash":"JJaNo3npIUjmDiqVIqUX3Zpti7byLLDwKmwb4o9jdvE=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["bf/JGgkcIyXX9Xq7SX9bPdJI9DbpMWPmCdJVGJqiNcQ=","GlR/6X1rZhE7pyCUtlyu\u002BjDYbjJUmzTWBV0Fuck7KL0=","nCxhtSElBHtn25YBwTa79Huo2\u002B9g3/hPatYvfByuC6g=","xKfw72VZ0a88evXeFJwWkrN0rJw6ffzsTAfCAF6fE08=","XGawn78YIByu7DfeHOOnBUx2xMoyvIRRaUIJYPRx7Mw=","95sjqQ2E13qDQ7btje57yxJAGBBz1na7FxbF2zvqh4M=","X8AO0GA3kBwf/Um368ZJ4TkddJJePQvw28FU/ma3lZQ=","NNklZoWkdJ8Oxi4BkunGKXaHi5uP6M1w3r0Sy0618GM=","9Ssz/VBaIGzJJ0W3yhkNHFZnJloxqJgC5RFIURFYO1g=","tep4tTTELpjd7AMd6Q2jJmJ2SzinAK89yQZElnIqdqE=","Zu8jinc4wt8jtDP0nzhryKYCEB5o5AODt9LPQ9z8xRY=","vRjANjrlhf1kqU4dPC813xLg4ljsbGRHEMv\u002BhJGcaj8=","R2Kc5UjuUrHqM\u002B2oeBF04BgwD/mEa\u002BHkCp42UfhAcSg=","V6Hi7Xmhgwdm8E0ygKh/wnNYZ9S30x7jk/RGMjKcep0=","TK1g646164K1a6IMJqoZryNr6hHcvVvX\u002BqLVeQzJbJ4=","6dqau3\u002B4VZAoOp5w9m\u002BOQau37sJLxXGhcdA2zvmqruY=","6ttOSK/qxolJbzvSOJvSCAMBYgcz5WFY6FtuV8DDGiY=","GIy/jeKceh3qiPaWCK2obNsrOTTyQ4n3H5ECwQvYxgM=","ExoYd\u002BPhBZ4jAd3ZBTGHe6/VU9iai6j3/csA7wZWBXg=","D9KpvBKd7dPLtN0lt8s1qG5NcK\u002Bx0ORb1T0Fe7ISg\u002BU=","Bqzu2t9a\u002BmBcUBS/dipu7p3ce6F8dMCu67jFjwjT1Vs=","kStEt9tQ1QZwP2EkSUAXeb9UIzq0wEELyufdUHu4vNs=","5ILRuUpK3dqBgVGlMuRASMV/uWKsJa/d660nAAKF/RE=","oVL/tG0r0o2XbvSZ95hMKHsfeNXQJt7YXGt7xHEKKQA=","88VKh\u002BqMmQ3E6Seb7iT6xkCCP3MafixkXbbSeYDHnWo=","OZzGfMqFgdkTsDAFSnBMksc4BLK7MfZlRsP54ZaHSp8=","khzGYpBRolLbp3RcNKJF\u002B72MwIrOZ91XSstlgs0bUWk=","dsVvngek1heumiVCSGS6ExxjtCyogC9lW7tWy0JHSm8=","vtTL55bTrppisxkM78aff2\u002BKMw/2B9U1B4wds5jAflM=","jPnfrL2Od1KkMYS2r6VJ8DHHUAd7VPSYeGo8u\u002B2H9mo=","2RC1bUKThRoibJ2hx21lN3lpfhowMZtqVrMdonTzF0c=","O\u002BlS/oxAjF/nrS1aYECbt1qWblO/zNCQUj74P6o3Cpo=","kHl\u002Bv/sy5kNSfbMg8SUo3iVVdgYIvJjn1FZH2wuRbV4=","6abu2wlcskUhF1hlPOS\u002BImkgtuSZeX5KNF56QVSaKlI=","JURuPlWwEr0vgyuwgx55LVQBrQZPyMi8ARX/Us/Qr08=","a7gsQIxSRa/zUka1y9acFZMGYHIvfY/kDeES5nL//3U=","usVzGAELfatpELykz5kDyTRV7nE0z3IKCxPpyObMO30=","6Zxb\u002BnWqOj/s\u002BrGQNsuFIRmO1VhiLXq\u002B7AxLZKOWFbo=","M4zx9nSXsU1sb9G5OLzsL\u002Bt/aQVrQ00\u002B4258Hv6JTAQ=","WelIVkMffY75xdFo6ej2Vibs8ChlhRZIvjmv0uwx2Mg=","oj1Fu/0SFL2SmEno5ZjVInrL5HjmM8L9oxavWmn2X1w=","q2HK1RNNlWP57//fKiZ9IpKL\u002BXoR8A5jrfLvixaN\u002BYQ=","r0vM9erd1y2z0Uz7gMvEHFLRrM9Xg23STudB3S\u002Bc9Xs=","Tx6jKJIkip48dEDN15TFp/DwTTJxD4dBZpRrdP39o68=","pwLae5d15Ku3g72QMkfZNfEZQM5Qyg\u002BviQ458/MSNn0=","shrJHHtEfFsdrScaW43THn52Je1ujxqhzTjfPa4W9tg=","WlYYP4GNaTGPbBO4iM1exigxMzM1ah\u002Bh0zjuByJYct8=","6ppTpwaV5ozqmKRoFFYB4ZsYRzUQkweKH3vJ/M6q\u002BRk=","/Yijhx0QITLdeFtJSrJNs1ejJVO8kaaWhv3YdVrein0=","tIYX2UpaExC6/gWv/NoF/oWPC/7AEv2lyc4I3230CRk=","t8QUv\u002BypUAw9dAqrskTIDzqZVPuGJwGZ02v53RC4nYs=","yoeRQw4fw62/hhnTCVbpp5n0L7kaERHFMIx\u002Bt8kAJVU=","50NYWnFbgkvjylQzSVYE11SKqeTLRkfAj3bnBVX3Ilg=","elm1S1iIEwyfqemkPDaVL7YoERqHDX3qLZHcd\u002BP7e9I=","GSzyAEMx2wlEM/H\u002B51Rzzd7TNdBPb3vgNZZbsSw5CQU=","8ffkuwDd1Po7vfx/SZvFrKZixHfmr\u002BHPhLqfk/On90A=","YpoSoT7yw\u002BFeBnQdO3cU4UjBnWaUXcT0t1wG0T\u002BEImY=","izAK0CFrI\u002Bv3DNKSpLD2PxaELHNxEqHD2K4yYrr2dQs=","m3o3BFK8fajQb5xsrPajTw/WE/rIiIY4xZAPyIfWOVc=","vx4Enlxc0TyTnztBz0zFdSM6UXbMVQn0QcR/1t2hMsE=","Or7b8LvkxtMVODGiRLPvhuYeVbKge6qJ5S06C7jE2sE="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||||
1
obj/Debug/net9.0/rpswa.dswa.cache.json
Normal file
1
obj/Debug/net9.0/rpswa.dswa.cache.json
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,98 @@
|
|||||||
|
.page[b-17dty9wdfs] {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
main[b-17dty9wdfs] {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar[b-17dty9wdfs] {
|
||||||
|
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] {
|
||||||
|
background-color: #f7f7f7;
|
||||||
|
border-bottom: 1px solid #d6d5d5;
|
||||||
|
justify-content: flex-end;
|
||||||
|
height: 3.5rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] a, .top-row[b-17dty9wdfs] .btn-link {
|
||||||
|
white-space: nowrap;
|
||||||
|
margin-left: 1.5rem;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] a:hover, .top-row[b-17dty9wdfs] .btn-link:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] a:first-child {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 640.98px) {
|
||||||
|
.top-row[b-17dty9wdfs] {
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] a, .top-row[b-17dty9wdfs] .btn-link {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 641px) {
|
||||||
|
.page[b-17dty9wdfs] {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar[b-17dty9wdfs] {
|
||||||
|
width: 250px;
|
||||||
|
height: 100vh;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] {
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row.auth[b-17dty9wdfs] a:first-child {
|
||||||
|
flex: 1;
|
||||||
|
text-align: right;
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs], article[b-17dty9wdfs] {
|
||||||
|
padding-left: 2rem !important;
|
||||||
|
padding-right: 1.5rem !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#blazor-error-ui[b-17dty9wdfs] {
|
||||||
|
color-scheme: light only;
|
||||||
|
background: lightyellow;
|
||||||
|
bottom: 0;
|
||||||
|
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: none;
|
||||||
|
left: 0;
|
||||||
|
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#blazor-error-ui .dismiss[b-17dty9wdfs] {
|
||||||
|
cursor: pointer;
|
||||||
|
position: absolute;
|
||||||
|
right: 0.75rem;
|
||||||
|
top: 0.5rem;
|
||||||
|
}
|
||||||
@@ -0,0 +1,105 @@
|
|||||||
|
.navbar-toggler[b-0zvk2p042a] {
|
||||||
|
appearance: none;
|
||||||
|
cursor: pointer;
|
||||||
|
width: 3.5rem;
|
||||||
|
height: 2.5rem;
|
||||||
|
color: white;
|
||||||
|
position: absolute;
|
||||||
|
top: 0.5rem;
|
||||||
|
right: 1rem;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-toggler:checked[b-0zvk2p042a] {
|
||||||
|
background-color: rgba(255, 255, 255, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-0zvk2p042a] {
|
||||||
|
min-height: 3.5rem;
|
||||||
|
background-color: rgba(0,0,0,0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand[b-0zvk2p042a] {
|
||||||
|
font-size: 1.1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi[b-0zvk2p042a] {
|
||||||
|
display: inline-block;
|
||||||
|
position: relative;
|
||||||
|
width: 1.25rem;
|
||||||
|
height: 1.25rem;
|
||||||
|
margin-right: 0.75rem;
|
||||||
|
top: -1px;
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi-house-door-fill-nav-menu[b-0zvk2p042a] {
|
||||||
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi-plus-square-fill-nav-menu[b-0zvk2p042a] {
|
||||||
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi-list-nested-nav-menu[b-0zvk2p042a] {
|
||||||
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item[b-0zvk2p042a] {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
padding-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item:first-of-type[b-0zvk2p042a] {
|
||||||
|
padding-top: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item:last-of-type[b-0zvk2p042a] {
|
||||||
|
padding-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item[b-0zvk2p042a] .nav-link {
|
||||||
|
color: #d7d7d7;
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
border-radius: 4px;
|
||||||
|
height: 3rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
line-height: 3rem;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item[b-0zvk2p042a] a.active {
|
||||||
|
background-color: rgba(255,255,255,0.37);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item[b-0zvk2p042a] .nav-link:hover {
|
||||||
|
background-color: rgba(255,255,255,0.1);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-scrollable[b-0zvk2p042a] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-toggler:checked ~ .nav-scrollable[b-0zvk2p042a] {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 641px) {
|
||||||
|
.navbar-toggler[b-0zvk2p042a] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-scrollable[b-0zvk2p042a] {
|
||||||
|
/* Never collapse the sidebar for wide screens */
|
||||||
|
display: block;
|
||||||
|
|
||||||
|
/* Allow sidebar to scroll for tall menus */
|
||||||
|
height: calc(100vh - 3.5rem);
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
205
obj/Debug/net9.0/scopedcss/bundle/respdemo.styles.css
Normal file
205
obj/Debug/net9.0/scopedcss/bundle/respdemo.styles.css
Normal file
@@ -0,0 +1,205 @@
|
|||||||
|
/* _content/respdemo/Components/Layout/MainLayout.razor.rz.scp.css */
|
||||||
|
.page[b-17dty9wdfs] {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
main[b-17dty9wdfs] {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar[b-17dty9wdfs] {
|
||||||
|
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] {
|
||||||
|
background-color: #f7f7f7;
|
||||||
|
border-bottom: 1px solid #d6d5d5;
|
||||||
|
justify-content: flex-end;
|
||||||
|
height: 3.5rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] a, .top-row[b-17dty9wdfs] .btn-link {
|
||||||
|
white-space: nowrap;
|
||||||
|
margin-left: 1.5rem;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] a:hover, .top-row[b-17dty9wdfs] .btn-link:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] a:first-child {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 640.98px) {
|
||||||
|
.top-row[b-17dty9wdfs] {
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] a, .top-row[b-17dty9wdfs] .btn-link {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 641px) {
|
||||||
|
.page[b-17dty9wdfs] {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar[b-17dty9wdfs] {
|
||||||
|
width: 250px;
|
||||||
|
height: 100vh;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] {
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row.auth[b-17dty9wdfs] a:first-child {
|
||||||
|
flex: 1;
|
||||||
|
text-align: right;
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs], article[b-17dty9wdfs] {
|
||||||
|
padding-left: 2rem !important;
|
||||||
|
padding-right: 1.5rem !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#blazor-error-ui[b-17dty9wdfs] {
|
||||||
|
color-scheme: light only;
|
||||||
|
background: lightyellow;
|
||||||
|
bottom: 0;
|
||||||
|
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: none;
|
||||||
|
left: 0;
|
||||||
|
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#blazor-error-ui .dismiss[b-17dty9wdfs] {
|
||||||
|
cursor: pointer;
|
||||||
|
position: absolute;
|
||||||
|
right: 0.75rem;
|
||||||
|
top: 0.5rem;
|
||||||
|
}
|
||||||
|
/* _content/respdemo/Components/Layout/NavMenu.razor.rz.scp.css */
|
||||||
|
.navbar-toggler[b-0zvk2p042a] {
|
||||||
|
appearance: none;
|
||||||
|
cursor: pointer;
|
||||||
|
width: 3.5rem;
|
||||||
|
height: 2.5rem;
|
||||||
|
color: white;
|
||||||
|
position: absolute;
|
||||||
|
top: 0.5rem;
|
||||||
|
right: 1rem;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-toggler:checked[b-0zvk2p042a] {
|
||||||
|
background-color: rgba(255, 255, 255, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-0zvk2p042a] {
|
||||||
|
min-height: 3.5rem;
|
||||||
|
background-color: rgba(0,0,0,0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand[b-0zvk2p042a] {
|
||||||
|
font-size: 1.1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi[b-0zvk2p042a] {
|
||||||
|
display: inline-block;
|
||||||
|
position: relative;
|
||||||
|
width: 1.25rem;
|
||||||
|
height: 1.25rem;
|
||||||
|
margin-right: 0.75rem;
|
||||||
|
top: -1px;
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi-house-door-fill-nav-menu[b-0zvk2p042a] {
|
||||||
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi-plus-square-fill-nav-menu[b-0zvk2p042a] {
|
||||||
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi-list-nested-nav-menu[b-0zvk2p042a] {
|
||||||
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item[b-0zvk2p042a] {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
padding-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item:first-of-type[b-0zvk2p042a] {
|
||||||
|
padding-top: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item:last-of-type[b-0zvk2p042a] {
|
||||||
|
padding-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item[b-0zvk2p042a] .nav-link {
|
||||||
|
color: #d7d7d7;
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
border-radius: 4px;
|
||||||
|
height: 3rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
line-height: 3rem;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item[b-0zvk2p042a] a.active {
|
||||||
|
background-color: rgba(255,255,255,0.37);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item[b-0zvk2p042a] .nav-link:hover {
|
||||||
|
background-color: rgba(255,255,255,0.1);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-scrollable[b-0zvk2p042a] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-toggler:checked ~ .nav-scrollable[b-0zvk2p042a] {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 641px) {
|
||||||
|
.navbar-toggler[b-0zvk2p042a] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-scrollable[b-0zvk2p042a] {
|
||||||
|
/* Never collapse the sidebar for wide screens */
|
||||||
|
display: block;
|
||||||
|
|
||||||
|
/* Allow sidebar to scroll for tall menus */
|
||||||
|
height: calc(100vh - 3.5rem);
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
205
obj/Debug/net9.0/scopedcss/projectbundle/respdemo.bundle.scp.css
Normal file
205
obj/Debug/net9.0/scopedcss/projectbundle/respdemo.bundle.scp.css
Normal file
@@ -0,0 +1,205 @@
|
|||||||
|
/* _content/respdemo/Components/Layout/MainLayout.razor.rz.scp.css */
|
||||||
|
.page[b-17dty9wdfs] {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
main[b-17dty9wdfs] {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar[b-17dty9wdfs] {
|
||||||
|
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] {
|
||||||
|
background-color: #f7f7f7;
|
||||||
|
border-bottom: 1px solid #d6d5d5;
|
||||||
|
justify-content: flex-end;
|
||||||
|
height: 3.5rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] a, .top-row[b-17dty9wdfs] .btn-link {
|
||||||
|
white-space: nowrap;
|
||||||
|
margin-left: 1.5rem;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] a:hover, .top-row[b-17dty9wdfs] .btn-link:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] a:first-child {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 640.98px) {
|
||||||
|
.top-row[b-17dty9wdfs] {
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] a, .top-row[b-17dty9wdfs] .btn-link {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 641px) {
|
||||||
|
.page[b-17dty9wdfs] {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar[b-17dty9wdfs] {
|
||||||
|
width: 250px;
|
||||||
|
height: 100vh;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs] {
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row.auth[b-17dty9wdfs] a:first-child {
|
||||||
|
flex: 1;
|
||||||
|
text-align: right;
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-17dty9wdfs], article[b-17dty9wdfs] {
|
||||||
|
padding-left: 2rem !important;
|
||||||
|
padding-right: 1.5rem !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#blazor-error-ui[b-17dty9wdfs] {
|
||||||
|
color-scheme: light only;
|
||||||
|
background: lightyellow;
|
||||||
|
bottom: 0;
|
||||||
|
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: none;
|
||||||
|
left: 0;
|
||||||
|
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#blazor-error-ui .dismiss[b-17dty9wdfs] {
|
||||||
|
cursor: pointer;
|
||||||
|
position: absolute;
|
||||||
|
right: 0.75rem;
|
||||||
|
top: 0.5rem;
|
||||||
|
}
|
||||||
|
/* _content/respdemo/Components/Layout/NavMenu.razor.rz.scp.css */
|
||||||
|
.navbar-toggler[b-0zvk2p042a] {
|
||||||
|
appearance: none;
|
||||||
|
cursor: pointer;
|
||||||
|
width: 3.5rem;
|
||||||
|
height: 2.5rem;
|
||||||
|
color: white;
|
||||||
|
position: absolute;
|
||||||
|
top: 0.5rem;
|
||||||
|
right: 1rem;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-toggler:checked[b-0zvk2p042a] {
|
||||||
|
background-color: rgba(255, 255, 255, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-row[b-0zvk2p042a] {
|
||||||
|
min-height: 3.5rem;
|
||||||
|
background-color: rgba(0,0,0,0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand[b-0zvk2p042a] {
|
||||||
|
font-size: 1.1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi[b-0zvk2p042a] {
|
||||||
|
display: inline-block;
|
||||||
|
position: relative;
|
||||||
|
width: 1.25rem;
|
||||||
|
height: 1.25rem;
|
||||||
|
margin-right: 0.75rem;
|
||||||
|
top: -1px;
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi-house-door-fill-nav-menu[b-0zvk2p042a] {
|
||||||
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi-plus-square-fill-nav-menu[b-0zvk2p042a] {
|
||||||
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
.bi-list-nested-nav-menu[b-0zvk2p042a] {
|
||||||
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item[b-0zvk2p042a] {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
padding-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item:first-of-type[b-0zvk2p042a] {
|
||||||
|
padding-top: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item:last-of-type[b-0zvk2p042a] {
|
||||||
|
padding-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item[b-0zvk2p042a] .nav-link {
|
||||||
|
color: #d7d7d7;
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
border-radius: 4px;
|
||||||
|
height: 3rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
line-height: 3rem;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item[b-0zvk2p042a] a.active {
|
||||||
|
background-color: rgba(255,255,255,0.37);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item[b-0zvk2p042a] .nav-link:hover {
|
||||||
|
background-color: rgba(255,255,255,0.1);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-scrollable[b-0zvk2p042a] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-toggler:checked ~ .nav-scrollable[b-0zvk2p042a] {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 641px) {
|
||||||
|
.navbar-toggler[b-0zvk2p042a] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-scrollable[b-0zvk2p042a] {
|
||||||
|
/* Never collapse the sidebar for wide screens */
|
||||||
|
display: block;
|
||||||
|
|
||||||
|
/* Allow sidebar to scroll for tall menus */
|
||||||
|
height: calc(100vh - 3.5rem);
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
1
obj/Debug/net9.0/staticwebassets.build.endpoints.json
Normal file
1
obj/Debug/net9.0/staticwebassets.build.endpoints.json
Normal file
File diff suppressed because one or more lines are too long
1
obj/Debug/net9.0/staticwebassets.build.json
Normal file
1
obj/Debug/net9.0/staticwebassets.build.json
Normal file
File diff suppressed because one or more lines are too long
1
obj/Debug/net9.0/staticwebassets.build.json.cache
Normal file
1
obj/Debug/net9.0/staticwebassets.build.json.cache
Normal file
@@ -0,0 +1 @@
|
|||||||
|
o+SiSBLpllzYyQ9CMN/pvrRWblaSyAhZ0+h3McH+5IQ=
|
||||||
1
obj/Debug/net9.0/staticwebassets.development.json
Normal file
1
obj/Debug/net9.0/staticwebassets.development.json
Normal file
File diff suppressed because one or more lines are too long
76
obj/project.assets.json
Normal file
76
obj/project.assets.json
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"targets": {
|
||||||
|
"net9.0": {}
|
||||||
|
},
|
||||||
|
"libraries": {},
|
||||||
|
"projectFileDependencyGroups": {
|
||||||
|
"net9.0": []
|
||||||
|
},
|
||||||
|
"packageFolders": {
|
||||||
|
"/home/leon/.nuget/packages/": {}
|
||||||
|
},
|
||||||
|
"project": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "/home/leon/repo/respdemo/respdemo.csproj",
|
||||||
|
"projectName": "respdemo",
|
||||||
|
"projectPath": "/home/leon/repo/respdemo/respdemo.csproj",
|
||||||
|
"packagesPath": "/home/leon/.nuget/packages/",
|
||||||
|
"outputPath": "/home/leon/repo/respdemo/obj/",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"/home/leon/.nuget/NuGet/NuGet.Config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net9.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"/home/leon/.dotnet/library-packs": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net9.0": {
|
||||||
|
"targetAlias": "net9.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"restoreAuditProperties": {
|
||||||
|
"enableAudit": "true",
|
||||||
|
"auditLevel": "low",
|
||||||
|
"auditMode": "direct"
|
||||||
|
},
|
||||||
|
"SdkAnalysisLevel": "9.0.300"
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net9.0": {
|
||||||
|
"targetAlias": "net9.0",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.AspNetCore.App": {
|
||||||
|
"privateAssets": "none"
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "/home/leon/.dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user