Move and rename Blazor project

This commit is contained in:
2024-03-07 21:23:37 +00:00
parent 3affeac196
commit a18b68beca
27 changed files with 1870 additions and 13 deletions

View File

@@ -3,7 +3,9 @@ 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}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{3407557D-A21B-4F48-930C-6FDCE961ED2A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BeauFindlay.Client", "src\BeauFindlay\BeauFindlay.Client.csproj", "{426685C6-FA5A-4445-995C-C18D12FB8570}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -11,14 +13,17 @@ Global
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
{426685C6-FA5A-4445-995C-C18D12FB8570}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{426685C6-FA5A-4445-995C-C18D12FB8570}.Debug|Any CPU.Build.0 = Debug|Any CPU
{426685C6-FA5A-4445-995C-C18D12FB8570}.Release|Any CPU.ActiveCfg = Release|Any CPU
{426685C6-FA5A-4445-995C-C18D12FB8570}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{426685C6-FA5A-4445-995C-C18D12FB8570} = {3407557D-A21B-4F48-930C-6FDCE961ED2A}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {6D05FF39-4D7B-4F0D-8136-E48F71106C3A}
EndGlobalSection

View File

@@ -0,0 +1,13 @@
# Default ignored files
/shelf/
/workspace.xml
# Rider ignored files
/contentModel.xml
/modules.xml
/.idea.BeauFindlay.iml
/projectSettingsUpdater.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View File

@@ -0,0 +1 @@
BeauFindlay

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
</project>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="UserContentModel">
<attachedFolders />
<explicitIncludes />
<explicitExcludes />
</component>
</project>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/../../.." vcs="Git" />
</component>
</project>

View File

@@ -1,4 +1,4 @@
namespace BeauFindlay.Components.Typewriter;
namespace BeauFindlay.Client.Components.Typewriter;
public interface ITypewriterNotificationService
{

View File

@@ -1,4 +1,4 @@
namespace BeauFindlay.Components.Typewriter;
namespace BeauFindlay.Client.Components.Typewriter;
public static class TypewriterConstants
{

View File

@@ -1,4 +1,4 @@
namespace BeauFindlay.Components.Typewriter;
namespace BeauFindlay.Client.Components.Typewriter;
public class TypewriterNotificationService : ITypewriterNotificationService
{

View File

@@ -1,5 +1,5 @@
using BeauFindlay;
using BeauFindlay.Components.Typewriter;
using BeauFindlay.Client;
using BeauFindlay.Client.Components.Typewriter;
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;

View File

@@ -6,6 +6,6 @@
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.AspNetCore.Components.WebAssembly.Http
@using Microsoft.JSInterop
@using BeauFindlay
@using BeauFindlay.Layout
@using BeauFindlay.Components.Typewriter
@using BeauFindlay.Client
@using BeauFindlay.Client.Layout
@using BeauFindlay.Client.Components.Typewriter

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,8 @@
{
"dependencies": {
"autoprefixer": "^10.4.18",
"postcss": "^8.4.35",
"postcss-cli": "^11.0.0",
"tailwindcss": "^3.4.1"
}
}