I get an exception when trying to deserialize in Silverlight. Test1 fails, while Test2 succeeds. I've also tried TypeNameAssemblyFormat to both Simple and Full, but get same results. Test2 can resolve the assembly, why can't Json.NET? Update: Forgot to mention the type I'm trying to deserialize is defined in a [...] read more
I'm running Microsoft LightSwitch Beta 1 and have been creating an application which has been going great, but then I tried debugging after making a few minor changes and received the following error: > "Could not load file or assembly 'SW_Resources.Commom, Version=1.0.0.0, > Culture=neutral, PublicKeyToken=null' or one of its dependencies. [...] read more
I'm working an application that is based on Silverlight 5. It's framework is MVVM and implemented by Prism. I'm using silverlight 5 toolkit too. In one of my views I using wrapPanel and DateTimePicker from toolkit. <navigation:Page x:Class="PIPM2.SupervisionSubSystem.Module.View.TestView" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation" d:DesignWidth="640" d:DesignHeight="480" Title="TestView Page" xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk" xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit" [...] read more
I'm trying to deserialize some JSON objects in a Silverlight client, which are sent over to the client via SignalR. These objects have been serialized using the TypeNameHandling = TypeNameHandling.All settings. The first problem is that you can't add a Class library project reference to the Silverlight one, so I [...] read more