<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>simplemvvmtoolkit Issue Tracker Rss Feed</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/list/basic</link><description>simplemvvmtoolkit Issue Tracker Rss Description</description><item><title>Closed Issue: Redundant type parameter in DelegateCommand&lt;T&gt;.ConvertParameter? [278]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/278</link><description>Dear Tony,&lt;br /&gt;&amp;#160;&lt;br /&gt;first of all, thanks for providing this excellent and simple MVVM library.&lt;br /&gt;&amp;#160;&lt;br /&gt;I needed to re-build the software from the sources, since I require a strong name on the assembly. When building the Silverlight solution, the assembly is built, but I get the following warning message&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;        Type parameter &amp;#39;T&amp;#39; has the same name as the type parameter from outer type &amp;#39;SimpleMvvmToolkit.DelegateCommand&amp;#60;T&amp;#62;&amp;#39;&lt;br /&gt;&amp;#160;&lt;br /&gt;If I look at the ConvertParameter method to which the warning message is attributed, it has the following signature&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;        private T ConvertParameter&amp;#60;T&amp;#62;&amp;#40;object parameter&amp;#41;&lt;br /&gt;&amp;#160;&lt;br /&gt;Correct me if I am wrong, but isn&amp;#39;t the &amp;#60;T&amp;#62; redundant&amp;#63; The code would be clearer if the signature would read&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;        private T ConvertParameter&amp;#40;object parameter&amp;#41;&lt;br /&gt;&amp;#160;&lt;br /&gt;A very minor issue, but maybe worth fixing anyway&amp;#63;&lt;br /&gt;&amp;#160;&lt;br /&gt;Best regards,&lt;br /&gt;Anders&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:30 GMT</pubDate><guid isPermaLink="false">Closed Issue: Redundant type parameter in DelegateCommand&lt;T&gt;.ConvertParameter? [278] 20130516112530A</guid></item><item><title>Closed Issue: Type conversion bug in DelegateCommand&lt;T&gt;.ConvertParameter&lt;TOutput&gt; [324]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/324</link><description>Hi Tony,&lt;br /&gt;&amp;#160;&lt;br /&gt;this line in method DelegateCommand&amp;#60;T&amp;#62;.ConvertParameter&amp;#60;TOutput&amp;#62;&amp;#40;&amp;#41;...&lt;br /&gt;&amp;#160;&lt;br /&gt;  if &amp;#40;parameter.GetType&amp;#40;&amp;#41; &amp;#61;&amp;#61; typeof&amp;#40;TOutput&amp;#41;&amp;#41;&lt;br /&gt;&amp;#160;&lt;br /&gt;...should be...&lt;br /&gt;&amp;#160;&lt;br /&gt;  if &amp;#40;parameter is TOutput&amp;#41;&lt;br /&gt;&amp;#160;&lt;br /&gt;Otherwise an InvalidCastException is erroneously thrown when the actual CommandParameter is of a type &amp;#42;derived&amp;#42; from TOutput.&lt;br /&gt;&amp;#160;&lt;br /&gt;Regards,&lt;br /&gt;Chris&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:29 GMT</pubDate><guid isPermaLink="false">Closed Issue: Type conversion bug in DelegateCommand&lt;T&gt;.ConvertParameter&lt;TOutput&gt; [324] 20130516112529A</guid></item><item><title>Closed Issue: WP7.1 EventToCommand cannot be added to a collection or dictionary of type 'TriggerActionCollection' [342]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/342</link><description>On WP7.1 Beta2 and Wp7.1 Beta2 Refresh&amp;#40;with final API&amp;#41; i get the following error&amp;#58;&lt;br /&gt;A value of type &amp;#39;EventToCommand&amp;#39; cannot be added to a collection or dictionary of type &amp;#39;TriggerActionCollection&amp;#39;.&lt;br /&gt;&amp;#160;&lt;br /&gt;Rebuilding the wp7 source &amp;#40;with or without upgrading the project to wp7.1 &amp;#41; is not helping.&lt;br /&gt;&amp;#160;&lt;br /&gt;On the following code the mvvm&amp;#58;EventToCommand throws the error , the ei&amp;#58;CallMethodAction part is working. In other parts of my project i nedd to pass the event args to the command, thats why i need this to work. Please help.&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#60;i&amp;#58;Interaction.Triggers&amp;#62;&lt;br /&gt;        &amp;#60;i&amp;#58;EventTrigger EventName&amp;#61;&amp;#34;Loaded&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;mvvm&amp;#58;EventToCommand&lt;br /&gt;                        Command&amp;#61;&amp;#34;&amp;#123;Binding PageLoadedCommand&amp;#125;&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#33;--&amp;#60;ei&amp;#58;CallMethodAction&lt;br /&gt;                            TargetObject&amp;#61;&amp;#34;&amp;#123;Binding&amp;#125;&amp;#34;&lt;br /&gt;                            MethodName&amp;#61;&amp;#34;PageLoaded&amp;#34;&amp;#47;&amp;#62;--&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;i&amp;#58;EventTrigger&amp;#62;&lt;br /&gt;        &amp;#60;i&amp;#58;EventTrigger EventName&amp;#61;&amp;#34;Unloaded&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;ei&amp;#58;CallMethodAction &lt;br /&gt;                            TargetObject&amp;#61;&amp;#34;&amp;#123;Binding&amp;#125;&amp;#34;&lt;br /&gt;                            MethodName&amp;#61;&amp;#34;PageUnloaded&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;i&amp;#58;EventTrigger&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;i&amp;#58;Interaction.Triggers&amp;#62;&lt;br /&gt;&amp;#160;&lt;br /&gt;Thanks&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:29 GMT</pubDate><guid isPermaLink="false">Closed Issue: WP7.1 EventToCommand cannot be added to a collection or dictionary of type 'TriggerActionCollection' [342] 20130516112529A</guid></item><item><title>Closed Issue: WCF RIA Services Project Download URL Not Found [466]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/466</link><description>Hi Tony,&lt;br /&gt;&amp;#160;&lt;br /&gt;I&amp;#39;d tried to download the WCF RIA Services project but the page cannot be found&amp;#58;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;tonysneed.com&amp;#47;simplemvvm&amp;#47;SimpleMvvmRiaServices.zip&lt;br /&gt;&amp;#160;&lt;br /&gt;Frankie&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:28 GMT</pubDate><guid isPermaLink="false">Closed Issue: WCF RIA Services Project Download URL Not Found [466] 20130516112528A</guid></item><item><title>Closed Issue: Unable to create SimpleMVVMRiaServices project for Visual Studio 2010 SP1 [475]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/475</link><description>I have Visual Studio 2010 SP1 installed, thereby many of the original prerequisites for the SimpleMVVM Toolkit irrelevant.&lt;br /&gt;&amp;#160;&lt;br /&gt;I was able to install all other required prerequisites, however, and thereby able to view the Visual Studio project templates.&lt;br /&gt;&amp;#160;&lt;br /&gt;But, when I attempt to create my SimpleMVVMRiaServices project in Visual Studio by selecting the installed Project Template, I get the following error message&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#34;A problem was encountered creating the sub project&amp;#58; SimpleMvvmRiaServices.Test.  The imported project Microsoft.Silverlight.Toolkit.Build.targets was not found.  Confirm that the path in the &amp;#60;Import&amp;#62; declaration is correct, and that the file exists on disk.&amp;#34;&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:28 GMT</pubDate><guid isPermaLink="false">Closed Issue: Unable to create SimpleMVVMRiaServices project for Visual Studio 2010 SP1 [475] 20130516112528A</guid></item><item><title>Closed Issue: ViewModelDetailBase.IsDirty not reliable [476]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/476</link><description>Synopsis&amp;#58; ViewModelDetailBase.IsDirty might return false even if the Model has been altered due to hash collision in ModelExtensions.AreSame&amp;#40;&amp;#41; resp. ModelExtensions.GetObjectHashCode&amp;#40;&amp;#41;. ModelExtensions.AreSame violates it&amp;#39;s contract &amp;#34;True if object properties are the same&amp;#34;.&lt;br /&gt;see &amp;#91;discussion&amp;#58;287271&amp;#93;&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:27 GMT</pubDate><guid isPermaLink="false">Closed Issue: ViewModelDetailBase.IsDirty not reliable [476] 20130516112527A</guid></item><item><title>Closed Issue: A first chance exception of type 'System.NullReferenceException' occurred in SimpleMvvmToolkit-WP7.dll [511]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/511</link><description>I&amp;#39;m creating an application with the Windows Phone 7.1 SDK. I&amp;#39;m using version 3.0 of SimpleMVVM toolkit.&lt;br /&gt;&amp;#160;&lt;br /&gt;I&amp;#39;m calling NotifyPropertyChanged in the setter of an observable collection in one of my viewmodels. It is a collection of one of my model classes. The first time the page is displayed everything goes well. But when I navigate back to this page from another page I get a NullReferenceException when the collection changes.&lt;br /&gt;&amp;#160;&lt;br /&gt;I debugged some more and I found out that the exception occurs on line 57 of GenericDelegateCommand &amp;#58; &lt;br /&gt;string exceptionMessage &amp;#61; string.Format&amp;#40;&amp;#34;Cannot convert &amp;#123;0&amp;#125; to &amp;#123;1&amp;#125;&amp;#34;, parameter.GetType&amp;#40;&amp;#41;, typeof&amp;#40;T&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;Apparently parameter is null at this point and that is why the exception occurs. There is a check for null on line 81 so in some cases parameter can be null&amp;#63; What could be the reason why it is null&amp;#63; I don&amp;#39;t see how I can do something wrong in my code by just calling NotifyPropertyChanged in the setter.&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:27 GMT</pubDate><guid isPermaLink="false">Closed Issue: A first chance exception of type 'System.NullReferenceException' occurred in SimpleMvvmToolkit-WP7.dll [511] 20130516112527A</guid></item><item><title>Closed Issue: MVVM template does not show in installed templates [604]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/604</link><description>I believe I have the prerequisites for installing the toolkit.  I am only doing WPF projects, however.  I do not see the mvvm template when I try to create a new project.  Am I missing something&amp;#63;&lt;br /&gt;Thanks&lt;br /&gt;Mark&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:27 GMT</pubDate><guid isPermaLink="false">Closed Issue: MVVM template does not show in installed templates [604] 20130516112527A</guid></item><item><title>Closed Issue: UIDispatcher only executes actions asynchronously. [629]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/629</link><description>I have need of executing an action on the UI thread synchronously.  I would like to use the UIDispatcher for simplicity, but currently the only option is the Execute&amp;#40;&amp;#41; method that operates asynchronously.  Please add another method to UIDispatcher to execute an action synchronously.  An example is&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;        public static void ExecuteSynchronously&amp;#40;Action action&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            if &amp;#40;dispatcher.CheckAccess&amp;#40;&amp;#41;&amp;#41; action&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            else dispatcher.Invoke&amp;#40;action&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;Thank you&amp;#33;&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:26 GMT</pubDate><guid isPermaLink="false">Closed Issue: UIDispatcher only executes actions asynchronously. [629] 20130516112526A</guid></item><item><title>Closed Issue: IsInDesignMode doesn't work into WinForms [651]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/651</link><description>The IsInDesignMode-Property doesn&amp;#39;t work if you create a Control in WPF and use it in a WinForms-Application.&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:26 GMT</pubDate><guid isPermaLink="false">Closed Issue: IsInDesignMode doesn't work into WinForms [651] 20130516112526A</guid></item><item><title>Closed Issue: Issue with the event bus notification message [712]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/712</link><description>I have a viewmodel through which I am sending a message to the event bus. I am using something like&lt;br /&gt;SendMessage&amp;#40;MessageTokens.ExtractionRunning, new NotificationEventArgs&amp;#60;bool&amp;#62;&amp;#40;null, this.isBusy&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;There are two separate viewmodel who have registered to receive the message. When the message is sent the first time both the viewmodels receive the message correctly. However, when the message is sent the second time, only one of the two viewmodels receive the message and that too twice.&lt;br /&gt;&amp;#160;&lt;br /&gt;The code used to register to receive the messages is &lt;br /&gt;RegisterToReceiveMessages&amp;#60;bool&amp;#62;&amp;#40;MessageTokens.ExtractionRunning, OnFileExtractionRunning&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;The above appears to be a bug to me&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:26 GMT</pubDate><guid isPermaLink="false">Closed Issue: Issue with the event bus notification message [712] 20130516112526A</guid></item><item><title>Closed Issue: Sign assemblies with a strong name ... [725]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/725</link><description>... otherwise it is not possible to use the toolkit from a signed exe.&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:25 GMT</pubDate><guid isPermaLink="false">Closed Issue: Sign assemblies with a strong name ... [725] 20130516112525A</guid></item><item><title>Closed Issue: Issue with GenericDelegateCommand.ConvertParameter [753]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/753</link><description>I have the following XAML associated with a command &amp;#40;associated with a ListBox&amp;#41;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#160;&lt;br /&gt;                                    &amp;#60;i&amp;#58;Interaction.Triggers&amp;#62;&lt;br /&gt;                                        &amp;#60;i&amp;#58;EventTrigger EventName&amp;#61;&amp;#34;SelectionChanged&amp;#34;&amp;#62;&lt;br /&gt;                                            &amp;#60;i&amp;#58;InvokeCommandAction Command&amp;#61;&amp;#34;&amp;#123;Binding AddItem&amp;#125;&amp;#34;&lt;br /&gt;                                                                   CommandParameter&amp;#61;&amp;#34;&amp;#123;Binding SelectedItem, ElementName&amp;#61;items&amp;#125;&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;                                        &amp;#60;&amp;#47;i&amp;#58;EventTrigger&amp;#62;&lt;br /&gt;                                    &amp;#60;&amp;#47;i&amp;#58;Interaction.Triggers&amp;#62;&lt;br /&gt;&amp;#160;&lt;br /&gt;This when clearing the ListBox selected item the command is fired with a parameter of null. This is turn causes an exception in GenericDelegateCommand.ConvertParameter at the following line&lt;br /&gt;&amp;#160;&lt;br /&gt;                string exceptionMessage &amp;#61; string.Format&amp;#40;&amp;#34;Cannot convert &amp;#123;0&amp;#125; to &amp;#123;1&amp;#125;&amp;#34;,&lt;br /&gt;                    parameter.GetType&amp;#40;&amp;#41;, typeof&amp;#40;T&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;I think the correct code should have the following at the start of the method&lt;br /&gt;&amp;#160;&lt;br /&gt;if &amp;#40; parameter &amp;#61;&amp;#61; null &amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;   return default&amp;#40;T&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;What do you think&amp;#63;&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:25 GMT</pubDate><guid isPermaLink="false">Closed Issue: Issue with GenericDelegateCommand.ConvertParameter [753] 20130516112525A</guid></item><item><title>Closed Issue: DataContract on ModelBase Needs IsReference = True [1143]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/1143</link><description>The DataContract attribute on ModelBase should have the IsReference property set to True.  This will prevent cycles in derived classes when they are serialized.&lt;br /&gt;</description><author>tonysneed</author><pubDate>Thu, 16 May 2013 11:25:25 GMT</pubDate><guid isPermaLink="false">Closed Issue: DataContract on ModelBase Needs IsReference = True [1143] 20130516112525A</guid></item><item><title>Closed Issue: Toolkit v4.0.0.0 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1213]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/1213</link><description>Hi Tony,&lt;br /&gt;&lt;br /&gt;I&amp;#39;m having problem in installing the latest toolkit version. I logged in to the PC as administrator. Please see the attach error message. I tried manually delete the specified dll file from the folder &amp;#40;which should prove that I have the access to the folder&amp;#63;&amp;#63;&amp;#41; and rerun the installer, but the same error message showed up again.&lt;br /&gt;&lt;br /&gt;I also tried run the installer using the &amp;#34;Run as administrator&amp;#34; option but it didn&amp;#39;t help.&lt;br /&gt;</description><author>franczc</author><pubDate>Thu, 16 May 2013 11:25:24 GMT</pubDate><guid isPermaLink="false">Closed Issue: Toolkit v4.0.0.0 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1213] 20130516112524A</guid></item><item><title>Closed Issue: Toolkit v3 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1422]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/1422</link><description>Failed both on Win 2003 R2 SP1 and Windows 7&lt;br /&gt;</description><author>liangyanhe</author><pubDate>Thu, 16 May 2013 11:25:23 GMT</pubDate><guid isPermaLink="false">Closed Issue: Toolkit v3 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1422] 20130516112523A</guid></item><item><title>Commented Issue: Toolkit v3 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1422]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/1422</link><description>Failed both on Win 2003 R2 SP1 and Windows 7&lt;br /&gt;Comments: ** Comment from web user: liangyanhe ** &lt;p&gt;Hi&lt;br&gt;On the Windows Xp, ,.NET Framework 4.5 can't be installed, can you release Toolkit v3 for xp?  think you.&lt;/p&gt;</description><author>liangyanhe</author><pubDate>Mon, 01 Apr 2013 08:12:15 GMT</pubDate><guid isPermaLink="false">Commented Issue: Toolkit v3 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1422] 20130401081215A</guid></item><item><title>Commented Issue: Toolkit v3 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1422]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/1422</link><description>Failed both on Win 2003 R2 SP1 and Windows 7&lt;br /&gt;Comments: ** Comment from web user: tonysneed ** &lt;p&gt;Try right-clicking the installer and selecting &amp;quot;Run As Administrator&amp;quot;.&lt;/p&gt;&lt;p&gt;I will put together a manual installation process that you can use if the installer still fails for some people.&lt;/p&gt;&lt;p&gt;I do have some people who have volunteered to help with the project, so I believe someone will create a WIX installer at some point, which will eliminate unnecessary dependencies created by InstallShield.&lt;/p&gt;</description><author>tonysneed</author><pubDate>Tue, 19 Mar 2013 13:18:57 GMT</pubDate><guid isPermaLink="false">Commented Issue: Toolkit v3 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1422] 20130319011857P</guid></item><item><title>Commented Issue: Toolkit v4.0.0.0 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1213]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/1213</link><description>Hi Tony,&lt;br /&gt;&lt;br /&gt;I&amp;#39;m having problem in installing the latest toolkit version. I logged in to the PC as administrator. Please see the attach error message. I tried manually delete the specified dll file from the folder &amp;#40;which should prove that I have the access to the folder&amp;#63;&amp;#63;&amp;#41; and rerun the installer, but the same error message showed up again.&lt;br /&gt;&lt;br /&gt;I also tried run the installer using the &amp;#34;Run as administrator&amp;#34; option but it didn&amp;#39;t help.&lt;br /&gt;Comments: ** Comment from web user: franczc ** &lt;p&gt;Hi Tony, the new installer worked fine for me too. Thanks a lot for the fix!&lt;/p&gt;</description><author>franczc</author><pubDate>Sun, 10 Mar 2013 23:29:37 GMT</pubDate><guid isPermaLink="false">Commented Issue: Toolkit v4.0.0.0 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1213] 20130310112937P</guid></item><item><title>Commented Issue: Toolkit v3 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1422]</title><link>http://simplemvvmtoolkit.codeplex.com/workitem/1422</link><description>Failed both on Win 2003 R2 SP1 and Windows 7&lt;br /&gt;Comments: ** Comment from web user: praveen_jsr ** &lt;p&gt;I downloaded the latest version but the issue  still  persists .&lt;/p&gt;</description><author>praveen_jsr</author><pubDate>Fri, 01 Mar 2013 10:18:27 GMT</pubDate><guid isPermaLink="false">Commented Issue: Toolkit v3 installation failed with error writing to file Microsoft.VisualBasic.Activities.Compiler.dll [1422] 20130301101827A</guid></item></channel></rss>