[REFACTOR] Name change projects and solution
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
using Microsoft.AspNetCore.Components;
|
using Microsoft.AspNetCore.Components;
|
||||||
|
|
||||||
namespace ImportUI.Components.Layout;
|
namespace Manager.App.Components.Layout;
|
||||||
|
|
||||||
public partial class ApplicationLayout
|
public partial class ApplicationLayout
|
||||||
{
|
{
|
@@ -1,7 +1,7 @@
|
|||||||
using Microsoft.AspNetCore.Components;
|
using Microsoft.AspNetCore.Components;
|
||||||
using MudBlazor;
|
using MudBlazor;
|
||||||
|
|
||||||
namespace ImportUI.Components.Layout;
|
namespace Manager.App.Components.Layout;
|
||||||
|
|
||||||
public partial class BaseLayout
|
public partial class BaseLayout
|
||||||
{
|
{
|
@@ -1,6 +1,6 @@
|
|||||||
using Microsoft.AspNetCore.Components;
|
using Microsoft.AspNetCore.Components;
|
||||||
|
|
||||||
namespace ImportUI.Components.Layout;
|
namespace Manager.App.Components.Layout;
|
||||||
|
|
||||||
public partial class MainLayout
|
public partial class MainLayout
|
||||||
{
|
{
|
@@ -6,8 +6,8 @@
|
|||||||
@using static Microsoft.AspNetCore.Components.Web.RenderMode
|
@using static Microsoft.AspNetCore.Components.Web.RenderMode
|
||||||
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
||||||
@using Microsoft.JSInterop
|
@using Microsoft.JSInterop
|
||||||
@using ImportUI
|
@using Manager.App
|
||||||
@using ImportUI.Components
|
@using Manager.App.Components
|
||||||
|
|
||||||
@* MudBlazor *@
|
@* MudBlazor *@
|
||||||
@using MudBlazor
|
@using MudBlazor
|
@@ -3,7 +3,7 @@ using DotBased.Logging.MEL;
|
|||||||
using DotBased.Logging.Serilog;
|
using DotBased.Logging.Serilog;
|
||||||
using Serilog;
|
using Serilog;
|
||||||
|
|
||||||
namespace ImportUI;
|
namespace Manager.App;
|
||||||
|
|
||||||
public static class DependencyInjection
|
public static class DependencyInjection
|
||||||
{
|
{
|
@@ -21,7 +21,8 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\YtMiner\YtMiner.csproj" />
|
<ProjectReference Include="..\Manager.Shared\Manager.Shared.csproj" />
|
||||||
|
<ProjectReference Include="..\Manager.YouTube\Manager.YouTube.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
@@ -1,5 +1,5 @@
|
|||||||
using ImportUI;
|
using Manager.App;
|
||||||
using ImportUI.Components;
|
using Manager.App.Components;
|
||||||
using MudBlazor.Services;
|
using MudBlazor.Services;
|
||||||
|
|
||||||
var builder = WebApplication.CreateBuilder(args);
|
var builder = WebApplication.CreateBuilder(args);
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
13
Manager.Data/Manager.Data.csproj
Normal file
13
Manager.Data/Manager.Data.csproj
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Manager.Shared\Manager.Shared.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
13
Manager.YouTube/Manager.YouTube.csproj
Normal file
13
Manager.YouTube/Manager.YouTube.csproj
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Manager.Shared\Manager.Shared.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
34
YouTube-Manager.sln
Normal file
34
YouTube-Manager.sln
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Manager.App", "Manager.App\Manager.App.csproj", "{5831AFAE-5C0C-4BFE-90FF-13131822F2CB}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Manager.Shared", "Manager.Shared\Manager.Shared.csproj", "{D879043A-033A-41B2-9D1C-2F189F061498}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Manager.Data", "Manager.Data\Manager.Data.csproj", "{B23EF770-9060-42CF-BBC1-599DF8E80A6E}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Manager.YouTube", "Manager.YouTube\Manager.YouTube.csproj", "{55A0F095-C9A4-41CC-93F9-E860FBA3E810}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{5831AFAE-5C0C-4BFE-90FF-13131822F2CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{5831AFAE-5C0C-4BFE-90FF-13131822F2CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{5831AFAE-5C0C-4BFE-90FF-13131822F2CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{5831AFAE-5C0C-4BFE-90FF-13131822F2CB}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{D879043A-033A-41B2-9D1C-2F189F061498}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{D879043A-033A-41B2-9D1C-2F189F061498}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{D879043A-033A-41B2-9D1C-2F189F061498}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{D879043A-033A-41B2-9D1C-2F189F061498}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{B23EF770-9060-42CF-BBC1-599DF8E80A6E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{B23EF770-9060-42CF-BBC1-599DF8E80A6E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{B23EF770-9060-42CF-BBC1-599DF8E80A6E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{B23EF770-9060-42CF-BBC1-599DF8E80A6E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{55A0F095-C9A4-41CC-93F9-E860FBA3E810}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{55A0F095-C9A4-41CC-93F9-E860FBA3E810}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{55A0F095-C9A4-41CC-93F9-E860FBA3E810}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{55A0F095-C9A4-41CC-93F9-E860FBA3E810}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
22
YtImport.sln
22
YtImport.sln
@@ -1,22 +0,0 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImportUI", "ImportUI\ImportUI.csproj", "{5831AFAE-5C0C-4BFE-90FF-13131822F2CB}"
|
|
||||||
EndProject
|
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "YtMiner", "YtMiner\YtMiner.csproj", "{26EC02BE-52F7-4611-82AB-214CED90C583}"
|
|
||||||
EndProject
|
|
||||||
Global
|
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
||||||
Debug|Any CPU = Debug|Any CPU
|
|
||||||
Release|Any CPU = Release|Any CPU
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
||||||
{5831AFAE-5C0C-4BFE-90FF-13131822F2CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{5831AFAE-5C0C-4BFE-90FF-13131822F2CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{5831AFAE-5C0C-4BFE-90FF-13131822F2CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
||||||
{5831AFAE-5C0C-4BFE-90FF-13131822F2CB}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
||||||
{26EC02BE-52F7-4611-82AB-214CED90C583}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{26EC02BE-52F7-4611-82AB-214CED90C583}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{26EC02BE-52F7-4611-82AB-214CED90C583}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
||||||
{26EC02BE-52F7-4611-82AB-214CED90C583}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
|
Reference in New Issue
Block a user