Skip to content

Commit

Permalink
Merge pull request #107 from Grange007/dev
Browse files Browse the repository at this point in the history
Rebuild: ♻️Reconstruct MAUI Client with MVVM
  • Loading branch information
ONLOX authored Mar 3, 2024
2 parents f3aaa56 + 94f7c47 commit 4311459
Show file tree
Hide file tree
Showing 25 changed files with 2,975 additions and 1,291 deletions.
1 change: 1 addition & 0 deletions logic/Client/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<Setter Property="HorizontalOptions" Value="Start" />
<Setter Property="FontSize" Value="Micro" />
</Style>

</ResourceDictionary>


Expand Down
24 changes: 12 additions & 12 deletions logic/Client/Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,43 +49,43 @@
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>

<ItemGroup>
<None Remove="View\uhlobqco.ueo~" />
</ItemGroup>


<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="Google.Protobuf" Version="3.25.3" />
<PackageReference Include="Grpc" Version="2.46.6" />
<PackageReference Include="Grpc.Tools" Version="2.62.0">
<PackageReference Include="Grpc.Tools" Version="2.60.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.6" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
</ItemGroup>


<ItemGroup>
<Compile Update="MainPage.xaml.cs">
<Compile Update="View\MainPage.xaml.cs">
<DependentUpon>MainPage.xaml</DependentUpon>
</Compile>
<Compile Update="Map.xaml.cs">
<DependentUpon>Map.xaml</DependentUpon>
</Compile>
<Compile Update="GameStatusBar.xaml.cs">
<Compile Update="Old\GameStatusBar.xaml.cs">
<DependentUpon>GameStatusBar.xaml</DependentUpon>
</Compile>
<Compile Update="PlayerStatusBar.xaml.cs">
<Compile Update="Old\PlayerStatusBar.xaml.cs">
<DependentUpon>PlayerStatusBar.xaml</DependentUpon>
</Compile>
</ItemGroup>


<ItemGroup>
<MauiXaml Update="Map.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="GameStatusBar.xaml">
<MauiXaml Update="Old\GameStatusBar.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="PlayerStatusBar.xaml">
<MauiXaml Update="Old\PlayerStatusBar.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
</ItemGroup>
Expand Down
14 changes: 14 additions & 0 deletions logic/Client/CommandLine.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.CommandLine;

namespace Client
{
public class CommandLine
{

}
}
47 changes: 0 additions & 47 deletions logic/Client/MainPage.xaml

This file was deleted.

Loading

0 comments on commit 4311459

Please sign in to comment.