From 63bdaf93ec0c7660ec332d6e222aad65a815ea77 Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Thu, 10 Jul 2025 16:25:56 -0700 Subject: [PATCH] Init commit --- boredcareers.sln | 34 +++++++ boredcareers/App.razor | 12 +++ boredcareers/MainLayout.razor | 3 + boredcareers/Pages/Index.razor | 2 + boredcareers/Pages/_Host.cshtml | 30 ++++++ boredcareers/Program.cs | 25 +++++ boredcareers/Properties/launchSettings.json | 35 +++++++ boredcareers/_Imports.razor | 4 + boredcareers/appsettings.Development.json | 9 ++ boredcareers/appsettings.json | 9 ++ boredcareers/boredcareers.csproj | 9 ++ ...CoreApp,Version=v7.0.AssemblyAttributes.cs | 4 + .../Debug/net7.0/boredcareers.AssemblyInfo.cs | 22 +++++ .../boredcareers.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 41 +++++++++ .../net7.0/boredcareers.GlobalUsings.g.cs | 17 ++++ .../boredcareers.RazorAssemblyInfo.cache | 1 + .../net7.0/boredcareers.RazorAssemblyInfo.cs | 17 ++++ .../Debug/net7.0/boredcareers.assets.cache | Bin 0 -> 149 bytes .../obj/boredcareers.csproj.nuget.dgspec.json | 81 +++++++++++++++++ .../obj/boredcareers.csproj.nuget.g.props | 15 +++ .../obj/boredcareers.csproj.nuget.g.targets | 2 + boredcareers/obj/project.assets.json | 86 ++++++++++++++++++ boredcareers/obj/project.nuget.cache | 11 +++ boredcareers/wwwroot/css/site.css | 28 ++++++ 25 files changed, 498 insertions(+) create mode 100644 boredcareers.sln create mode 100644 boredcareers/App.razor create mode 100644 boredcareers/MainLayout.razor create mode 100644 boredcareers/Pages/Index.razor create mode 100644 boredcareers/Pages/_Host.cshtml create mode 100644 boredcareers/Program.cs create mode 100644 boredcareers/Properties/launchSettings.json create mode 100644 boredcareers/_Imports.razor create mode 100644 boredcareers/appsettings.Development.json create mode 100644 boredcareers/appsettings.json create mode 100644 boredcareers/boredcareers.csproj create mode 100644 boredcareers/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs create mode 100644 boredcareers/obj/Debug/net7.0/boredcareers.AssemblyInfo.cs create mode 100644 boredcareers/obj/Debug/net7.0/boredcareers.AssemblyInfoInputs.cache create mode 100644 boredcareers/obj/Debug/net7.0/boredcareers.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 boredcareers/obj/Debug/net7.0/boredcareers.GlobalUsings.g.cs create mode 100644 boredcareers/obj/Debug/net7.0/boredcareers.RazorAssemblyInfo.cache create mode 100644 boredcareers/obj/Debug/net7.0/boredcareers.RazorAssemblyInfo.cs create mode 100644 boredcareers/obj/Debug/net7.0/boredcareers.assets.cache create mode 100644 boredcareers/obj/boredcareers.csproj.nuget.dgspec.json create mode 100644 boredcareers/obj/boredcareers.csproj.nuget.g.props create mode 100644 boredcareers/obj/boredcareers.csproj.nuget.g.targets create mode 100644 boredcareers/obj/project.assets.json create mode 100644 boredcareers/obj/project.nuget.cache create mode 100644 boredcareers/wwwroot/css/site.css diff --git a/boredcareers.sln b/boredcareers.sln new file mode 100644 index 0000000..6e891b4 --- /dev/null +++ b/boredcareers.sln @@ -0,0 +1,34 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "boredcareers", "boredcareers\boredcareers.csproj", "{05900A3D-9780-47A4-90D9-D99673FA5EDB}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {05900A3D-9780-47A4-90D9-D99673FA5EDB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {05900A3D-9780-47A4-90D9-D99673FA5EDB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {05900A3D-9780-47A4-90D9-D99673FA5EDB}.Debug|x64.ActiveCfg = Debug|Any CPU + {05900A3D-9780-47A4-90D9-D99673FA5EDB}.Debug|x64.Build.0 = Debug|Any CPU + {05900A3D-9780-47A4-90D9-D99673FA5EDB}.Debug|x86.ActiveCfg = Debug|Any CPU + {05900A3D-9780-47A4-90D9-D99673FA5EDB}.Debug|x86.Build.0 = Debug|Any CPU + {05900A3D-9780-47A4-90D9-D99673FA5EDB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {05900A3D-9780-47A4-90D9-D99673FA5EDB}.Release|Any CPU.Build.0 = Release|Any CPU + {05900A3D-9780-47A4-90D9-D99673FA5EDB}.Release|x64.ActiveCfg = Release|Any CPU + {05900A3D-9780-47A4-90D9-D99673FA5EDB}.Release|x64.Build.0 = Release|Any CPU + {05900A3D-9780-47A4-90D9-D99673FA5EDB}.Release|x86.ActiveCfg = Release|Any CPU + {05900A3D-9780-47A4-90D9-D99673FA5EDB}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/boredcareers/App.razor b/boredcareers/App.razor new file mode 100644 index 0000000..6fd3ed1 --- /dev/null +++ b/boredcareers/App.razor @@ -0,0 +1,12 @@ + + + + + + + Not found + +

Sorry, there's nothing at this address.

+
+
+
diff --git a/boredcareers/MainLayout.razor b/boredcareers/MainLayout.razor new file mode 100644 index 0000000..a5af348 --- /dev/null +++ b/boredcareers/MainLayout.razor @@ -0,0 +1,3 @@ +@inherits LayoutComponentBase + +
@Body
diff --git a/boredcareers/Pages/Index.razor b/boredcareers/Pages/Index.razor new file mode 100644 index 0000000..e32a7a6 --- /dev/null +++ b/boredcareers/Pages/Index.razor @@ -0,0 +1,2 @@ +@page "/" + diff --git a/boredcareers/Pages/_Host.cshtml b/boredcareers/Pages/_Host.cshtml new file mode 100644 index 0000000..1c498b7 --- /dev/null +++ b/boredcareers/Pages/_Host.cshtml @@ -0,0 +1,30 @@ +@page "/" +@using Microsoft.AspNetCore.Components.Web +@namespace boredcareers.Pages +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers + + + + + + + + + + + + +
+ + An error has occurred. This application may no longer respond until reloaded. + + + An unhandled exception has occurred. See browser dev tools for details. + + Reload + 🗙 +
+ + + + diff --git a/boredcareers/Program.cs b/boredcareers/Program.cs new file mode 100644 index 0000000..96309f8 --- /dev/null +++ b/boredcareers/Program.cs @@ -0,0 +1,25 @@ +using Microsoft.AspNetCore.Components; +using Microsoft.AspNetCore.Components.Web; + +var builder = WebApplication.CreateBuilder(args); +builder.Services.AddRazorPages(); +builder.Services.AddServerSideBlazor(); + +var app = builder.Build(); + +if (!app.Environment.IsDevelopment()) +{ + // 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.UseStaticFiles(); + +app.UseRouting(); + +app.MapBlazorHub(); +app.MapFallbackToPage("/_Host"); + +app.Run(); diff --git a/boredcareers/Properties/launchSettings.json b/boredcareers/Properties/launchSettings.json new file mode 100644 index 0000000..1b9f4a5 --- /dev/null +++ b/boredcareers/Properties/launchSettings.json @@ -0,0 +1,35 @@ +{ + "iisSettings": { + "iisExpress": { + "applicationUrl": "http://localhost:1409", + "sslPort": 44381 + } + }, + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "http://localhost:5019", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "https://localhost:7233;http://localhost:5019", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/boredcareers/_Imports.razor b/boredcareers/_Imports.razor new file mode 100644 index 0000000..446a5f5 --- /dev/null +++ b/boredcareers/_Imports.razor @@ -0,0 +1,4 @@ +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.JSInterop +@using boredcareers diff --git a/boredcareers/appsettings.Development.json b/boredcareers/appsettings.Development.json new file mode 100644 index 0000000..770d3e9 --- /dev/null +++ b/boredcareers/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "DetailedErrors": true, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/boredcareers/appsettings.json b/boredcareers/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/boredcareers/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/boredcareers/boredcareers.csproj b/boredcareers/boredcareers.csproj new file mode 100644 index 0000000..4c2bb77 --- /dev/null +++ b/boredcareers/boredcareers.csproj @@ -0,0 +1,9 @@ + + + + net7.0 + enable + enable + + + diff --git a/boredcareers/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/boredcareers/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..d69481d --- /dev/null +++ b/boredcareers/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/boredcareers/obj/Debug/net7.0/boredcareers.AssemblyInfo.cs b/boredcareers/obj/Debug/net7.0/boredcareers.AssemblyInfo.cs new file mode 100644 index 0000000..75b43f9 --- /dev/null +++ b/boredcareers/obj/Debug/net7.0/boredcareers.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("boredcareers")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("boredcareers")] +[assembly: System.Reflection.AssemblyTitleAttribute("boredcareers")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/boredcareers/obj/Debug/net7.0/boredcareers.AssemblyInfoInputs.cache b/boredcareers/obj/Debug/net7.0/boredcareers.AssemblyInfoInputs.cache new file mode 100644 index 0000000..7e55418 --- /dev/null +++ b/boredcareers/obj/Debug/net7.0/boredcareers.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +eaab1cfe5a7558d77b39870666fb4fe805a5f17703064d10098b02831c451100 diff --git a/boredcareers/obj/Debug/net7.0/boredcareers.GeneratedMSBuildEditorConfig.editorconfig b/boredcareers/obj/Debug/net7.0/boredcareers.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b913055 --- /dev/null +++ b/boredcareers/obj/Debug/net7.0/boredcareers.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,41 @@ +is_global = true +build_property.TargetFramework = net7.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 = boredcareers +build_property.RootNamespace = boredcareers +build_property.ProjectDir = /home/derek/Desktop/boredcareers/boredcareers/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 7.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /home/derek/Desktop/boredcareers/boredcareers +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 7.0 +build_property.EnableCodeStyleSeverity = + +[/home/derek/Desktop/boredcareers/boredcareers/App.razor] +build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/home/derek/Desktop/boredcareers/boredcareers/MainLayout.razor] +build_metadata.AdditionalFiles.TargetPath = TWFpbkxheW91dC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/home/derek/Desktop/boredcareers/boredcareers/Pages/Index.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXMvSW5kZXgucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/home/derek/Desktop/boredcareers/boredcareers/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/home/derek/Desktop/boredcareers/boredcareers/Pages/_Host.cshtml] +build_metadata.AdditionalFiles.TargetPath = UGFnZXMvX0hvc3QuY3NodG1s +build_metadata.AdditionalFiles.CssScope = diff --git a/boredcareers/obj/Debug/net7.0/boredcareers.GlobalUsings.g.cs b/boredcareers/obj/Debug/net7.0/boredcareers.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/boredcareers/obj/Debug/net7.0/boredcareers.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +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; diff --git a/boredcareers/obj/Debug/net7.0/boredcareers.RazorAssemblyInfo.cache b/boredcareers/obj/Debug/net7.0/boredcareers.RazorAssemblyInfo.cache new file mode 100644 index 0000000..ecb9c97 --- /dev/null +++ b/boredcareers/obj/Debug/net7.0/boredcareers.RazorAssemblyInfo.cache @@ -0,0 +1 @@ +d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0 diff --git a/boredcareers/obj/Debug/net7.0/boredcareers.RazorAssemblyInfo.cs b/boredcareers/obj/Debug/net7.0/boredcareers.RazorAssemblyInfo.cs new file mode 100644 index 0000000..b594f0f --- /dev/null +++ b/boredcareers/obj/Debug/net7.0/boredcareers.RazorAssemblyInfo.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +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. + diff --git a/boredcareers/obj/Debug/net7.0/boredcareers.assets.cache b/boredcareers/obj/Debug/net7.0/boredcareers.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..353defe1c67851e1eac83b69565fbdf138164b11 GIT binary patch literal 149 zcmWIWc6a1qU|?8he`A-~`r3XUtzCcKthlG=>3%@NrNcUnrT_U#<)eq=Cj!+F3mAb4 kW%M)hb5r$GQj1cv_4V>f(^E_I3lfvF6Vp?R^$8gS0MjZQTL1t6 literal 0 HcmV?d00001 diff --git a/boredcareers/obj/boredcareers.csproj.nuget.dgspec.json b/boredcareers/obj/boredcareers.csproj.nuget.dgspec.json new file mode 100644 index 0000000..59fbc13 --- /dev/null +++ b/boredcareers/obj/boredcareers.csproj.nuget.dgspec.json @@ -0,0 +1,81 @@ +{ + "format": 1, + "restore": { + "/home/derek/Desktop/boredcareers/boredcareers/boredcareers.csproj": {} + }, + "projects": { + "/home/derek/Desktop/boredcareers/boredcareers/boredcareers.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/derek/Desktop/boredcareers/boredcareers/boredcareers.csproj", + "projectName": "boredcareers", + "projectPath": "/home/derek/Desktop/boredcareers/boredcareers/boredcareers.csproj", + "packagesPath": "/home/derek/.nuget/packages/", + "outputPath": "/home/derek/Desktop/boredcareers/boredcareers/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/derek/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[7.0.20, 7.0.20]" + }, + { + "name": "Microsoft.NETCore.App.Host.linux-x64", + "version": "[7.0.20, 7.0.20]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.301/RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/boredcareers/obj/boredcareers.csproj.nuget.g.props b/boredcareers/obj/boredcareers.csproj.nuget.g.props new file mode 100644 index 0000000..032e0ba --- /dev/null +++ b/boredcareers/obj/boredcareers.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/derek/.nuget/packages/ + /home/derek/.nuget/packages/ + PackageReference + 6.14.0 + + + + + \ No newline at end of file diff --git a/boredcareers/obj/boredcareers.csproj.nuget.g.targets b/boredcareers/obj/boredcareers.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/boredcareers/obj/boredcareers.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/boredcareers/obj/project.assets.json b/boredcareers/obj/project.assets.json new file mode 100644 index 0000000..4c62d30 --- /dev/null +++ b/boredcareers/obj/project.assets.json @@ -0,0 +1,86 @@ +{ + "version": 3, + "targets": { + "net7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net7.0": [] + }, + "packageFolders": { + "/home/derek/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/derek/Desktop/boredcareers/boredcareers/boredcareers.csproj", + "projectName": "boredcareers", + "projectPath": "/home/derek/Desktop/boredcareers/boredcareers/boredcareers.csproj", + "packagesPath": "/home/derek/.nuget/packages/", + "outputPath": "/home/derek/Desktop/boredcareers/boredcareers/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/derek/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[7.0.20, 7.0.20]" + }, + { + "name": "Microsoft.NETCore.App.Host.linux-x64", + "version": "[7.0.20, 7.0.20]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.301/RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/boredcareers/obj/project.nuget.cache b/boredcareers/obj/project.nuget.cache new file mode 100644 index 0000000..8cb606b --- /dev/null +++ b/boredcareers/obj/project.nuget.cache @@ -0,0 +1,11 @@ +{ + "version": 2, + "dgSpecHash": "P0SXypqg0Bc=", + "success": true, + "projectFilePath": "/home/derek/Desktop/boredcareers/boredcareers/boredcareers.csproj", + "expectedPackageFiles": [ + "/home/derek/.nuget/packages/microsoft.aspnetcore.app.ref/7.0.20/microsoft.aspnetcore.app.ref.7.0.20.nupkg.sha512", + "/home/derek/.nuget/packages/microsoft.netcore.app.host.linux-x64/7.0.20/microsoft.netcore.app.host.linux-x64.7.0.20.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/boredcareers/wwwroot/css/site.css b/boredcareers/wwwroot/css/site.css new file mode 100644 index 0000000..08e7f0b --- /dev/null +++ b/boredcareers/wwwroot/css/site.css @@ -0,0 +1,28 @@ +#blazor-error-ui { + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss { + cursor: pointer; + position: absolute; + right: 3.5rem; + top: 0.5rem; + } + +.blazor-error-boundary { + background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121; + padding: 1rem 1rem 1rem 3.7rem; + color: white; +} + + .blazor-error-boundary::after { + content: "An error has occurred." + }