<?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: Targeting multiple versions with an ArcGIS Pro addin in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/targeting-multiple-versions-with-an-arcgis-pro/m-p/1279909#M9706</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2978"&gt;@RichardDaniels&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I applied the same values you are using for the AddInfo attributes:&amp;nbsp;version="2.0" desktopVersion="2.9.0".&lt;/P&gt;&lt;P&gt;Then I tried to load the add-in using ArcGIS Pro 2.6, and there is an error:&amp;nbsp;&lt;/P&gt;&lt;P&gt;"&lt;EM&gt;This add-in cannot be loaded because it targets an incompatible version of ArcGIS Pro. Current version 2.6 Add-in targets: 2.9&lt;/EM&gt;".&lt;/P&gt;&lt;P&gt;Am I missing anything?&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Tue, 18 Apr 2023 21:02:31 GMT</pubDate>
    <dc:creator>YukiNET</dc:creator>
    <dc:date>2023-04-18T21:02:31Z</dc:date>
    <item>
      <title>Targeting multiple versions with an ArcGIS Pro addin</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/targeting-multiple-versions-with-an-arcgis-pro/m-p/1279882#M9703</link>
      <description>&lt;P&gt;I have an ArcGIS Pro Add-in built with .NET platform, targeting version 2.3&lt;/P&gt;&lt;P&gt;I'd like to update it to run in 2.9, but keeps it compatible with previous versions.&lt;/P&gt;&lt;P&gt;Is there any way to target multiple versions in AddInfo/TargetVersion?&lt;/P&gt;&lt;P&gt;Or which will be the better way to make it work in more than one version?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 20:14:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/targeting-multiple-versions-with-an-arcgis-pro/m-p/1279882#M9703</guid>
      <dc:creator>YukiNET</dc:creator>
      <dc:date>2023-04-18T20:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Targeting multiple versions with an ArcGIS Pro addin</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/targeting-multiple-versions-with-an-arcgis-pro/m-p/1279906#M9704</link>
      <description>&lt;P&gt;If you develop an add-in under version 2.3 it will work for all newer 2.x releases (including 2.9), without having to rebuild the 2.3 add-in under 2.9.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-Advanced-Topics#add-in-versioning" target="_blank" rel="noopener"&gt;ProConcepts Advanced Topics · Esri/arcgis-pro-sdk Wiki (github.com)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The compatibility is defined by the 'desktopVersion' attribute of the 'AddInInfo' tag in config.daml.&amp;nbsp; 'desktopVersion' defines the oldest release your add-in is compatible with, however, compatibility is only maintained within each mayor version number (1.x, 2.x, 3.x).&amp;nbsp; So a 2.3 desktopVersion will not work with 3.x.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 20:50:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/targeting-multiple-versions-with-an-arcgis-pro/m-p/1279906#M9704</guid>
      <dc:creator>Wolf</dc:creator>
      <dc:date>2023-04-18T20:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: Targeting multiple versions with an ArcGIS Pro addin</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/targeting-multiple-versions-with-an-arcgis-pro/m-p/1279907#M9705</link>
      <description>&lt;P&gt;All 2.0 add-ins will load in any 2.x version of ArcGIS Pro so you don't have to rebuild the Add-In for every release. Version 3.0 is a breaking change and will require refactoring since it uses .Net 6 vs. Framework .Net 4.8.&lt;/P&gt;&lt;P&gt;Key controlling factor is the settings in our config.daml file. The version number shown should always be 2.0 for Add-Ins for that major release.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;&amp;lt;ArcGIS defaultAssembly="BasicMapTool2.dll" defaultNamespace="BasicMapTool2" 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="{aa226987-8efd-4d34-b606-3e731c8cd2ff}" version="2.0" desktopVersion="2.9.0"&amp;gt;
&amp;lt;Name&amp;gt;MapCoordinatesTool&amp;lt;/Name&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After I updated this to run under ArcGIS Pro 3.x the second line became:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;lt;AddInInfo id="{aa226987-8efd-4d34-b606-3e731c8cd2ff}" version="3.0" desktopVersion="3.0.3.36057"&amp;gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 20:55:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/targeting-multiple-versions-with-an-arcgis-pro/m-p/1279907#M9705</guid>
      <dc:creator>RichardDaniels</dc:creator>
      <dc:date>2023-04-18T20:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Targeting multiple versions with an ArcGIS Pro addin</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/targeting-multiple-versions-with-an-arcgis-pro/m-p/1279909#M9706</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2978"&gt;@RichardDaniels&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I applied the same values you are using for the AddInfo attributes:&amp;nbsp;version="2.0" desktopVersion="2.9.0".&lt;/P&gt;&lt;P&gt;Then I tried to load the add-in using ArcGIS Pro 2.6, and there is an error:&amp;nbsp;&lt;/P&gt;&lt;P&gt;"&lt;EM&gt;This add-in cannot be loaded because it targets an incompatible version of ArcGIS Pro. Current version 2.6 Add-in targets: 2.9&lt;/EM&gt;".&lt;/P&gt;&lt;P&gt;Am I missing anything?&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 21:02:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/targeting-multiple-versions-with-an-arcgis-pro/m-p/1279909#M9706</guid>
      <dc:creator>YukiNET</dc:creator>
      <dc:date>2023-04-18T21:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Targeting multiple versions with an ArcGIS Pro addin</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/targeting-multiple-versions-with-an-arcgis-pro/m-p/1279912#M9708</link>
      <description>The desktopVersion is the lowest Pro version you would like to support in your Add-In.&lt;BR /&gt;</description>
      <pubDate>Tue, 18 Apr 2023 21:04:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/targeting-multiple-versions-with-an-arcgis-pro/m-p/1279912#M9708</guid>
      <dc:creator>RichardDaniels</dc:creator>
      <dc:date>2023-04-18T21:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Targeting multiple versions with an ArcGIS Pro addin</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/targeting-multiple-versions-with-an-arcgis-pro/m-p/1279914#M9709</link>
      <description>&lt;P&gt;Thank you for the link&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/12882"&gt;@Wolf&lt;/a&gt;,&amp;nbsp;it contains all information that I need to proceed.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 21:06:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/targeting-multiple-versions-with-an-arcgis-pro/m-p/1279914#M9709</guid>
      <dc:creator>YukiNET</dc:creator>
      <dc:date>2023-04-18T21:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Targeting multiple versions with an ArcGIS Pro addin</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/targeting-multiple-versions-with-an-arcgis-pro/m-p/1279917#M9711</link>
      <description>&lt;P&gt;the AddInInfo attribute&amp;nbsp;&lt;SPAN&gt;desktopVersion="2.9.0" shows the MINUMUM 2.x release number your add-in is compatible with.&amp;nbsp; This means that your add-in only works with 2.9.0, 2.9.1, 2.9.2 ... 2.10.0 etc.&amp;nbsp; NOT with 2.6&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 21:09:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/targeting-multiple-versions-with-an-arcgis-pro/m-p/1279917#M9711</guid>
      <dc:creator>Wolf</dc:creator>
      <dc:date>2023-04-18T21:09:36Z</dc:date>
    </item>
  </channel>
</rss>

