Change project name

This commit is contained in:
Stone_Red
2024-11-05 16:35:23 +01:00
parent 740e1323ea
commit d4538637f3
21 changed files with 32 additions and 35 deletions
-25
View File
@@ -1,25 +0,0 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.002.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "my-blazor-project", "my-blazor-project\my-blazor-project.csproj", "{F3B534F1-3B51-49B4-A2E2-E4D3D3550CD8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F3B534F1-3B51-49B4-A2E2-E4D3D3550CD8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F3B534F1-3B51-49B4-A2E2-E4D3D3550CD8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F3B534F1-3B51-49B4-A2E2-E4D3D3550CD8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F3B534F1-3B51-49B4-A2E2-E4D3D3550CD8}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3C9BDA8B-F674-4D74-BBD4-5E64692297DA}
EndGlobalSection
EndGlobal
+22
View File
@@ -0,0 +1,22 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TphBlazorSpotlightExample", "src\TphBlazorSpotlightExample.csproj", "{A9E78A8F-049E-4B4B-A8D2-580A9E3E88FA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A9E78A8F-049E-4B4B-A8D2-580A9E3E88FA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A9E78A8F-049E-4B4B-A8D2-580A9E3E88FA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A9E78A8F-049E-4B4B-A8D2-580A9E3E88FA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A9E78A8F-049E-4B4B-A8D2-580A9E3E88FA}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
@@ -1,6 +1,6 @@
<div class="top-row ps-3 navbar navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="">my-blazor-project</a>
<a class="navbar-brand" href="">TphBlazorSpotlightExample</a>
<button title="Navigation menu" class="navbar-toggler" @onclick="ToggleNavMenu">
<span class="navbar-toggler-icon"></span>
</button>
@@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using my_blazor_project;
using TphBlazorSpotlightExample;
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("#app");
@@ -4,8 +4,8 @@
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:6602",
"sslPort": 44348
"applicationUrl": "http://localhost:27436",
"sslPort": 44350
}
},
"profiles": {
@@ -14,7 +14,7 @@
"dotnetRunMessages": true,
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"applicationUrl": "http://localhost:5229",
"applicationUrl": "http://localhost:5285",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
@@ -24,7 +24,7 @@
"dotnetRunMessages": true,
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"applicationUrl": "https://localhost:7193;http://localhost:5229",
"applicationUrl": "https://localhost:7153;http://localhost:5285",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
@@ -6,5 +6,5 @@
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.AspNetCore.Components.WebAssembly.Http
@using Microsoft.JSInterop
@using my_blazor_project
@using my_blazor_project.Layout
@using TphBlazorSpotlightExample
@using TphBlazorSpotlightExample.Layout

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

@@ -4,12 +4,12 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>my-blazor-project</title>
<title>TphBlazorSpotlightExample</title>
<base href="/" />
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
<link rel="stylesheet" href="css/app.css" />
<link rel="icon" type="image/png" href="favicon.png" />
<link href="my-blazor-project.styles.css" rel="stylesheet" />
<link href="TphBlazorSpotlightExample.styles.css" rel="stylesheet" />
</head>
<body>