Skip to content
Open
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
19 changes: 19 additions & 0 deletions Maui/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[*.cs]

# CA1010: Collections should implement generic interface
dotnet_diagnostic.CA1010.severity = silent

# CA1710: Identifiers should have correct suffix
dotnet_diagnostic.CA1710.severity = silent

# CA1303: Do not pass literals as localized parameters
dotnet_diagnostic.CA1303.severity = silent

# CS0618: Type or member is obsolete
dotnet_diagnostic.CS0618.severity = silent

# CA1031: Do not catch general exception types
dotnet_diagnostic.CA1031.severity = silent

# CA2000: Dispose objects before losing scope
dotnet_diagnostic.CA2000.severity = silent
9 changes: 9 additions & 0 deletions Maui/HtmlLabel.Forms.Plugin.Tests.App/App.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version = "1.0" encoding = "UTF-8" ?>
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:HyperTextLabel.Maui.Tests.App"
x:Class="HyperTextLabel.Maui.Tests.App.App">
<Application.Resources>
<ResourceDictionary Source="Resources/Styles.xaml" />
</Application.Resources>
</Application>
11 changes: 11 additions & 0 deletions Maui/HtmlLabel.Forms.Plugin.Tests.App/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
namespace HyperTextLabel.Maui.Tests.App;

public partial class App : Application
{
public App()
{
InitializeComponent();

MainPage = new AppShell();
}
}
14 changes: 14 additions & 0 deletions Maui/HtmlLabel.Forms.Plugin.Tests.App/AppShell.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="HyperTextLabel.Maui.Tests.App.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:HyperTextLabel.Maui.Tests.App"
Shell.FlyoutBehavior="Disabled">

<ShellContent
Title="HTML Label"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage" />

</Shell>
9 changes: 9 additions & 0 deletions Maui/HtmlLabel.Forms.Plugin.Tests.App/AppShell.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace HyperTextLabel.Maui.Tests.App;

public partial class AppShell : Shell
{
public AppShell()
{
InitializeComponent();
}
}
252 changes: 252 additions & 0 deletions Maui/HtmlLabel.Forms.Plugin.Tests.App/HtmlSources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading