user2176902
user2176902

Reputation: 56

Missing assembly reference in App.xaml page

I cannot find my solution it says missing assembly reference on please explain in detail

      <Application.Resources>
    <converter:RssTextTrimmer xmlns:converter="clr-namespace:sdkRSSReaderCS"
      x:Key="RssTextTrimmer" />
    <converter:ImageFromRssText xmlns:converter="clr-namespace:sdkRSSReaderCS"
    x:Key="ImageFromRssText" />
        </Application.Resources>

Upvotes: 0

Views: 131

Answers (1)

soydachi
soydachi

Reputation: 901

This is normally that if you have open for first time a extern project that haven't build in your project you must rebuild or build it in your own computer. If this not resolve the problem, you must see if:

xlmns:converter="..." is correct. Are RssTextTrimmer, ImageFromRssText in the root folder?

greetings!

Upvotes: 1

Related Questions