Hello, I work in a team on a silverlight project. This silverlight project uses MVVM-light. When I want to build the project I get the following two errors:
Error 1 :
The type 'EventTrigger' does not support direct content.
I get this error on this xaml code:
<HyperlinkButton x:Name="HyperlinkButtonSelectAll" Content="Select all" IsTabStop="False" Height="20" >
<i:Interaction.Triggers>
<i:EventTrigger EventName="Click">
<GalaSoft_MvvmLight_Command:EventToCommand Command="{Binding SelectAllPluginsCommand, Mode=OneWay}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</HyperlinkButton>
I get this error on the GalaSoft_MvvmLight_Command tag.
Error 2 :
The property '_UnknownContent' does not exist on the type 'EventTrigger' in the XML namespace 'clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity'.
For this error I do not have specific line and columnnumbers.
The strange thing however is that my colleagues don't have this issue. Even if they take the latest version from source control. I however have these errors. I already tried to delete the complete solution and get it back from sourcesafe, but I keep getting these errors.
Any help would be appreciated.
Thanks,
Michiel