Skip to content

Commit ce837d9

Browse files
bhavanesh2001PureWeen
authored andcommitted
[houekeeping] update namespaces in hostapp and shared tests projects (#29904)
1 parent 4f4dff2 commit ce837d9

21 files changed

+23
-23
lines changed

src/Controls/tests/TestCases.HostApp/Issues/Issue15649.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
33
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4-
x:Class="Controls.TestCases.HostApp.Issues.Issue15649"
5-
xmlns:local="clr-namespace:Controls.TestCases.HostApp.Issues"
4+
x:Class="Maui.Controls.Sample.Issues.Issue15649"
5+
xmlns:local="clr-namespace:Maui.Controls.Sample.Issues"
66
x:Name="HomePage"
77
Title="Issue15649">
88
<ContentPage.Resources>

src/Controls/tests/TestCases.HostApp/Issues/Issue15649.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Controls.TestCases.HostApp.Issues;
1+
namespace Maui.Controls.Sample.Issues;
22

33
[Issue(IssueTracker.Github, 15649, "Updating a ControlTemplate at runtime for a Content Page is not working.", PlatformAffected.All)]
44
public partial class Issue15649 : ContentPage

src/Controls/tests/TestCases.HostApp/Issues/Issue20419.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Controls.TestCases.HostApp.Issues;
1+
namespace Maui.Controls.Sample.Issues;
22

33
[Issue(IssueTracker.Github, 20419, "Argument Exception raised when the GetStringSize method of ICanvas called with default font", PlatformAffected.UWP)]
44
public class Issue20419 : ContentPage

src/Controls/tests/TestCases.HostApp/Issues/Issue20443.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
33
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4-
x:Class="Controls.TestCases.HostApp.Issues.Issue20443"
5-
xmlns:local="clr-namespace:Controls.TestCases.HostApp.Issues"
4+
x:Class="Maui.Controls.Sample.Issues.Issue20443"
5+
xmlns:local="clr-namespace:Maui.Controls.Sample.Issues"
66
x:DataType="local:Issue20443ViewModel"
77
Title="Issue20443">
88
<ContentPage.BindingContext>

src/Controls/tests/TestCases.HostApp/Issues/Issue20443.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Microsoft.Maui.Controls;
66
using Microsoft.Maui.Controls.Xaml;
77

8-
namespace Controls.TestCases.HostApp.Issues
8+
namespace Maui.Controls.Sample.Issues
99
{
1010
[Issue(IssueTracker.Github, 20443, "CollectionView item sizing wrong after refresh", PlatformAffected.iOS)]
1111

src/Controls/tests/TestCases.HostApp/Issues/Issue27169.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Controls.TestCases.HostApp.Issues;
1+
namespace Maui.Controls.Sample.Issues;
22

33
[Issue(IssueTracker.Github, 27169, "Grid inside ScrollView should measure with infinite constraints", PlatformAffected.iOS)]
44
public class Issue27169 : ContentPage

src/Controls/tests/TestCases.HostApp/Issues/Issue27803.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
33
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4-
x:Class="Controls.TestCases.HostApp.Issues.Issue27803"
4+
x:Class="Maui.Controls.Sample.Issues.Issue27803"
55
Title="Issue27803">
66
<VerticalStackLayout VerticalOptions="Center"
77
HorizontalOptions="Center"

src/Controls/tests/TestCases.HostApp/Issues/Issue27803.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Controls.TestCases.HostApp.Issues;
1+
namespace Maui.Controls.Sample.Issues;
22

33
[Issue(IssueTracker.Github, 27803, "DatePicker default format on iOS", PlatformAffected.iOS)]
44
public partial class Issue27803 : ContentPage

src/Controls/tests/TestCases.HostApp/Issues/Issue27992.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
33
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4-
x:Class="Controls.TestCases.HostApp.Issues.Issue27992"
4+
x:Class="Maui.Controls.Sample.Issues.Issue27992"
55
Title="Issue27992">
66
<VerticalStackLayout Margin="10,30,10,0">
77
<Entry AutomationId="MauiEntry" Completed="Entry_Completed"

src/Controls/tests/TestCases.HostApp/Issues/Issue27992.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Controls.TestCases.HostApp.Issues;
1+
namespace Maui.Controls.Sample.Issues;
22

33
[Issue(IssueTracker.Github, 27992, "Entry Completed Event Triggered Twice", PlatformAffected.Android)]
44
public partial class Issue27992 : ContentPage

0 commit comments

Comments
 (0)