initial commit
This commit is contained in:
commit
4eb3392e87
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
// Use IntelliSense to find out which attributes exist for C# debugging
|
||||
// Use hover for the description of the existing attributes
|
||||
// For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md.
|
||||
"name": ".NET Core Launch (web)",
|
||||
"type": "coreclr",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "build",
|
||||
// If you have changed target frameworks, make sure to update the program path.
|
||||
"program": "${workspaceFolder}/bin/Debug/net9.0/RazorPages.dll",
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}",
|
||||
"stopAtEntry": false,
|
||||
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
|
||||
"serverReadyAction": {
|
||||
"action": "openExternally",
|
||||
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
|
||||
},
|
||||
"env": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
},
|
||||
"sourceFileMap": {
|
||||
"/Views": "${workspaceFolder}/Views"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": ".NET Core Attach",
|
||||
"type": "coreclr",
|
||||
"request": "attach"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "build",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"build",
|
||||
"${workspaceFolder}/RazorPages.sln",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary;ForceNoAlign"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "publish",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"publish",
|
||||
"${workspaceFolder}/RazorPages.sln",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary;ForceNoAlign"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "watch",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"watch",
|
||||
"run",
|
||||
"--project",
|
||||
"${workspaceFolder}/RazorPages.sln"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
@page
|
||||
@model ErrorModel
|
||||
@{
|
||||
ViewData["Title"] = "Error";
|
||||
}
|
||||
|
||||
<h1 class="text-danger">Error.</h1>
|
||||
<h2 class="text-danger">An error occurred while processing your request.</h2>
|
||||
|
||||
@if (Model.ShowRequestId)
|
||||
{
|
||||
<p>
|
||||
<strong>Request ID:</strong> <code>@Model.RequestId</code>
|
||||
</p>
|
||||
}
|
||||
|
||||
<h3>Development Mode</h3>
|
||||
<p>
|
||||
Swapping to the <strong>Development</strong> environment displays 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>
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
using System.Diagnostics;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||
|
||||
namespace RazorPages.Pages;
|
||||
|
||||
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
||||
[IgnoreAntiforgeryToken]
|
||||
public class ErrorModel : PageModel
|
||||
{
|
||||
public string? RequestId { get; set; }
|
||||
|
||||
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
||||
|
||||
private readonly ILogger<ErrorModel> _logger;
|
||||
|
||||
public ErrorModel(ILogger<ErrorModel> logger)
|
||||
{
|
||||
_logger = logger;
|
||||
}
|
||||
|
||||
public void OnGet()
|
||||
{
|
||||
RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
@page
|
||||
@model IndexModel
|
||||
@{
|
||||
ViewData["Title"] = "Home page";
|
||||
}
|
||||
|
||||
<div class="text-center">
|
||||
<h1 class="display-4">Welcome</h1>
|
||||
<p>Learn about <a href="https://learn.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
|
||||
</div>
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||
|
||||
namespace RazorPages.Pages;
|
||||
|
||||
public class IndexModel : PageModel
|
||||
{
|
||||
private readonly ILogger<IndexModel> _logger;
|
||||
|
||||
public IndexModel(ILogger<IndexModel> logger)
|
||||
{
|
||||
_logger = logger;
|
||||
}
|
||||
|
||||
public void OnGet()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
@page
|
||||
@model PrivacyModel
|
||||
@{
|
||||
ViewData["Title"] = "Privacy Policy";
|
||||
}
|
||||
<h1>@ViewData["Title"]</h1>
|
||||
|
||||
<p>Use this page to detail your site's privacy policy.</p>
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||
|
||||
namespace RazorPages.Pages;
|
||||
|
||||
public class PrivacyModel : PageModel
|
||||
{
|
||||
private readonly ILogger<PrivacyModel> _logger;
|
||||
|
||||
public PrivacyModel(ILogger<PrivacyModel> logger)
|
||||
{
|
||||
_logger = logger;
|
||||
}
|
||||
|
||||
public void OnGet()
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>@ViewData["Title"] - RazorPages</title>
|
||||
<script type="importmap"></script>
|
||||
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
|
||||
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/RazorPages.styles.css" asp-append-version="true" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" asp-area="" asp-page="/Index">RazorPages</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse" aria-controls="navbarSupportedContent"
|
||||
aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="navbar-collapse collapse d-sm-inline-flex justify-content-between">
|
||||
<ul class="navbar-nav flex-grow-1">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-page="/Index">Home</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-page="/Privacy">Privacy</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<div class="container">
|
||||
<main role="main" class="pb-3">
|
||||
@RenderBody()
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<footer class="border-top footer text-muted">
|
||||
<div class="container">
|
||||
© 2025 - RazorPages - <a asp-area="" asp-page="/Privacy">Privacy</a>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="~/lib/jquery/dist/jquery.min.js"></script>
|
||||
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="~/js/site.js" asp-append-version="true"></script>
|
||||
|
||||
@await RenderSectionAsync("Scripts", required: false)
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
|
||||
for details on configuring this project to bundle and minify static web assets. */
|
||||
|
||||
a.navbar-brand {
|
||||
white-space: normal;
|
||||
text-align: center;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0077cc;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
color: #fff;
|
||||
background-color: #1b6ec2;
|
||||
border-color: #1861ac;
|
||||
}
|
||||
|
||||
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
|
||||
color: #fff;
|
||||
background-color: #1b6ec2;
|
||||
border-color: #1861ac;
|
||||
}
|
||||
|
||||
.border-top {
|
||||
border-top: 1px solid #e5e5e5;
|
||||
}
|
||||
.border-bottom {
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
|
||||
.box-shadow {
|
||||
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
|
||||
}
|
||||
|
||||
button.accept-policy {
|
||||
font-size: 1rem;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
.footer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
line-height: 60px;
|
||||
}
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
<script src="~/lib/jquery-validation/dist/jquery.validate.min.js"></script>
|
||||
<script src="~/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js"></script>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
@using RazorPages
|
||||
@namespace RazorPages.Pages
|
||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
@{
|
||||
Layout = "_Layout";
|
||||
}
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
// Add services to the container.
|
||||
builder.Services.AddRazorPages();
|
||||
|
||||
var app = builder.Build();
|
||||
|
||||
// Configure the HTTP request pipeline.
|
||||
if (!app.Environment.IsDevelopment())
|
||||
{
|
||||
app.UseExceptionHandler("/Error");
|
||||
// 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.UseRouting();
|
||||
|
||||
app.UseAuthorization();
|
||||
|
||||
app.MapStaticAssets();
|
||||
app.MapRazorPages()
|
||||
.WithStaticAssets();
|
||||
|
||||
app.Run();
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"$schema": "https://json.schemastore.org/launchsettings.json",
|
||||
"profiles": {
|
||||
"http": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"applicationUrl": "http://localhost:5036",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"https": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"applicationUrl": "https://localhost:7250;http://localhost:5036",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.5.2.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RazorPages", "RazorPages.csproj", "{51CC32C1-0D5E-D3C0-1AF3-B70A78AECA63}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{51CC32C1-0D5E-D3C0-1AF3-B70A78AECA63}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{51CC32C1-0D5E-D3C0-1AF3-B70A78AECA63}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{51CC32C1-0D5E-D3C0-1AF3-B70A78AECA63}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{51CC32C1-0D5E-D3C0-1AF3-B70A78AECA63}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {EB6290F2-4665-4A6E-94FF-0CFC30649617}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"DetailedErrors": true,
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
Binary file not shown.
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v9.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v9.0": {
|
||||
"RazorPages/1.0.0": {
|
||||
"runtime": {
|
||||
"RazorPages.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"RazorPages/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"DetailedErrors": true,
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
|
||||
|
|
@ -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("RazorPages")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("RazorPages")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("RazorPages")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
f6da8a4e058a1fb3706e258bc8141b5e2387e0625213ac28d9799dd2b4b40c3d
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
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 = RazorPages
|
||||
build_property.RootNamespace = RazorPages
|
||||
build_property.ProjectDir = /home/evansteele/Projects/RazorPages/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.RazorLangVersion = 9.0
|
||||
build_property.SupportLocalizedComponentNames =
|
||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||
build_property.MSBuildProjectDirectory = /home/evansteele/Projects/RazorPages
|
||||
build_property._RazorSourceGeneratorDebug =
|
||||
build_property.EffectiveAnalysisLevelStyle = 9.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
|
||||
[/home/evansteele/Projects/RazorPages/Pages/Error.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvRXJyb3IuY3NodG1s
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/home/evansteele/Projects/RazorPages/Pages/Index.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvSW5kZXguY3NodG1s
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/home/evansteele/Projects/RazorPages/Pages/Privacy.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvUHJpdmFjeS5jc2h0bWw=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/home/evansteele/Projects/RazorPages/Pages/Shared/_ValidationScriptsPartial.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvU2hhcmVkL19WYWxpZGF0aW9uU2NyaXB0c1BhcnRpYWwuY3NodG1s
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/home/evansteele/Projects/RazorPages/Pages/_ViewImports.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvX1ZpZXdJbXBvcnRzLmNzaHRtbA==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/home/evansteele/Projects/RazorPages/Pages/_ViewStart.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvX1ZpZXdTdGFydC5jc2h0bWw=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/home/evansteele/Projects/RazorPages/Pages/Shared/_Layout.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvU2hhcmVkL19MYXlvdXQuY3NodG1s
|
||||
build_metadata.AdditionalFiles.CssScope = b-8fjxvvsmas
|
||||
|
|
@ -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;
|
||||
|
|
@ -0,0 +1 @@
|
|||
d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute(("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" +
|
||||
"ory, Microsoft.AspNetCore.Mvc.Razor"))]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
343faaf28752abda679d11aae89b0b34179fcded9d92c9fcb94318ed764ad57b
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
/home/evansteele/Projects/RazorPages/bin/Debug/net9.0/appsettings.Development.json
|
||||
/home/evansteele/Projects/RazorPages/bin/Debug/net9.0/appsettings.json
|
||||
/home/evansteele/Projects/RazorPages/bin/Debug/net9.0/RazorPages.staticwebassets.runtime.json
|
||||
/home/evansteele/Projects/RazorPages/bin/Debug/net9.0/RazorPages.staticwebassets.endpoints.json
|
||||
/home/evansteele/Projects/RazorPages/bin/Debug/net9.0/RazorPages
|
||||
/home/evansteele/Projects/RazorPages/bin/Debug/net9.0/RazorPages.deps.json
|
||||
/home/evansteele/Projects/RazorPages/bin/Debug/net9.0/RazorPages.runtimeconfig.json
|
||||
/home/evansteele/Projects/RazorPages/bin/Debug/net9.0/RazorPages.dll
|
||||
/home/evansteele/Projects/RazorPages/bin/Debug/net9.0/RazorPages.pdb
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/RazorPages.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/RazorPages.AssemblyInfoInputs.cache
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/RazorPages.AssemblyInfo.cs
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/RazorPages.csproj.CoreCompileInputs.cache
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/RazorPages.MvcApplicationPartsAssemblyInfo.cache
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/RazorPages.RazorAssemblyInfo.cache
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/RazorPages.RazorAssemblyInfo.cs
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/scopedcss/Pages/Shared/_Layout.cshtml.rz.scp.css
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/scopedcss/bundle/RazorPages.styles.css
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/scopedcss/projectbundle/RazorPages.bundle.scp.css
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/8nx3d6ytb5-lugek5hnai.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/5arplyv19n-61n19gt1b8.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/9imvbcgyvo-fr7q2aak1r.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/8wdmp82xnq-bqjiyaj88i.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/v8fkmgrlic-c2jlpeoesf.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/mmshgzxn8k-erw9l3u2r3.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/d8y0p4jw3y-aexeepp0ev.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/f6cwwf1acb-d7shbmvgxk.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/f6t8ezrxju-ausgxo2sd3.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/gh10dsfo23-k8d9w2qqmf.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/vnvm4tac7q-cosvhxvwiu.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/61bnrel683-ub07r2b239.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/lip4l8pjbz-fvhpjtyr6v.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/e3fneklan2-b7pk76d08c.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/fzq27fnuxk-fsbi9cje9m.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/ikx8nfaf04-rzd6atqjts.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/80rbc9jrlm-ee0r1s7dh0.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/er1ot6xid3-dxx9fxp4il.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/rovz589on9-jd9uben2k1.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/7k5bbkuesf-khv3u5hwcm.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/lem2geqooj-r4e9w2rdcm.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/xnl1v5fyg4-lcd1t2u6c8.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/5tv576cogr-c2oey78nd0.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/2hnzfll0i2-tdbxkamptv.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/taipd3dn0m-j5mq2jizvt.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/gaog8ji4hb-06098lyss8.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/49bzlaie6u-nvvlpmu67g.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/wwtmc2mige-s35ty4nyc5.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/2sqwljfjmu-pj5nd1wqec.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/0eymdsycaa-46ein0sx1k.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/nubo5ewxqp-v0zj4ognzu.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/xa1jawz9eg-37tfw0ft22.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/5vqrtrh13m-hrwsygsryq.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/92n8wyono9-pk9g2wxc8p.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/lsr7ughfsx-ft3s53vfgj.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/l8j4jp8exn-6cfz1n2cew.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/3db899isxh-6pdc2jztkx.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/eyqeenm2n9-493y06b0oq.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/bq9g1yrem0-iovd86k7lj.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/4wpn9l033r-vr1egmr9el.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/15wfi9hj8j-kbrnm935zg.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/rt1xuoypru-jj8uyg4cgr.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/xtfsc07pp7-y7v9cxd14o.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/4120wridto-notf2xhcfb.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/y7rteovwwi-h1s4sie4z3.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/0q34v3ewky-63fj8s7r0e.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/09txmpl53u-0j3bgjxly4.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/dr6yqbkwju-47otxtyo56.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/iaztw2ldsr-4v8eqarkd7.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/rxis8d06h1-l3n5xuwxn8.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/jrrxd01w4j-ilo7uva0vt.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/qhf45smkrv-qlccset4i1.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/tpjlc6x5ws-lzl9nlhx6b.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/nyrcz8qjh9-ag7o75518u.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/tsjudsic7p-xzw0cte36n.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/d8foosdgf9-0i3buxo5is.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/4sk9c8kuxq-o1o13a6vjx.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/co7pvnwyh5-ttgo8qnofa.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/f9enblrisc-2z0ns9nrw6.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/547rvkvum2-muycvpuwrr.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/gb24d17oa6-87fc7y1x7t.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/hyjunw9lqp-jfsiqqwiad.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/slt7q5lton-41qpl64l1k.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/compressed/9czkzozsrx-41qpl64l1k.gz
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/staticwebassets.build.json
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/staticwebassets.development.json
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/staticwebassets.build.endpoints.json
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/staticwebassets/msbuild.RazorPages.Microsoft.AspNetCore.StaticWebAssets.props
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/staticwebassets/msbuild.RazorPages.Microsoft.AspNetCore.StaticWebAssetEndpoints.props
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/staticwebassets/msbuild.build.RazorPages.props
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.RazorPages.props
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.RazorPages.props
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/staticwebassets.pack.json
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/RazorPages.dll
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/refint/RazorPages.dll
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/RazorPages.pdb
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/RazorPages.genruntimeconfig.cache
|
||||
/home/evansteele/Projects/RazorPages/obj/Debug/net9.0/ref/RazorPages.dll
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
65d30589b2a8ddff1ad529bdbf8954638332441f8735f54e045200b11c4f735a
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue