diff --git a/BeauFindlay/.idea/.idea.BeauFindlay/.idea/.gitignore b/BeauFindlay/.idea/.idea.BeauFindlay/.idea/.gitignore new file mode 100644 index 0000000..a16a007 --- /dev/null +++ b/BeauFindlay/.idea/.idea.BeauFindlay/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/modules.xml +/projectSettingsUpdater.xml +/.idea.BeauFindlay.iml +/contentModel.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/BeauFindlay/.idea/.idea.BeauFindlay/.idea/encodings.xml b/BeauFindlay/.idea/.idea.BeauFindlay/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/BeauFindlay/.idea/.idea.BeauFindlay/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/BeauFindlay/.idea/.idea.BeauFindlay/.idea/indexLayout.xml b/BeauFindlay/.idea/.idea.BeauFindlay/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/BeauFindlay/.idea/.idea.BeauFindlay/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/BeauFindlay/.idea/.idea.BeauFindlay/.idea/vcs.xml b/BeauFindlay/.idea/.idea.BeauFindlay/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/BeauFindlay/.idea/.idea.BeauFindlay/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/BeauFindlay/BeauFindlay.sln b/BeauFindlay/BeauFindlay.sln new file mode 100644 index 0000000..5bef8ea --- /dev/null +++ b/BeauFindlay/BeauFindlay.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34622.214 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BeauFindlay", "BeauFindlay\BeauFindlay.csproj", "{F6AA110B-9F12-441F-858C-AE476CB9B107}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F6AA110B-9F12-441F-858C-AE476CB9B107}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F6AA110B-9F12-441F-858C-AE476CB9B107}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F6AA110B-9F12-441F-858C-AE476CB9B107}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F6AA110B-9F12-441F-858C-AE476CB9B107}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {6D05FF39-4D7B-4F0D-8136-E48F71106C3A} + EndGlobalSection +EndGlobal diff --git a/BeauFindlay/BeauFindlay/App.razor b/BeauFindlay/BeauFindlay/App.razor new file mode 100644 index 0000000..6fd3ed1 --- /dev/null +++ b/BeauFindlay/BeauFindlay/App.razor @@ -0,0 +1,12 @@ + + + + + + + Not found + +

Sorry, there's nothing at this address.

+
+
+
diff --git a/BeauFindlay/BeauFindlay/BeauFindlay.csproj b/BeauFindlay/BeauFindlay/BeauFindlay.csproj new file mode 100644 index 0000000..e8c6c7a --- /dev/null +++ b/BeauFindlay/BeauFindlay/BeauFindlay.csproj @@ -0,0 +1,14 @@ + + + + net8.0 + enable + enable + + + + + + + + diff --git a/BeauFindlay/BeauFindlay/Layout/MainLayout.razor b/BeauFindlay/BeauFindlay/Layout/MainLayout.razor new file mode 100644 index 0000000..e1a9a75 --- /dev/null +++ b/BeauFindlay/BeauFindlay/Layout/MainLayout.razor @@ -0,0 +1,3 @@ +@inherits LayoutComponentBase + +@Body diff --git a/BeauFindlay/BeauFindlay/Pages/Home.razor b/BeauFindlay/BeauFindlay/Pages/Home.razor new file mode 100644 index 0000000..d01a7f0 --- /dev/null +++ b/BeauFindlay/BeauFindlay/Pages/Home.razor @@ -0,0 +1,3 @@ +@page "/" + +Home \ No newline at end of file diff --git a/BeauFindlay/BeauFindlay/Program.cs b/BeauFindlay/BeauFindlay/Program.cs new file mode 100644 index 0000000..ee6f99b --- /dev/null +++ b/BeauFindlay/BeauFindlay/Program.cs @@ -0,0 +1,11 @@ +using BeauFindlay; +using Microsoft.AspNetCore.Components.Web; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; + +var builder = WebAssemblyHostBuilder.CreateDefault(args); +builder.RootComponents.Add("#app"); +builder.RootComponents.Add("head::after"); + +builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); + +await builder.Build().RunAsync(); diff --git a/BeauFindlay/BeauFindlay/Properties/launchSettings.json b/BeauFindlay/BeauFindlay/Properties/launchSettings.json new file mode 100644 index 0000000..ae8c9d5 --- /dev/null +++ b/BeauFindlay/BeauFindlay/Properties/launchSettings.json @@ -0,0 +1,41 @@ +{ + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:60918", + "sslPort": 44313 + } + }, + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "applicationUrl": "http://localhost:5218", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "applicationUrl": "https://localhost:7288;http://localhost:5218", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/BeauFindlay/BeauFindlay/_Imports.razor b/BeauFindlay/BeauFindlay/_Imports.razor new file mode 100644 index 0000000..4a99c9f --- /dev/null +++ b/BeauFindlay/BeauFindlay/_Imports.razor @@ -0,0 +1,10 @@ +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.Web.Virtualization +@using Microsoft.AspNetCore.Components.WebAssembly.Http +@using Microsoft.JSInterop +@using BeauFindlay +@using BeauFindlay.Layout diff --git a/BeauFindlay/BeauFindlay/wwwroot/css/app.css b/BeauFindlay/BeauFindlay/wwwroot/css/app.css new file mode 100644 index 0000000..e69de29 diff --git a/BeauFindlay/BeauFindlay/wwwroot/index.html b/BeauFindlay/BeauFindlay/wwwroot/index.html new file mode 100644 index 0000000..dade1ed --- /dev/null +++ b/BeauFindlay/BeauFindlay/wwwroot/index.html @@ -0,0 +1,31 @@ + + + + + + + BeauFindlay + + + + + + +
+ + + + +
+
+ +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + +