<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: UML Modeling and Code Generation in Visual Studio 2010</title>
	<link>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/</link>
	<description>Interfaces are like alcohol - they are a lot of fun when used in moderation.</description>
	<pubDate>Sat, 04 Feb 2012 05:49:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: afro54</title>
		<link>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3407</link>
		<dc:creator>afro54</dc:creator>
		<pubDate>Thu, 28 Apr 2011 18:32:18 +0000</pubDate>
		<guid>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3407</guid>
		<description>I tried this profile but, couldn't get it to work.

I changed the assembly to "Microsoft.VisualStudio.ArchitectureTools.Extensibility.dll", as the UML.Extensions didn't survive the beta.

I stll can't get it to work.  I get the following error message:


Error	3	Compiling transformation: Cannot implicitly convert type 'Microsoft.VisualStudio.ArchitectureTools.Extensibility.IModelingProjectReader' to 'Microsoft.VisualStudio.ArchitectureTools.Extensibility.IModelingProject'. An explicit conversion exists (are you missing a cast?)	

I would appreciate any advice to resolve this.</description>
		<content:encoded><![CDATA[<p>I tried this profile but, couldn&#8217;t get it to work.</p>
<p>I changed the assembly to &#8220;Microsoft.VisualStudio.ArchitectureTools.Extensibility.dll&#8221;, as the UML.Extensions didn&#8217;t survive the beta.</p>
<p>I stll can&#8217;t get it to work.  I get the following error message:</p>
<p>Error	3	Compiling transformation: Cannot implicitly convert type &#8216;Microsoft.VisualStudio.ArchitectureTools.Extensibility.IModelingProjectReader&#8217; to &#8216;Microsoft.VisualStudio.ArchitectureTools.Extensibility.IModelingProject&#8217;. An explicit conversion exists (are you missing a cast?)	</p>
<p>I would appreciate any advice to resolve this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 3 Ideas to Make Architecture Executable in Visual Studio 2010 &#124; Techielicous</title>
		<link>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3374</link>
		<dc:creator>3 Ideas to Make Architecture Executable in Visual Studio 2010 &#124; Techielicous</dc:creator>
		<pubDate>Mon, 07 Mar 2011 05:50:24 +0000</pubDate>
		<guid>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3374</guid>
		<description>[...] http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/ [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] <a href="http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/" rel="nofollow">http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/</a> [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harvo Jones</title>
		<link>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3274</link>
		<dc:creator>Harvo Jones</dc:creator>
		<pubDate>Wed, 20 Oct 2010 01:04:10 +0000</pubDate>
		<guid>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3274</guid>
		<description>Holy $#!t, I feel like I just stumbled onto the website of a genius...defining custom VS 2010 UML stereotypes, T4 templating code generation...*exactly* what I was searching for, down to a T.

Been reading about your blog and learning about your seminars.  Oleg, I am very impressed.

- Harvo</description>
		<content:encoded><![CDATA[<p>Holy $#!t, I feel like I just stumbled onto the website of a genius&#8230;defining custom VS 2010 UML stereotypes, T4 templating code generation&#8230;*exactly* what I was searching for, down to a T.</p>
<p>Been reading about your blog and learning about your seminars.  Oleg, I am very impressed.</p>
<p>- Harvo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3265</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Tue, 12 Oct 2010 15:21:35 +0000</pubDate>
		<guid>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3265</guid>
		<description>Great Article Oleg. For those looking for POCO generation, I have modified the .tt file to use with VS2k10 RTM Release.









&#60;#
    string projectPath = Host.ResolvePath(@"..\CommerceModeling\CommerceModeling.modelproj");
using (IModelingProjectReader projectReader =
           ModelingProject.LoadReadOnly(projectPath))
{
   IModelStore store = projectReader.Store;
   foreach (IClass classElement in store.AllInstances())
   { 

  
     
      if (classElement != null) {
        #&#62;

        class  {
           
              string  {get;set;}
           
        }
        


 Hope this comment translates better...</description>
		<content:encoded><![CDATA[<p>Great Article Oleg. For those looking for POCO generation, I have modified the .tt file to use with VS2k10 RTM Release.</p>
<p>&lt;#<br />
    string projectPath = Host.ResolvePath(@&#8221;..\CommerceModeling\CommerceModeling.modelproj&#8221;);<br />
using (IModelingProjectReader projectReader =<br />
           ModelingProject.LoadReadOnly(projectPath))<br />
{<br />
   IModelStore store = projectReader.Store;<br />
   foreach (IClass classElement in store.AllInstances())<br />
   { </p>
<p>      if (classElement != null) {<br />
        #&gt;</p>
<p>        class  {</p>
<p>              string  {get;set;}</p>
<p>        }</p>
<p> Hope this comment translates better&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3264</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Tue, 12 Oct 2010 15:20:01 +0000</pubDate>
		<guid>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3264</guid>
		<description>Great Article Oleg.  For those looking for POCO generation, I have modified the .tt file to use with VS2k10 RTM Release.

&lt;code&gt;







&#60;#
    string projectPath = Host.ResolvePath(@"..\CommerceModeling\CommerceModeling.modelproj");
using (IModelingProjectReader projectReader =
           ModelingProject.LoadReadOnly(projectPath))
{
   IModelStore store = projectReader.Store;
   foreach (IClass classElement in store.AllInstances())
   { 

  
     
      if (classElement != null) {
        #&#62;

        class  {
           
              string  {get;set;}
           
        }
        

&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Great Article Oleg.  For those looking for POCO generation, I have modified the .tt file to use with VS2k10 RTM Release.</p>
<p><code></p>
<p>&lt;#<br />
    string projectPath = Host.ResolvePath(@"..\CommerceModeling\CommerceModeling.modelproj");<br />
using (IModelingProjectReader projectReader =<br />
           ModelingProject.LoadReadOnly(projectPath))<br />
{<br />
   IModelStore store = projectReader.Store;<br />
   foreach (IClass classElement in store.AllInstances())<br />
   { </p>
<p>      if (classElement != null) {<br />
        #&gt;</p>
<p>        class  {</p>
<p>              string  {get;set;}</p>
<p>        }</p>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CodeEase.com &#187; Blog Archive &#187; Using Visual Studio 2010 to build UML model and genarate code</title>
		<link>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3234</link>
		<dc:creator>CodeEase.com &#187; Blog Archive &#187; Using Visual Studio 2010 to build UML model and genarate code</dc:creator>
		<pubDate>Tue, 07 Sep 2010 21:33:09 +0000</pubDate>
		<guid>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3234</guid>
		<description>[...] a good article to help you. (Oleg Sych: UML Modeling and Code Generation in Visual Studio 2010)    Tags: UML Category: .NET &#160;&#124;&#160;&#160;Comment (RSS) [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] a good article to help you. (Oleg Sych: UML Modeling and Code Generation in Visual Studio 2010)    Tags: UML Category: .NET &nbsp;|&nbsp;&nbsp;Comment (RSS) [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oleg Sych</title>
		<link>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3173</link>
		<dc:creator>Oleg Sych</dc:creator>
		<pubDate>Wed, 30 Jun 2010 11:21:57 +0000</pubDate>
		<guid>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3173</guid>
		<description>Roy,

I suspect that reverse-engineering functionality simply does not support custom attributes at this time and to make it happen someone would need to submit a change request on Microsoft &lt;a href="http://connect.microsoft.com" rel="nofollow"&gt;Connect&lt;/a&gt; portal.

Oleg</description>
		<content:encoded><![CDATA[<p>Roy,</p>
<p>I suspect that reverse-engineering functionality simply does not support custom attributes at this time and to make it happen someone would need to submit a change request on Microsoft <a href="http://connect.microsoft.com" rel="nofollow">Connect</a> portal.</p>
<p>Oleg</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: R. Lawson</title>
		<link>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3172</link>
		<dc:creator>R. Lawson</dc:creator>
		<pubDate>Tue, 29 Jun 2010 15:59:04 +0000</pubDate>
		<guid>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3172</guid>
		<description>Hi Oleg,

I am using a class diagram that is reversed engineered for code generation.  I created a custom attribute where I want to set various properties that I will use during code gen.

I can manually add attributes to my class diagram, but when I reverse engineer the class diagram, the attribute decorations in my class are not being added to the diagram.  Do you know how to make that happen?</description>
		<content:encoded><![CDATA[<p>Hi Oleg,</p>
<p>I am using a class diagram that is reversed engineered for code generation.  I created a custom attribute where I want to set various properties that I will use during code gen.</p>
<p>I can manually add attributes to my class diagram, but when I reverse engineer the class diagram, the attribute decorations in my class are not being added to the diagram.  Do you know how to make that happen?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ключевые ресурсы по архитектурным инструментам Visual Studio 2010 - Архитектурные Заметки Сергея Орлика - Home - MSDN Blogs</title>
		<link>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3109</link>
		<dc:creator>Ключевые ресурсы по архитектурным инструментам Visual Studio 2010 - Архитектурные Заметки Сергея Орлика - Home - MSDN Blogs</dc:creator>
		<pubDate>Tue, 25 May 2010 08:04:34 +0000</pubDate>
		<guid>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3109</guid>
		<description>[...] обратите внимание на пост гуру T4 - Олега Сыча: UML Modeling and Code Generation in Visual Studio 2010 и блог Тима Фишера (Tim [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] обратите внимание на пост гуру T4 - Олега Сыча: UML Modeling and Code Generation in Visual Studio 2010 и блог Тима Фишера (Tim [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gustavo</title>
		<link>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3108</link>
		<dc:creator>Gustavo</dc:creator>
		<pubDate>Mon, 24 May 2010 21:43:46 +0000</pubDate>
		<guid>http://www.olegsych.com/2010/01/uml-modeling-and-code-generation-in-visual-studio-2010/#comment-3108</guid>
		<description>Excellent post, you have inspired me to write my own template. I have pulled togheter a very simple t4 template for generating classes, interfaces and enums based on a modeling project in case anyone needs it: http://thegsharp.wordpress.com/2010/05/24/vs2010-modeling-project-%E2%80%93-generating-classes-from-uml-%E2%80%93-t4-template

Cheers!</description>
		<content:encoded><![CDATA[<p>Excellent post, you have inspired me to write my own template. I have pulled togheter a very simple t4 template for generating classes, interfaces and enums based on a modeling project in case anyone needs it: <a href="http://thegsharp.wordpress.com/2010/05/24/vs2010-modeling-project-%E2%80%93-generating-classes-from-uml-%E2%80%93-t4-template" rel="nofollow">http://thegsharp.wordpress.com/2010/05/24/vs2010-modeling-project-%E2%80%93-generating-classes-from-uml-%E2%80%93-t4-template</a></p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

