<?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 Re: Migrate to 3.x tool not visible in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/migrate-to-3-x-tool-not-visible/m-p/1467944#M11532</link>
    <description>&lt;P&gt;The desktopVersion attribute in the AddInInfo tag in your config.daml determines whether an add-in is included by the current version of ArcGIS Pro.&amp;nbsp; &amp;nbsp;In essence 'desktopVersion' has to be less than the current version of ArcGIS Pro.&amp;nbsp; However, the version in desktopVersion doesn't include the patch version number i.e. ArcGIS Pro version 3.2.1 will work with desktopVersion 3.2&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;AddInInfo id="{e1515785-a28f-44f5-9c13-9f6eaab0434f}" version="1.0" desktopVersion="3.2.49743"&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would suggest changing the desktop version number.&amp;nbsp; Make sure that the esriaddinx file in your Add-in folder is replaced after you rebuilt your add-in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 14 May 2024 20:36:51 GMT</pubDate>
    <dc:creator>Wolf</dc:creator>
    <dc:date>2024-05-14T20:36:51Z</dc:date>
    <item>
      <title>Migrate to 3.x tool not visible</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/migrate-to-3-x-tool-not-visible/m-p/1458442#M11517</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm converting tools from 2.8 and 3.1 to 3.2.&amp;nbsp; The ones I have done from 3.1 to 3.2 have all worked fine.&amp;nbsp; They were all originally at 2.8 and moved to 3.1, so I am fairly familiar with the migrate process.&lt;/P&gt;&lt;P&gt;I am now converting the rest of our tools from 2.8 to 3.2 and this first one is giving me issues.&amp;nbsp; I run all the usual migrate processes:&amp;nbsp; update the references and the migrate the code.&amp;nbsp; I check everything and then run the tool in debug mode.&amp;nbsp; I get no errors, but in ArcPro I cannot see the tool....it's like it's not registered with the software.&amp;nbsp; It is sitting in my "Add-Ins" folder.&amp;nbsp; Here is my config.daml.&amp;nbsp; Can anyone see any issues or know of something else I need to be looking for??&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;ArcGIS defaultAssembly="ToFromTool_ArcPro.dll" defaultNamespace="ToFromTool_ArcPro" xmlns="http://schemas.esri.com/DADF/Registry" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schemas.esri.com/DADF/Registry file:///C:/Program%20Files/ArcGIS/Pro/bin/ArcGIS.Desktop.Framework.xsd"&amp;gt;
  &amp;lt;AddInInfo id="{6b41516a-b426-4b2c-9881-fa4148328d3a}" version="3.2" desktopVersion="3.2.0.49743"&amp;gt;
    &amp;lt;Name&amp;gt;To-From Tool&amp;lt;/Name&amp;gt;
    &amp;lt;Description&amp;gt;Sets the To and From attribute for selected features.&amp;lt;/Description&amp;gt;
    &amp;lt;Image&amp;gt;Images\ToFrom.png&amp;lt;/Image&amp;gt;
    &amp;lt;Author&amp;gt;Brian Bulla&amp;lt;/Author&amp;gt;
    &amp;lt;Company&amp;gt;Region of Durham&amp;lt;/Company&amp;gt;
    &amp;lt;Date&amp;gt;May 13, 2024&amp;lt;/Date&amp;gt;
    &amp;lt;Subject&amp;gt;Framework&amp;lt;/Subject&amp;gt;
    &amp;lt;!-- Note subject can be one or more of these topics:
                    Content, Framework, Editing, Geodatabase, Geometry, Geoprocessing, Layouts, Map Authoring, Map Exploration --&amp;gt;
  &amp;lt;/AddInInfo&amp;gt;
  &amp;lt;dependencies&amp;gt;
    &amp;lt;dependency name="{9466cc69-3fce-4774-8134-d94377460abd}" /&amp;gt;
    &amp;lt;!-- id of "DSM_Toolbar_ArcPro" --&amp;gt;
  &amp;lt;/dependencies&amp;gt;
  &amp;lt;modules&amp;gt;
    &amp;lt;insertModule id="ToFromTool_ArcPro_Module" className="Module1" autoLoad="false" caption="Module1"&amp;gt;
      &amp;lt;!-- uncomment to have the control hosted on a separate tab--&amp;gt;
      &amp;lt;tabs&amp;gt;
        &amp;lt;!--&amp;lt;tab id="ToFromTool_ArcPro_Tab1" caption="New Tab"&amp;gt;
          &amp;lt;group refID="ToFromTool_ArcPro_Group1"/&amp;gt;
        &amp;lt;/tab&amp;gt;--&amp;gt;
      &amp;lt;/tabs&amp;gt;
      &amp;lt;groups&amp;gt;
        &amp;lt;!-- comment this out if you have no controls on the Addin tab to avoid
              an empty group--&amp;gt;
        &amp;lt;!--
        &amp;lt;group id="ToFromTool_ArcPro_Group1" caption="Group 1" appearsOnAddInTab="true"&amp;gt;
          --&amp;gt;
        &amp;lt;!-- host controls within groups --&amp;gt;
        &amp;lt;!--
          &amp;lt;button refID="ToFromTool_ArcPro_btnToFromTool" size="large" /&amp;gt;--&amp;gt;
        &amp;lt;!--&amp;lt;/group&amp;gt;--&amp;gt;
      &amp;lt;/groups&amp;gt;
      &amp;lt;controls&amp;gt;
        &amp;lt;!-- add your controls here --&amp;gt;
        &amp;lt;button id="ToFromTool_ArcPro_btnToFromTool" caption="To-From Tool" className="btnToFromTool" loadOnClick="true" smallImage="Images\ToFrom.png" largeImage="Images\ToFrom.png"&amp;gt;
          &amp;lt;tooltip heading="To-From Tool"&amp;gt;Populates the UPSTREAM and DOWNSTREAM attributes for Water, Sanitary and Storm.&amp;lt;disabledText /&amp;gt;&amp;lt;/tooltip&amp;gt;
        &amp;lt;/button&amp;gt;
      &amp;lt;/controls&amp;gt;
    &amp;lt;/insertModule&amp;gt;
    &amp;lt;updateModule refID="DSM_Toolbar_ArcPro_Module"&amp;gt;
      &amp;lt;groups&amp;gt;
        &amp;lt;updateGroup refID="Editing_Tools_group"&amp;gt;
          &amp;lt;insertButton refID="ToFromTool_ArcPro_btnToFromTool"&amp;gt;&amp;lt;/insertButton&amp;gt;
        &amp;lt;/updateGroup&amp;gt;
      &amp;lt;/groups&amp;gt;
    &amp;lt;/updateModule&amp;gt;
  &amp;lt;/modules&amp;gt;
&amp;lt;/ArcGIS&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 13 May 2024 15:10:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/migrate-to-3-x-tool-not-visible/m-p/1458442#M11517</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2024-05-13T15:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: Migrate to 3.x tool not visible</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/migrate-to-3-x-tool-not-visible/m-p/1459069#M11518</link>
      <description>&lt;P&gt;In regards to the AddInfo line:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;AddInInfo id="{6b41516a-b426-4b2c-9881-fa4148328d3a}" version="3.2" desktopVersion="3.2.0.49743"&amp;gt;&lt;/P&gt;&lt;P&gt;The version sets the lowest level that the add-in will run in. In your case ArcGIS Pro 3.2 or higher will be required before the Add-In can load/run. The desktopVersion should represent the version that you did your Visual Studio build against.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I see you are using the &amp;lt;dependency&amp;gt; tag, did you change any GUIDs?&lt;/P&gt;&lt;PRE&gt;  &amp;lt;dependencies&amp;gt;
    &amp;lt;dependency name="{9466cc69-3fce-4774-8134-d94377460abd}" /&amp;gt;
    &amp;lt;!-- id of "DSM_Toolbar_ArcPro" --&amp;gt;
  &amp;lt;/dependencies&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 May 2024 16:33:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/migrate-to-3-x-tool-not-visible/m-p/1459069#M11518</guid>
      <dc:creator>RichardDaniels</dc:creator>
      <dc:date>2024-05-13T16:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Migrate to 3.x tool not visible</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/migrate-to-3-x-tool-not-visible/m-p/1459167#M11519</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;No, the GUID was not changed, and as for the version I have also tried it with just "3.2"....that has worked with all my other successful tools I migrated to 3.1 and then just updated the version to "3.2".&lt;/P&gt;&lt;P&gt;This is the first 2.8 tool I've actually migrated to 3.2 (ie. not 3.1 and then 3.2).&amp;nbsp; Is there maybe a glich with the conversion tools to 3.2??&lt;/P&gt;</description>
      <pubDate>Mon, 13 May 2024 16:48:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/migrate-to-3-x-tool-not-visible/m-p/1459167#M11519</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2024-05-13T16:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: Migrate to 3.x tool not visible</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/migrate-to-3-x-tool-not-visible/m-p/1459290#M11520</link>
      <description>&lt;P&gt;Recall there were several breaking changes between 2.8 and 3.1 versions of ArcGIS Pro. I would start by looking at your.Net dependencies in Visual Studio since&amp;nbsp; Pro 3 requires .Net Desktop Runtime 6.0.9 or higher while 2.8 ran under .Net 4.8.&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you say, in my Add-Ins folder, are you sure this folder is set in the registry at&amp;nbsp;HKEY_LOCAL_MACHINE\SOFTWARE\ESRI\ArcGISPro\Settings\Add-in Folders with a subkey with the path to the add-in?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RichardDaniels_0-1715620007347.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/103945i7841EE96156BA0D9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RichardDaniels_0-1715620007347.png" alt="RichardDaniels_0-1715620007347.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After a successful build I copy the Add-In to a well known location to Test. The folder name of the add-in use the GUID, and inthe folder is your .\images subfolder, myaddin.esriAddinX, myaddin.deps.json, myaddin.dll, myaddin.xml, etc.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 May 2024 17:07:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/migrate-to-3-x-tool-not-visible/m-p/1459290#M11520</guid>
      <dc:creator>RichardDaniels</dc:creator>
      <dc:date>2024-05-13T17:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: Migrate to 3.x tool not visible</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/migrate-to-3-x-tool-not-visible/m-p/1459468#M11521</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Yes, the AddIn is in the folder...see the image below, along with all the other ones I have converted.&amp;nbsp; It's just not showing up in ArcPro (all the other ones are showing up).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrianBulla_1-1715621317538.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/103956iB7E4D36473B84695/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrianBulla_1-1715621317538.png" alt="BrianBulla_1-1715621317538.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my Registry, things are looking a bit different than in your screenshot, but if the other AddIns are getting added, I'm not totally sure that this is really the issue.&amp;nbsp; I think in ours you are using a custom location, where in mine I am just using the default location....I think that is why I do not see anything here.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrianBulla_0-1715621305152.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/103955i66350E19E191CB60/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrianBulla_0-1715621305152.png" alt="BrianBulla_0-1715621305152.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As for the Target Framework, everything looks good there.&amp;nbsp; The Migration Tool upgraded it to .NET 6.0, so all looks to be good there.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrianBulla_2-1715621546611.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/103958i07FAB0109B6E68B9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrianBulla_2-1715621546611.png" alt="BrianBulla_2-1715621546611.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have more tools to migrate, so I will try another one and see if I have this same issue.&lt;/P&gt;</description>
      <pubDate>Mon, 13 May 2024 17:33:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/migrate-to-3-x-tool-not-visible/m-p/1459468#M11521</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2024-05-13T17:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: Migrate to 3.x tool not visible</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/migrate-to-3-x-tool-not-visible/m-p/1467944#M11532</link>
      <description>&lt;P&gt;The desktopVersion attribute in the AddInInfo tag in your config.daml determines whether an add-in is included by the current version of ArcGIS Pro.&amp;nbsp; &amp;nbsp;In essence 'desktopVersion' has to be less than the current version of ArcGIS Pro.&amp;nbsp; However, the version in desktopVersion doesn't include the patch version number i.e. ArcGIS Pro version 3.2.1 will work with desktopVersion 3.2&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;AddInInfo id="{e1515785-a28f-44f5-9c13-9f6eaab0434f}" version="1.0" desktopVersion="3.2.49743"&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would suggest changing the desktop version number.&amp;nbsp; Make sure that the esriaddinx file in your Add-in folder is replaced after you rebuilt your add-in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2024 20:36:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/migrate-to-3-x-tool-not-visible/m-p/1467944#M11532</guid>
      <dc:creator>Wolf</dc:creator>
      <dc:date>2024-05-14T20:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Migrate to 3.x tool not visible</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/migrate-to-3-x-tool-not-visible/m-p/1473096#M11540</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/12882"&gt;@Wolf&lt;/a&gt;&amp;nbsp;.&amp;nbsp; Yes, I have tried that but to no avail.&amp;nbsp; Whether I use just "3.2" or use the number that gets set by default during the migration process ("&lt;SPAN&gt;3.2.0.49743&lt;/SPAN&gt;"), it doesn't seem to get detected by ArcGIS Pro.&lt;/P&gt;&lt;P&gt;Is there anything else I should be looking for?&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2024 18:03:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/migrate-to-3-x-tool-not-visible/m-p/1473096#M11540</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2024-05-15T18:03:20Z</dc:date>
    </item>
  </channel>
</rss>

