Rename BlazorServerSide-CSharp template to Components-CSharp
This commit is contained in:
parent
07e2d5420c
commit
523fa285f2
|
|
@ -83,7 +83,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ComponentsApp.Server", "sam
|
|||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ComponentsApp.App", "samples\ComponentsApp.App\ComponentsApp.App.csproj", "{33C361D8-CAF1-47C0-A344-251AEF4FE1FE}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "BlazorServerSide-CSharp", "BlazorServerSide-CSharp", "{6BDD3018-3961-488E-97D3-1FB7320A8AC6}"
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Components-CSharp", "Components-CSharp", "{6BDD3018-3961-488E-97D3-1FB7320A8AC6}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Blazor.E2EPerformance", "blazor\benchmarks\Microsoft.AspNetCore.Blazor.E2EPerformance\Microsoft.AspNetCore.Blazor.E2EPerformance.csproj", "{CCEC81C4-1A3C-40DC-952F-074712C46180}"
|
||||
EndProject
|
||||
|
|
@ -105,9 +105,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorHosted-CSharp.Server"
|
|||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorHosted-CSharp.Shared", "blazor\src\Microsoft.AspNetCore.Blazor.Templates\content\BlazorHosted-CSharp\BlazorHosted-CSharp.Shared\BlazorHosted-CSharp.Shared.csproj", "{46B3D506-E351-4668-AC65-0719191B06A7}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorServerSide-CSharp.App", "blazor\src\Microsoft.AspNetCore.Blazor.Templates\content\BlazorServerSide-CSharp\BlazorServerSide-CSharp.App\BlazorServerSide-CSharp.App.csproj", "{7437B663-B5A8-43A3-9796-EE5A64B82E9E}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Components-CSharp.App", "blazor\src\Microsoft.AspNetCore.Blazor.Templates\content\Components-CSharp\Components-CSharp.App\Components-CSharp.App.csproj", "{7437B663-B5A8-43A3-9796-EE5A64B82E9E}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorServerSide-CSharp.Server", "blazor\src\Microsoft.AspNetCore.Blazor.Templates\content\BlazorServerSide-CSharp\BlazorServerSide-CSharp.Server\BlazorServerSide-CSharp.Server.csproj", "{24DE309C-A2F5-4726-A8D8-95BB44118CD8}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Components-CSharp.Server", "blazor\src\Microsoft.AspNetCore.Blazor.Templates\content\Components-CSharp\Components-CSharp.Server\Components-CSharp.Server.csproj", "{24DE309C-A2F5-4726-A8D8-95BB44118CD8}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorStandalone-CSharp", "blazor\src\Microsoft.AspNetCore.Blazor.Templates\content\BlazorStandalone-CSharp\BlazorStandalone-CSharp.csproj", "{2F92DE29-78E9-4A04-8F4F-F8F40E02FE98}"
|
||||
EndProject
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
|
@ -18,19 +18,19 @@
|
|||
"primaryOutputs": [
|
||||
{
|
||||
"condition": "(HostIdentifier == \"dotnetcli\" || HostIdentifier == \"dotnetcli-preview\")",
|
||||
"path": "BlazorServerSide-CSharp.sln"
|
||||
"path": "Components-CSharp.sln"
|
||||
},
|
||||
{
|
||||
"condition": "(HostIdentifier != \"dotnetcli\" && HostIdentifier != \"dotnetcli-preview\")",
|
||||
"path": "BlazorServerSide-CSharp.Server/BlazorServerSide-CSharp.Server.csproj"
|
||||
"path": "Components-CSharp.Server/Components-CSharp.Server.csproj"
|
||||
},
|
||||
{
|
||||
"condition": "(HostIdentifier != \"dotnetcli\" && HostIdentifier != \"dotnetcli-preview\")",
|
||||
"path": "BlazorServerSide-CSharp.App/BlazorServerSide-CSharp.App.csproj"
|
||||
"path": "Components-CSharp.App/Components-CSharp.App.csproj"
|
||||
}
|
||||
],
|
||||
"shortName": "blazorserverside",
|
||||
"sourceName": "BlazorServerSide-CSharp",
|
||||
"shortName": "Components",
|
||||
"sourceName": "Components-CSharp",
|
||||
"sources": [
|
||||
{
|
||||
"source": "./",
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
@using BlazorServerSide_CSharp.App.Services
|
||||
@using Components_CSharp.App.Services
|
||||
@page "/fetchdata"
|
||||
@inject WeatherForecastService ForecastService
|
||||
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using Microsoft.AspNetCore.Components.Hosting;
|
||||
|
||||
namespace BlazorServerSide_CSharp.App
|
||||
namespace Components_CSharp.App
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System;
|
||||
|
||||
namespace BlazorServerSide_CSharp.App.Services
|
||||
namespace Components_CSharp.App.Services
|
||||
{
|
||||
public class WeatherForecast
|
||||
{
|
||||
|
|
@ -2,7 +2,7 @@ using System;
|
|||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BlazorServerSide_CSharp.App.Services
|
||||
namespace Components_CSharp.App.Services
|
||||
{
|
||||
public class WeatherForecastService
|
||||
{
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<div class="top-row pl-4 navbar navbar-dark">
|
||||
<a class="navbar-brand" href="">BlazorServerSide-CSharp</a>
|
||||
<a class="navbar-brand" href="">Components-CSharp</a>
|
||||
<button class="navbar-toggler" onclick=@ToggleNavMenu>
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Components.Builder;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using BlazorServerSide_CSharp.App.Services;
|
||||
using Components_CSharp.App.Services;
|
||||
|
||||
namespace BlazorServerSide_CSharp.App
|
||||
namespace Components_CSharp.App
|
||||
{
|
||||
public class Startup
|
||||
{
|
||||
|
|
@ -2,5 +2,5 @@
|
|||
@using Microsoft.AspNetCore.Components.Layouts
|
||||
@using Microsoft.AspNetCore.Components.Routing
|
||||
@using Microsoft.JSInterop
|
||||
@using BlazorServerSide_CSharp.App
|
||||
@using BlazorServerSide_CSharp.App.Shared
|
||||
@using Components_CSharp.App
|
||||
@using Components_CSharp.App.Shared
|
||||
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>BlazorServerSide-CSharp</title>
|
||||
<title>Components-CSharp</title>
|
||||
<base href="/" />
|
||||
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
|
||||
<link href="css/site.css" rel="stylesheet" />
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\BlazorServerSide-CSharp.App\BlazorServerSide-CSharp.App.csproj" />
|
||||
<ProjectReference Include="..\Components-CSharp.App\Components-CSharp.App.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
using Microsoft.AspNetCore.Hosting;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
|
||||
namespace BlazorServerSide_CSharp.Server
|
||||
namespace Components_CSharp.Server
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
|
|
@ -6,7 +6,7 @@ using Microsoft.Extensions.DependencyInjection;
|
|||
using System.Linq;
|
||||
using System.Net.Mime;
|
||||
|
||||
namespace BlazorServerSide_CSharp.Server
|
||||
namespace Components_CSharp.Server
|
||||
{
|
||||
public class Startup
|
||||
{
|
||||
|
|
@ -2,9 +2,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
|||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.27130.2027
|
||||
MinimumVisualStudioVersion = 15.0.26124.0
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorServerSide-CSharp.Server", "BlazorServerSide-CSharp.Server\BlazorServerSide-CSharp.Server.csproj", "{650B3CE7-2E93-4CC4-9F46-466686815EAA}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Components-CSharp.Server", "Components-CSharp.Server\Components-CSharp.Server.csproj", "{650B3CE7-2E93-4CC4-9F46-466686815EAA}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorServerSide-CSharp.App", "BlazorServerSide-CSharp.App\BlazorServerSide-CSharp.App.csproj", "{5990939C-7E7B-4CFA-86FF-44CA5756498A}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Components-CSharp.App", "Components-CSharp.App\Components-CSharp.App.csproj", "{5990939C-7E7B-4CFA-86FF-44CA5756498A}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Loading…
Reference in New Issue