<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>dept Forum Rss Feed</title><link>http://www.codeplex.com/dept/Thread/List.aspx</link><description>dept Forum Rss Description</description><item><title>New Post: i can't get the DSL Editor PowerToy tool window</title><link>http://dept.codeplex.com/Thread/View.aspx?ThreadId=69679</link><description>&lt;div style="line-height: normal;"&gt;&lt;div style="color:Black;background-color:White"&gt;
&lt;pre&gt;&lt;span style="color:Blue"&gt;using&lt;/span&gt; VSShell = global::Microsoft.VisualStudio.Shell;
&lt;span style="color:Blue"&gt;using&lt;/span&gt; System;
&lt;span style="color:Blue"&gt;namespace&lt;/span&gt; &amp;lt;#= CodeGenerationUtilities.GetPackageNamespace(&lt;span style="color:Blue"&gt;this&lt;/span&gt;.Dsl) #&amp;gt;
{
    &lt;span style="color:Gray"&gt;///&lt;/span&gt; &lt;span style="color:Gray"&gt;&amp;lt;summary&amp;gt;&lt;/span&gt;
    &lt;span style="color:Gray"&gt;///&lt;/span&gt;&lt;span style="color:Green"&gt; Extension to language Package class to register toolwindow&lt;/span&gt;
    &lt;span style="color:Gray"&gt;///&lt;/span&gt; &lt;span style="color:Gray"&gt;&amp;lt;/summary&amp;gt;&lt;/span&gt;
    [VSShell.ProvideToolWindow(&lt;span style="color:Blue"&gt;typeof&lt;/span&gt;(global::&amp;lt;#= CodeGenerationUtilities.GetPackageNamespace(&lt;span style="color:Blue"&gt;this&lt;/span&gt;.Dsl) #&amp;gt;.DslEditorPowerToy.Controls.&amp;lt;#= dslName #&amp;gt;DslEditorToolWindow), MultiInstances = &lt;span style="color:Blue"&gt;false&lt;/span&gt;, Style = VSShell.VsDockStyle.Tabbed, Orientation = VSShell.ToolWindowOrientation.Right, Window = &lt;span style="color:#A31515"&gt;&amp;quot;{4a9b7e51-aa16-11d0-a8c5-00a0c921a4d2}&amp;quot;&lt;/span&gt;) &lt;span style="color:Green"&gt;/* beneath the diagram */&lt;/span&gt;]
    [VSShell.ProvideToolWindowVisibility(&lt;span style="color:Blue"&gt;typeof&lt;/span&gt;(global::&amp;lt;#= CodeGenerationUtilities.GetPackageNamespace(&lt;span style="color:Blue"&gt;this&lt;/span&gt;.Dsl) #&amp;gt;.DslEditorPowerToy.Controls.&amp;lt;#= dslName #&amp;gt;DslEditorToolWindow), Constants.&amp;lt;#= dslName #&amp;gt;EditorFactoryId)]
    &lt;span style="color:Blue"&gt;partial&lt;/span&gt; &lt;span style="color:Blue"&gt;class&lt;/span&gt; &amp;lt;#= dslName #&amp;gt;Package
    {
        &lt;span style="color:Blue"&gt;protected&lt;/span&gt; &lt;span style="color:Blue"&gt;override&lt;/span&gt; &lt;span style="color:Blue"&gt;void&lt;/span&gt; Initialize()
        {
            &lt;span style="color:Blue"&gt;base&lt;/span&gt;.Initialize();

            &lt;span style="color:Green"&gt;//Add toolwindows&lt;/span&gt;
            &lt;span style="color:Blue"&gt;this&lt;/span&gt;.AddToolWindow(&lt;span style="color:Blue"&gt;typeof&lt;/span&gt;(global::&amp;lt;#= CodeGenerationUtilities.GetPackageNamespace(&lt;span style="color:Blue"&gt;this&lt;/span&gt;.Dsl) #&amp;gt;.DslEditorPowerToy.Controls.&amp;lt;#= dslName #&amp;gt;DslEditorToolWindow));
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;//here i add code like this&amp;nbsp;&amp;nbsp; :&amp;nbsp;&lt;/p&gt;
&lt;div style="color:Black;background-color:White"&gt;
&lt;pre&gt; Debug.Write(&lt;span style="color:Blue"&gt;this&lt;/span&gt;.GetToolWindow(&lt;span style="color:Blue"&gt;typeof&lt;/span&gt;(global::DCMS.EasyBridge.DslPackage.DslEditorPowerToy.Controls.EasyBridgeDslEditorToolWindow))==&lt;span style="color:Blue"&gt;null&lt;/span&gt;);
&lt;/pre&gt;
&lt;pre&gt;the result is true;&lt;/pre&gt;
&lt;pre&gt;why? who tell me thanks.&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description><author>sky266</author><pubDate>Tue, 29 Sep 2009 09:54:15 GMT</pubDate><guid isPermaLink="false">New Post: i can't get the DSL Editor PowerToy tool window 20090929095415A</guid></item><item><title>New Post: i can't get the DSL Editor PowerToy tool window</title><link>http://dept.codeplex.com/Thread/View.aspx?ThreadId=69679</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;&lt;div style="color:Black;background-color:White"&gt;&lt;pre&gt;       &lt;span style="color:Blue"&gt;get&lt;/span&gt;
            {
                DeptControls.\&amp;lt;#= dslName \#&amp;gt;DslEditorToolWindow toolWindow = &lt;span style="color:Blue"&gt;null&lt;/span&gt;;
                DslShell.ModelingPackage package = &lt;span style="color:Blue"&gt;this&lt;/span&gt;.ServiceProvider.GetService(&lt;span style="color:Blue"&gt;typeof&lt;/span&gt;(VSShell.Package)) &lt;span style="color:Blue"&gt;as&lt;/span&gt; DslShell.ModelingPackage;

                &lt;span style="color:Blue"&gt;if&lt;/span&gt; (package != &lt;span style="color:Blue"&gt;null&lt;/span&gt;)
                    toolWindow = package.GetToolWindow(&lt;span style="color:Blue"&gt;typeof&lt;/span&gt;(DeptControls.\&amp;lt;#= dslName \#&amp;gt;DslEditorToolWindow), &lt;span style="color:Blue"&gt;true&lt;/span&gt;) &lt;span style="color:Blue"&gt;as&lt;/span&gt; DeptControls.\&amp;lt;#= dslName \#&amp;gt;DslEditorToolWindow;

&lt;span style="color:Green"&gt;//here the toolWindow is null&lt;/span&gt;

                  &lt;span style="color:Blue"&gt;return&lt;/span&gt; toolWindow;

&lt;/pre&gt;
&lt;/div&gt;
&lt;/pre&gt;
&lt;p&gt;i know there had create on window in vs because in my DSLPackage Project i can see the window with no windowtitle and tab name.&lt;/p&gt;
&lt;p&gt;temporary&lt;/p&gt;
&lt;p&gt;i edit the template&amp;nbsp;in DslPackage\DetailsEditor\GeneratedCode\CommandSet.tt&amp;nbsp; like below&lt;/p&gt;
&lt;div style="color:Black;background-color:White"&gt;
&lt;pre&gt; &lt;span style="color:Blue"&gt;get&lt;/span&gt;
            {
                DeptControls.&amp;lt;#= dslName #&amp;gt;DslEditorToolWindow toolWindow = &lt;span style="color:Blue"&gt;null&lt;/span&gt;;
                DslShell.ModelingPackage package = &lt;span style="color:Blue"&gt;this&lt;/span&gt;.ServiceProvider.GetService(&lt;span style="color:Blue"&gt;typeof&lt;/span&gt;(VSShell.Package)) &lt;span style="color:Blue"&gt;as&lt;/span&gt; DslShell.ModelingPackage;

                &lt;span style="color:Blue"&gt;if&lt;/span&gt; (package != &lt;span style="color:Blue"&gt;null&lt;/span&gt;)
				{
                    toolWindow = package.GetToolWindow(&lt;span style="color:Blue"&gt;typeof&lt;/span&gt;(DeptControls.&amp;lt;#= dslName #&amp;gt;DslEditorToolWindow), &lt;span style="color:Blue"&gt;true&lt;/span&gt;) &lt;span style="color:Blue"&gt;as&lt;/span&gt; DeptControls.&amp;lt;#= dslName #&amp;gt;DslEditorToolWindow;
					&lt;span style="color:Blue"&gt;if&lt;/span&gt; (toolWindow == &lt;span style="color:Blue"&gt;null&lt;/span&gt;)
                    {
                        Guid guid = &lt;span style="color:Blue"&gt;new&lt;/span&gt; Guid(&lt;span style="color:Blue"&gt;typeof&lt;/span&gt;(DeptControls.&amp;lt;#= dslName #&amp;gt;DslEditorToolWindow).GUID.ToString());
                        &lt;span style="color:Blue"&gt;try&lt;/span&gt;
                        {
                            package.CreateToolWindow(&lt;span style="color:Blue"&gt;ref&lt;/span&gt; guid, 200);
                            toolWindow = package.GetToolWindow(&lt;span style="color:Blue"&gt;typeof&lt;/span&gt;(DeptControls.&amp;lt;#= dslName #&amp;gt;DslEditorToolWindow), &lt;span style="color:Blue"&gt;true&lt;/span&gt;) &lt;span style="color:Blue"&gt;as&lt;/span&gt; DeptControls.&amp;lt;#= dslName #&amp;gt;DslEditorToolWindow;
                        }
                        &lt;span style="color:Blue"&gt;catch&lt;/span&gt; (Exception e)
                        {
                            Debug.WriteLine(e.Message);
                        }
                    }
				}
                &lt;span style="color:Blue"&gt;return&lt;/span&gt; toolWindow;
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;so i can get the detail window for my dsl design.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;who can tell me the process in this project how to create the window. and why i can't get toolWindow.&lt;/p&gt;&lt;/div&gt;</description><author>sky266</author><pubDate>Tue, 22 Sep 2009 08:32:36 GMT</pubDate><guid isPermaLink="false">New Post: i can't get the DSL Editor PowerToy tool window 20090922083236A</guid></item><item><title>New Post: Installation problem.</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=34439</link><description>&lt;div style="line-height: normal;"&gt;When using the MSI to install, I get an error saying that I don't have C# installed.&amp;nbsp; This is NOT the case.&amp;nbsp; I am running on Win2K8.&amp;nbsp; Would that cause the problem?
&lt;/div&gt;</description><author>bryonb</author><pubDate>Thu, 28 Aug 2008 03:50:51 GMT</pubDate><guid isPermaLink="false">New Post: Installation problem. 20080828035051A</guid></item><item><title>New Post: Power toy for Orcas -- WPF</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=14023</link><description>&lt;div style="line-height: normal;"&gt;&lt;span style="font-family:verdana"&gt;It’s pleasure to &lt;a href="../../Sculpture"&gt;Sculpture&lt;/a&gt; team to announce that they succeeded in migrating DSL Editor Powertoy to VS2008.&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;&lt;span style="font-family:verdana"&gt;So you can develop DSL projects with &lt;a href="../dept"&gt;DSL Editor Powertoy&lt;/a&gt; in VS2008 as the same manner as VS2005 with full functionality (Guidance Package , Editor Configuration Diagram).&lt;br&gt;
&lt;br&gt;
For more information and new binary installer and source code see &lt;a href="http://anegm-technical.blogspot.com/2008/06/dsl-editor-powertoy-in-vs2008.html"&gt;my post here.&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;&lt;span style="font-family:verdana"&gt;I hope it will be useful for all &lt;/span&gt;&lt;span style="font-family:verdana"&gt;DSL Editor Powertoy &lt;/span&gt;&lt;span style="font-family:verdana"&gt;users.&lt;/span&gt;
&lt;/div&gt;</description><author>ANegm</author><pubDate>Sun, 15 Jun 2008 20:10:08 GMT</pubDate><guid isPermaLink="false">New Post: Power toy for Orcas -- WPF 20080615081008P</guid></item><item><title>New Post: VS 2008 support?</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=27830</link><description>&lt;div style="line-height: normal;"&gt;&lt;span style="font-family:verdana"&gt;It’s pleasure to &lt;a href="../../Sculpture"&gt;Sculpture&lt;/a&gt; team to announce that they succeeded in migrating DSL Editor Powertoy to VS2008.&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;&lt;span style="font-family:verdana"&gt;So you can develop DSL projects with &lt;a href="../dept"&gt;DSL Editor Powertoy&lt;/a&gt; in VS2008 as the same manner as VS2005 with full functionality (Guidance Package , Editor Configuration Diagram).&lt;br&gt;
&lt;br&gt;
For more information and new binary installer and source code see &lt;a href="http://anegm-technical.blogspot.com/2008/06/dsl-editor-powertoy-in-vs2008.html"&gt;my post here.&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;&lt;span style="font-family:verdana"&gt;I hope it will be useful for all &lt;/span&gt;&lt;span style="font-family:verdana"&gt;DSL Editor Powertoy &lt;/span&gt;&lt;span style="font-family:verdana"&gt;users.&lt;/span&gt;
&lt;/div&gt;</description><author>ANegm</author><pubDate>Sun, 15 Jun 2008 20:09:02 GMT</pubDate><guid isPermaLink="false">New Post: VS 2008 support? 20080615080902P</guid></item><item><title>New Post: Surviving with DSL Editor PowerToy in Visual Studio 2008</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=29323</link><description>&lt;div style="line-height: normal;"&gt;&lt;br&gt;
&lt;div style="border-style:dotted none;border-color:rgb(170, 170, 170) -moz-use-text-color;border-width:0.1em medium;margin:1em 0em 2.5em 3em;padding:0.2em;font-style:italic"&gt;&lt;br&gt;
elbruno wrote:&lt;br&gt;
Ahmed really really cool job !!!&lt;br&gt;
&lt;br&gt;
I think your make a big contribution doing this (you save me a couple of hours/days migrating this project to VS2008)&lt;br&gt;
&lt;br&gt;
Have you think in upload a new version here in this workspace for VS2008 ??&lt;br&gt;
&lt;br&gt;
I'm also interested in the migrated code&lt;br&gt;
&lt;br&gt;
thanks again&lt;br&gt;
&lt;br&gt;
Bruno&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;span style="font-family:verdana"&gt;It’s pleasure to &lt;a href="http://www.codeplex.com/Sculpture"&gt;Sculpture&lt;/a&gt; team to announce that they succeeded in migrating DSL Editor Powertoy to VS2008.&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;&lt;span style="font-family:verdana"&gt;So you can develop DSL projects with &lt;a href="../dept"&gt;DSL Editor Powertoy&lt;/a&gt; in VS2008 as the same manner as VS2005 with full functionality (Guidance Package , Editor Configuration Diagram).&lt;br&gt;
&lt;br&gt;
For more information and new binary installer and source code see &lt;a href="http://anegm-technical.blogspot.com/2008/06/dsl-editor-powertoy-in-vs2008.html"&gt;my post here.&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;&lt;span style="font-family:verdana"&gt;I hope it will be useful for all &lt;/span&gt;&lt;span style="font-family:verdana"&gt;DSL Editor Powertoy &lt;/span&gt;&lt;span style="font-family:verdana"&gt;users.&lt;/span&gt;
&lt;/div&gt;</description><author>ANegm</author><pubDate>Sun, 15 Jun 2008 20:06:24 GMT</pubDate><guid isPermaLink="false">New Post: Surviving with DSL Editor PowerToy in Visual Studio 2008 20080615080624P</guid></item><item><title>New Post: DSL Editor PowerToy in VS2008 is now available</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=29684</link><description>&lt;div style="line-height: normal;"&gt;&lt;span style="font-family:verdana"&gt;It’s pleasure to &lt;a href="http://www.codeplex.com/Sculpture"&gt;Sculpture&lt;/a&gt; team to announce that they succeeded in migrating DSL Editor Powertoy to VS2008.&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;&lt;span style="font-family:verdana"&gt;So you can develop DSL projects with &lt;a href="../dept"&gt;DSL Editor Powertoy&lt;/a&gt; in VS2008 as the same manner as VS2005 with full functionality (Guidance Package , Editor Configuration Diagram).&lt;br&gt;
&lt;br&gt;
For more information and new binary installer and source code see &lt;a href="http://anegm-technical.blogspot.com/2008/06/dsl-editor-powertoy-in-vs2008.html"&gt;my post here.&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;&lt;span style="font-family:verdana"&gt;I hope it will be useful for all &lt;/span&gt;&lt;span style="font-family:verdana"&gt;DSL Editor Powertoy &lt;/span&gt;&lt;span style="font-family:verdana"&gt;users.&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;
&lt;/div&gt;</description><author>ANegm</author><pubDate>Sun, 15 Jun 2008 20:01:45 GMT</pubDate><guid isPermaLink="false">New Post: DSL Editor PowerToy in VS2008 is now available 20080615080145P</guid></item><item><title>New Post: Surviving with DSL Editor PowerToy in Visual Studio 2008</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=29323</link><description>&lt;div style="line-height: normal;"&gt;Ahmed really really cool job !!!&lt;br&gt;
&lt;br&gt;
I think your make a big contribution doing this (you save me a couple of hours/days migrating this project to VS2008)&lt;br&gt;
&lt;br&gt;
Have you think in upload a new version here in this workspace for VS2008 ??&lt;br&gt;
&lt;br&gt;
I'm also interested in the migrated code&lt;br&gt;
&lt;br&gt;
thanks again&lt;br&gt;
&lt;br&gt;
Bruno&lt;br&gt;
&lt;/div&gt;</description><author>elbruno</author><pubDate>Wed, 11 Jun 2008 19:50:25 GMT</pubDate><guid isPermaLink="false">New Post: Surviving with DSL Editor PowerToy in Visual Studio 2008 20080611075025P</guid></item><item><title>NEW POST: Surviving with DSL Editor PowerToy in Visual Studio 2008</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=29323</link><description>&lt;div style="line-height: normal;"&gt;Hello&lt;br&gt;
I wrote a post about Surviving with DSL Editor PowerToy in Visual Studio 2008.&lt;br&gt;
I hope it will be useful for all &lt;em&gt;&lt;strong&gt;DSL Editor PowerToy&lt;/strong&gt; Lovers.&lt;br&gt;
&lt;/em&gt;&lt;a href="http://anegm-technical.blogspot.com/2008/06/surviving-with-dsl-editor-powertoy-in.html"&gt;you can read it from here&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;</description><author>ANegm</author><pubDate>Mon, 09 Jun 2008 16:37:43 GMT</pubDate><guid isPermaLink="false">NEW POST: Surviving with DSL Editor PowerToy in Visual Studio 2008 20080609043743P</guid></item><item><title>NEW POST: VS 2008 support?</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=27830</link><description>&lt;div style="line-height: normal;"&gt;Sure would like to. Might even squeeze in the next planned version too.&lt;br&gt;
&lt;br&gt;
Jezz
&lt;/div&gt;</description><author>jezzsa</author><pubDate>Mon, 19 May 2008 00:24:45 GMT</pubDate><guid isPermaLink="false">NEW POST: VS 2008 support? 20080519122445A</guid></item><item><title>NEW POST: VS 2008 support?</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=27830</link><description>&lt;div style="line-height: normal;"&gt;Are there any plans for this tool to be supported in VS 08?&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
-- AFurtado 
&lt;/div&gt;</description><author>AFurtado</author><pubDate>Fri, 16 May 2008 02:59:19 GMT</pubDate><guid isPermaLink="false">NEW POST: VS 2008 support? 20080516025919A</guid></item><item><title>NEW POST: Power toy for Orcas -- WPF</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=14023</link><description>&lt;div class="wikidoc"&gt;
I want to respond just to let you know I am not ignoring anyone, I do care, but at present I am a little swamped with real life. &lt;br /&gt;I am hoping to get back to this as soon as possible and get a proper new release going for you guys on Orcas.&lt;br /&gt;Hoping that the fix and workaround above will keep you going for now.&lt;br /&gt;
&lt;/div&gt;</description><author>jezzsa</author><pubDate>Tue, 11 Dec 2007 13:47:11 GMT</pubDate><guid isPermaLink="false">NEW POST: Power toy for Orcas -- WPF 20071211014711P</guid></item><item><title>NEW POST: Power toy for Orcas -- WPF</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=14023</link><description>&lt;div class="wikidoc"&gt;
Hi ,&lt;br /&gt; &lt;br /&gt;looks like you guys made it to run the tool against VS2008. When do you think an &lt;i&gt;official&lt;/i&gt; update of this project running in VS2008 will be available?&lt;br /&gt; &lt;br /&gt;Thanks a lot.&lt;br /&gt;
&lt;/div&gt;</description><author>mpagel</author><pubDate>Wed, 05 Dec 2007 21:55:35 GMT</pubDate><guid isPermaLink="false">NEW POST: Power toy for Orcas -- WPF 20071205095535P</guid></item><item><title>NEW POST: Power toy for Orcas -- WPF</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=14023</link><description>&lt;div class="wikidoc"&gt;
Hi, had the same problem here.&lt;br /&gt; &lt;br /&gt;Looked in the registry where the processors are registered and EditorConfigurationDirectiveProcessor was not there.&lt;br /&gt; &lt;br /&gt;So I executed VSPackageRegistrySettings.reg manually and now it works!&lt;br /&gt;
&lt;/div&gt;</description><author>PreTomas</author><pubDate>Wed, 05 Dec 2007 20:30:18 GMT</pubDate><guid isPermaLink="false">NEW POST: Power toy for Orcas -- WPF 20071205083018P</guid></item><item><title>NEW POST: Power toy for Orcas -- WPF</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=14023</link><description>&lt;div class="wikidoc"&gt;
I've got the same error. Could anybody help me?&lt;br /&gt;Thanks.&lt;br /&gt;
&lt;/div&gt;</description><author>alexstudy</author><pubDate>Mon, 03 Dec 2007 19:25:45 GMT</pubDate><guid isPermaLink="false">NEW POST: Power toy for Orcas -- WPF 20071203072545P</guid></item><item><title>NEW POST: Power toy for Orcas -- WPF</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=14023</link><description>&lt;div class="wikidoc"&gt;
Hi&lt;br /&gt; &lt;br /&gt;I just migrated some DSL project to VS2008 RTM with SDK V1.0 and they work fine ... however in a project with the DSL Editor Power Toy i Get an error with the EditorConfiguration attribute.&lt;br /&gt; &lt;br /&gt;&amp;lt;#@ EditorConfiguration processor=&amp;quot;EditorConfigurationDirectiveProcessor&amp;quot; requires=&amp;quot;fileName='..\DslEditorsDefinition.deptec'&amp;quot; #&amp;gt;&lt;br /&gt; &lt;br /&gt;in the CommandId.tt file&lt;br /&gt; &lt;br /&gt;any ideas ???&lt;br /&gt; &lt;br /&gt;Thanks in advance.&lt;br /&gt;
&lt;/div&gt;</description><author>elbruno</author><pubDate>Mon, 26 Nov 2007 18:19:28 GMT</pubDate><guid isPermaLink="false">NEW POST: Power toy for Orcas -- WPF 20071126061928P</guid></item><item><title>NEW POST: Power toy for Orcas -- WPF</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=14023</link><description>&lt;div class="wikidoc"&gt;
Sorry for such delay, I was away. Coming back to this project this week hopefully. Need to clean up code a bit and it's ready for sharing.  As I remember I had installer ported as well.&lt;br /&gt; &lt;br /&gt;If you wish, I can send you what I have in its current state right away. I also plan to share it on my blog once it's set up (beginning next week), currently I have no place to share the files. For now I can just send the installer and/or sources by email, check your PM for my contact information.&lt;br /&gt;
&lt;/div&gt;</description><author>PreTomas</author><pubDate>Mon, 05 Nov 2007 20:41:48 GMT</pubDate><guid isPermaLink="false">NEW POST: Power toy for Orcas -- WPF 20071105084148P</guid></item><item><title>NEW POST: Power toy for Orcas -- WPF</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=14023</link><description>&lt;div class="wikidoc"&gt;
Sorry, somehow I missed this good news in my feeder.&lt;br /&gt; &lt;br /&gt;This is great news, what can you share from your work?&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;div class="quote"&gt;
 &lt;br /&gt;PreTomas wrote:&lt;br /&gt;I've just run Editor PowerToy in Orcas Beta 1! It required some changes in project files. I did not port Setup project, so installed using &amp;quot;Register Guidance Package&amp;quot; from VS. Also ported CTC template to VSCT template, I will post more details shorlty. Hopefully with clean instructions how to do it.&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;
&lt;/div&gt;</description><author>jezzsa</author><pubDate>Sat, 29 Sep 2007 19:28:51 GMT</pubDate><guid isPermaLink="false">NEW POST: Power toy for Orcas -- WPF 20070929072851P</guid></item><item><title>NEW POST: Power toy for Orcas -- WPF</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=14023</link><description>&lt;div class="wikidoc"&gt;
I've just run Editor PowerToy in Orcas Beta 1! It required some changes in project files. I did not port Setup project, so installed using &amp;quot;Register Guidance Package&amp;quot; from VS. Also ported CTC template to VSCT template, I will post more details shorlty. Hopefully with clean instructions how to do it.&lt;br /&gt;
&lt;/div&gt;</description><author>PreTomas</author><pubDate>Thu, 30 Aug 2007 15:10:47 GMT</pubDate><guid isPermaLink="false">NEW POST: Power toy for Orcas -- WPF 20070830031047P</guid></item><item><title>NEW POST: Power toy for Orcas -- WPF</title><link>http://www.codeplex.com/dept/Thread/View.aspx?ThreadId=14023</link><description>&lt;div class="wikidoc"&gt;
No, not yet. Since Orcas is not released yet, and most people will be building on Whidbey still, no port yet.&lt;br /&gt; &lt;br /&gt;There is not so much to go wrong in the port as far as code and depenedencies. These should upgrade gracefully.&lt;br /&gt;However, the DSLTools changed from using CTC to VSCT resource file format. This is a major change actually to how the resources of the PowerToy will integrate into the DSL solution and how they are loaded.&lt;br /&gt;We will be getting to this in time.&lt;br /&gt; &lt;br /&gt;Happy for someone to have a go and let us know what needs changing.&lt;br /&gt;
&lt;/div&gt;</description><author>jezzsa</author><pubDate>Tue, 21 Aug 2007 01:49:18 GMT</pubDate><guid isPermaLink="false">NEW POST: Power toy for Orcas -- WPF 20070821014918A</guid></item></channel></rss>