Skip to content

Commit d143a7f

Browse files
authored
Merge pull request #88 from egvijayanand/working
Bug fixes
2 parents 14772ba + f83795e commit d143a7f

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

src/NET_8/DateCalculator/DateCalculator.Maui/DateCalculator.Maui.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
6262
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
6363
<PackageReference Include="CommunityToolkit.Maui" Version="9.*" />
64+
<PackageReference Include="CommunityToolkit.Maui.Markup" Version="4.*" />
6465
<PackageReference Include="VijayAnand.FontAwesome" Version="2.*" />
6566
</ItemGroup>
6667

src/NET_8/DateCalculator/DateCalculator.Maui/MauiProgram.cs

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using CommunityToolkit.Maui;
2+
using CommunityToolkit.Maui.Markup;
23
using CommunityToolkit.Maui.Behaviors;
34
using Microsoft.Extensions.Logging;
45

src/NET_8/DateCalculator/DateCalculator.Wpf/App.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
55
xmlns:local="clr-namespace:DateCalculator.Wpf"
66
xmlns:sys="clr-namespace:System;assembly=mscorlib"
7-
StartupUri="MainWindow.xaml">
7+
StartupUri="Views/MainWindow.xaml">
88
<Application.Resources>
99
<!-- Update the base FontSize to set it across all Controls styles -->
1010
<sys:Double x:Key="AppFontSize">14</sys:Double>

src/NET_8/DateCalculator/DateCalculator.Wpf/MainWindow.xaml renamed to src/NET_8/DateCalculator/DateCalculator.Wpf/Views/MainWindow.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Window
2-
x:Class="DateCalculator.Wpf.MainWindow"
2+
x:Class="DateCalculator.Wpf.Views.MainWindow"
33
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
55
xmlns:conv="clr-namespace:DateCalculator.Wpf.Converters"

src/NET_8/DateCalculator/DateCalculator.Wpf/MainWindow.xaml.cs renamed to src/NET_8/DateCalculator/DateCalculator.Wpf/Views/MainWindow.xaml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace DateCalculator.Wpf
1+
namespace DateCalculator.Wpf.Views
22
{
33
/// <summary>
44
/// Interaction logic for MainWindow.xaml

0 commit comments

Comments
 (0)