Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug fixes #88

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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