Skip to content

Commit

Permalink
MAUIのコンポーネントをRCLに移動
Browse files Browse the repository at this point in the history
  • Loading branch information
nekojoker committed Jan 6, 2024
1 parent 7587b49 commit a958aaa
Show file tree
Hide file tree
Showing 16 changed files with 9 additions and 409 deletions.
4 changes: 4 additions & 0 deletions BlazorHybrid.Maui/BlazorHybrid.Maui.csproj
Expand Up @@ -64,4 +64,8 @@
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\BlazorHybrid.RCL\BlazorHybrid.RCL.csproj" />
</ItemGroup>

</Project>
17 changes: 0 additions & 17 deletions BlazorHybrid.Maui/Components/Layout/MainLayout.razor

This file was deleted.

77 changes: 0 additions & 77 deletions BlazorHybrid.Maui/Components/Layout/MainLayout.razor.css

This file was deleted.

27 changes: 0 additions & 27 deletions BlazorHybrid.Maui/Components/Layout/NavMenu.razor

This file was deleted.

101 changes: 0 additions & 101 deletions BlazorHybrid.Maui/Components/Layout/NavMenu.razor.css

This file was deleted.

16 changes: 0 additions & 16 deletions BlazorHybrid.Maui/Components/Pages/Counter.razor

This file was deleted.

5 changes: 0 additions & 5 deletions BlazorHybrid.Maui/Components/Pages/Home.razor

This file was deleted.

61 changes: 0 additions & 61 deletions BlazorHybrid.Maui/Components/Pages/Weather.razor

This file was deleted.

3 changes: 2 additions & 1 deletion BlazorHybrid.Maui/MainPage.xaml
Expand Up @@ -2,12 +2,13 @@
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:BlazorHybrid.Maui"
xmlns:rcl="clr-namespace:BlazorHybrid.RCL.Components;assembly=BlazorHybrid.RCL"
x:Class="BlazorHybrid.Maui.MainPage"
BackgroundColor="{DynamicResource PageBackgroundColor}">

<BlazorWebView x:Name="blazorWebView" HostPage="wwwroot/index.html">
<BlazorWebView.RootComponents>
<RootComponent Selector="#app" ComponentType="{x:Type local:Routes}" />
<RootComponent Selector="#app" ComponentType="{x:Type rcl:Routes}" />
</BlazorWebView.RootComponents>
</BlazorWebView>

Expand Down
6 changes: 0 additions & 6 deletions BlazorHybrid.Maui/Routes.razor

This file was deleted.

1 change: 0 additions & 1 deletion BlazorHybrid.Maui/_Imports.razor
Expand Up @@ -6,4 +6,3 @@
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.JSInterop
@using BlazorHybrid.Maui
@using BlazorHybrid.Maui.Components

0 comments on commit a958aaa

Please sign in to comment.