<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic .ecfg file name in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/ecfg-file-name/m-p/593806#M15989</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm generating some .ecfg files using post build events in my projects. I'm using .NET 4.5 and Visual Studio 2012. My file names are in the following format:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&amp;lt;guid_id&amp;gt;}_&amp;lt;nameOfClass&amp;gt;.ecfg&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But I noticed that most of the other ones are just &amp;lt;nameOfClass&amp;gt;.ecfg&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I didn't see anything in ESRIRegasm.exe to name mine &amp;lt;nameOfClass&amp;gt;.ecfg.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;How do I do this?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jun 2014 14:43:21 GMT</pubDate>
    <dc:creator>KarenRobine</dc:creator>
    <dc:date>2014-06-04T14:43:21Z</dc:date>
    <item>
      <title>.ecfg file name</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/ecfg-file-name/m-p/593806#M15989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm generating some .ecfg files using post build events in my projects. I'm using .NET 4.5 and Visual Studio 2012. My file names are in the following format:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&amp;lt;guid_id&amp;gt;}_&amp;lt;nameOfClass&amp;gt;.ecfg&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But I noticed that most of the other ones are just &amp;lt;nameOfClass&amp;gt;.ecfg&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I didn't see anything in ESRIRegasm.exe to name mine &amp;lt;nameOfClass&amp;gt;.ecfg.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;How do I do this?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 14:43:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/ecfg-file-name/m-p/593806#M15989</guid>
      <dc:creator>KarenRobine</dc:creator>
      <dc:date>2014-06-04T14:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: .ecfg file name</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/ecfg-file-name/m-p/593807#M15990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The files that are generated as: &amp;lt;nameOfClass&amp;gt;.ecfg lack "AssemblyInfo" details. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For example go into one of your projects that generates the {&amp;lt;guid_id&amp;gt;}_&amp;lt;nameOfClass&amp;gt;.ecfg. In the Solution Explorer (for a C# project) under properties you will see AssemblyInfo.cs. Right-click this and click Properties...set the build action to None. For VB (I am not a VB guy) but the easiest way I saw was to right-click the project in the Solution Explorer &amp;gt; Unload...right-click again &amp;gt; Edit...search for AssemblyInfo. You should see &amp;lt;Compile Include="&amp;lt;Project&amp;gt;\AssemblyInfo.vb" /&amp;gt;...remove this line and reload the project. On the next build you should see the .ecfg generate without the GUID.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The main reason we use this pattern is to help avoid name collisions...avoiding the case where more than one developer creates a acme.ecfg.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 20:57:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/ecfg-file-name/m-p/593807#M15990</guid>
      <dc:creator>JohnHauck</dc:creator>
      <dc:date>2014-06-04T20:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: .ecfg file name</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/ecfg-file-name/m-p/593808#M15991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks John. I had a feeling that was the reason why. Makes perfect sense.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2014 12:38:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/ecfg-file-name/m-p/593808#M15991</guid>
      <dc:creator>KarenRobine</dc:creator>
      <dc:date>2014-06-05T12:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: .ecfg file name</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/ecfg-file-name/m-p/593809#M15992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;For a VB project, you can find the ApplicationInfo.vb file under My Project in the Solution Explorer.&amp;nbsp; Make sure you click the Show All Files button at the top of the listview or you won't be able to expand the My Project node.&amp;nbsp; You can edit the file without unloading the project.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2014 12:41:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/ecfg-file-name/m-p/593809#M15992</guid>
      <dc:creator>NeilClemmons</dc:creator>
      <dc:date>2014-06-05T12:41:13Z</dc:date>
    </item>
  </channel>
</rss>

