Skip to content

Commit

Permalink
Merge pull request #23 from Grange007/dev
Browse files Browse the repository at this point in the history
frame: 📌 change to .NET 6.0
  • Loading branch information
DragonAura authored Nov 4, 2023
2 parents 92b937b + 7d71ec5 commit 4658048
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions logic/Client/Client.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net7.0-android;net7.0-ios;net7.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks>
<TargetFrameworks>net6.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net6.0-windows10.0.19041.0</TargetFrameworks>
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
<!-- <TargetFrameworks>$(TargetFrameworks);net7.0-tizen</TargetFrameworks> -->
<OutputType>Exe</OutputType>
Expand Down
2 changes: 1 addition & 1 deletion logic/Client/MainPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public MainPage()
{
Console.WriteLine("Hello World");
timer = Dispatcher.CreateTimer();
timer.Interval = TimeSpan.FromMicroseconds(50);
timer.Interval = TimeSpan.FromMilliseconds(50);
timer.Tick += new EventHandler(Refresh);
timer.Start();
Application.Current.UserAppTheme = AppTheme.Light; //Light Theme Mode
Expand Down

0 comments on commit 4658048

Please sign in to comment.