Skip to content

Commit

Permalink
Merge pull request #3 from Toine-db/tasks/add_dependency_markdownparser
Browse files Browse the repository at this point in the history
Parser moved to different package
  • Loading branch information
Toine-db authored Oct 25, 2024
2 parents 109e02a + a73aff8 commit 69dd223
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 715 deletions.
73 changes: 0 additions & 73 deletions src/Plugin.Maui.MarkdownView/IViewSupplier.cs

This file was deleted.

27 changes: 0 additions & 27 deletions src/Plugin.Maui.MarkdownView/LICENSE-CommonMark.NET.md

This file was deleted.

28 changes: 0 additions & 28 deletions src/Plugin.Maui.MarkdownView/ListBulletFormatter.cs

This file was deleted.

74 changes: 0 additions & 74 deletions src/Plugin.Maui.MarkdownView/MarkdownParseStream.cs

This file was deleted.

42 changes: 0 additions & 42 deletions src/Plugin.Maui.MarkdownView/MarkdownParser.cs

This file was deleted.

2 changes: 2 additions & 0 deletions src/Plugin.Maui.MarkdownView/MarkdownView.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
using MarkdownParser;

namespace Plugin.Maui.MarkdownView;

[ContentProperty(nameof(MarkdownText))]
Expand Down
4 changes: 3 additions & 1 deletion src/Plugin.Maui.MarkdownView/MauiViewSupplier.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
namespace Plugin.Maui.MarkdownView;
using MarkdownParser;

namespace Plugin.Maui.MarkdownView;

public class MauiViewSupplier : IViewSupplier<View>
{
Expand Down
4 changes: 2 additions & 2 deletions src/Plugin.Maui.MarkdownView/Plugin.Maui.MarkdownView.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommonMark.NET" Version="0.15.1" />
<PackageReference Include="MarkdownParser" Version="0.0.1" />
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="all" IsImplicitlyDefined="true" />
<PackageReference Include="System.Management" Version="7.0.0" Condition="$(TargetFramework.Contains('-windows')) == true" />
Expand All @@ -92,7 +92,7 @@

<ItemGroup>
<None Include="..\..\nuget.png" PackagePath="icon.png" Pack="true" />
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>

</Project>
Loading

0 comments on commit 69dd223

Please sign in to comment.