Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
egvijayanand committed Jul 23, 2024
1 parent 14772ba commit f83795e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
<PackageReference Include="CommunityToolkit.Maui" Version="9.*" />
<PackageReference Include="CommunityToolkit.Maui.Markup" Version="4.*" />
<PackageReference Include="VijayAnand.FontAwesome" Version="2.*" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using CommunityToolkit.Maui;
using CommunityToolkit.Maui.Markup;
using CommunityToolkit.Maui.Behaviors;
using Microsoft.Extensions.Logging;

Expand Down
2 changes: 1 addition & 1 deletion src/NET_8/DateCalculator/DateCalculator.Wpf/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:DateCalculator.Wpf"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
StartupUri="MainWindow.xaml">
StartupUri="Views/MainWindow.xaml">
<Application.Resources>
<!-- Update the base FontSize to set it across all Controls styles -->
<sys:Double x:Key="AppFontSize">14</sys:Double>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Window
x:Class="DateCalculator.Wpf.MainWindow"
x:Class="DateCalculator.Wpf.Views.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:conv="clr-namespace:DateCalculator.Wpf.Converters"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DateCalculator.Wpf
namespace DateCalculator.Wpf.Views
{
/// <summary>
/// Interaction logic for MainWindow.xaml
Expand Down

0 comments on commit f83795e

Please sign in to comment.