I'm trying to use MarkdownView with Xamarin.Forms (iOS only), but keep seeing Could not find MarkdownView referenced by assembly errors.
Linking is disabled, so it's not being stripped either, although adding a simple Init() method would potentially also solve that, like most other components are doing.
I'm using the following namespace/assembly with XAML:
<?xml version="1.0" encoding="utf-8"?>
<ContentPage
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:MyApp"
xmlns:markdown="clr-namespace:Xam.Forms.Markdown;assembly=Xam.Forms.MarkdownView"
x:Class="MyApp.MyAppPage">
<markdown:MarkdownView />
</ContentPage>
UPDATE: I figured it might be important to mention that I'm using a shared project with Xamarin.Forms, not PCL or a .NET Standard library.
UPDATE 2: Just noticed that the actual DLL library filename is called Xam.Forms..dll, which makes me think that there's something fishy going on with the namespace/assembly names.
I'm trying to use MarkdownView with Xamarin.Forms (iOS only), but keep seeing
Could not findMarkdownViewreferenced by assemblyerrors.Linking is disabled, so it's not being stripped either, although adding a simple
Init()method would potentially also solve that, like most other components are doing.I'm using the following namespace/assembly with XAML:
UPDATE: I figured it might be important to mention that I'm using a shared project with Xamarin.Forms, not PCL or a .NET Standard library.
UPDATE 2: Just noticed that the actual DLL library filename is called
Xam.Forms..dll, which makes me think that there's something fishy going on with the namespace/assembly names.