<?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: ArcGIS Pro Generate esriAddinX error in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1331436#M10454</link>
    <description>&lt;P&gt;Okay, so it appears the solution to this was changing the Config.daml Build Action back to "Content, Do Not Copy" again. It's strange, because I hadn't started changing these settings until the issues start to occur, but apparently resetting it to this value fixed things.&lt;/P&gt;&lt;P&gt;Regardless, the Config.daml is still partially working, as it did update the version from 3.1 to 3.0; however, one of the images for my Add-In buttons will not display anymore.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 22 Sep 2023 13:13:28 GMT</pubDate>
    <dc:creator>MaxwellS</dc:creator>
    <dc:date>2023-09-22T13:13:28Z</dc:date>
    <item>
      <title>ArcGIS Pro Generate esriAddinX error</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1329280#M10408</link>
      <description>&lt;P&gt;So, I had a C# ArcGIS 2.7 Add-In using Visual Studio 2019 that I originally upgraded to 3.1 for Visual Studio 2022; however, I learned that I needed to upgrade to version 3.0 instead. Between the conversion to 3.1 and learning about this required downgrade, quite a few changes were made to the project, so I had to set up a workaround where I converted the older 2.7 Add-In to 3.0 and copied my code Add-In for 3.1 to this solution, fixing any changes going from 3.1 back to 3.0.&lt;/P&gt;&lt;P&gt;Anyways, I had built the solution and things were working for a bit, but now, when I build, I get the following output:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;Build started...
1&amp;gt;------ Build started: Project: TestProject, Configuration: Debug Any CPU ------
1&amp;gt;Test -&amp;gt; C:\Users\msinger\Documents\TestProject\TestButton\TestButton\bin\Debug\net6.0-windows\Test.dll
1&amp;gt;IntermediateOutputPath Name: obj\Debug\net6.0-windows\...
1&amp;gt;CleanFile Name: Test.csproj.FileListAbsolute.txt...
1&amp;gt;ProjectDir Name: C:\Users\msinger\Documents\TestProject\TestButton\TestButton\...
1&amp;gt;AssemblyName Name: Test...
1&amp;gt;TargetFileName Name: Test.dll...
1&amp;gt;RootNamespace: Test...
1&amp;gt;TargetFolder Name: bin\Debug\net6.0-windows\...
1&amp;gt;PackageType Name: Addin...
1&amp;gt;Install dir: C:\Program Files\ArcGIS\Pro\
1&amp;gt;ConvertToRelativePath Task, TargetDir: C:\Users\msinger\Documents\TestProject\TestButton\TestButton\bin\Debug\net6.0-windows\
1&amp;gt;Running PackageArcGISContents...
1&amp;gt;ZipIntermediatePath: Install...
1&amp;gt;Deploying Addin...
1&amp;gt;ArcGISFolder Name: C:\Program Files\ArcGIS\Pro\...
1&amp;gt;Execute RegisterAddIn.exe "" /s...
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========&lt;/LI-CODE&gt;&lt;P&gt;Where on line 18 it shows that there is no argument passed to RegisterAddIn.exe. When building the 3.1 version of the Add-In, I practically the same output, except for&lt;/P&gt;&lt;LI-CODE lang="c"&gt;1&amp;gt;Execute RegisterAddIn.exe "C:\Users\msinger\Documents\Summer2023\Test\TestButton\TestButton\bin\Debug\net6.0-windows\Test.esriAddinX" /s...&lt;/LI-CODE&gt;&lt;P&gt;Where the Test.esriAddinX is actually generated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've checked the Debug\net6.0-windows\ folder and found most of the same files that I can find in the .esriAddinX are there, but for some reason it's not then taking these files and packing it into a .esriAddinX. Is there some place I should look in order to fix the project not creating this .esriAddinX? Please let me know if more information is needed. Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2023 20:26:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1329280#M10408</guid>
      <dc:creator>MaxwellS</dc:creator>
      <dc:date>2023-09-15T20:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro Generate esriAddinX error</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1329412#M10409</link>
      <description>&lt;P&gt;There is no need to downgrade to 3.0 ... migrating your 2.7 project to 3.1 should work as well as migrating to 3.0.&amp;nbsp; If you have a 3.1 project and you want to develop / run on 3.0 then you have to make a change in the config.daml under the AddInInfo tag by changing the 'desktopVersion' attribute to 3.0.0.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;AddInInfo id="..." version="1.01" desktopVersion="3.0.36056"&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 17 Sep 2023 19:32:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1329412#M10409</guid>
      <dc:creator>Wolf</dc:creator>
      <dc:date>2023-09-17T19:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro Generate esriAddinX error</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1329660#M10410</link>
      <description>&lt;P&gt;Right, I remember seeing this solution on another post here; however, after further testing, I think I've found that my issue is that Config.daml is not updating in the Add-In. When I check the .esriAddInX, the changes I made to the version are not present (It's still identifying as 3.1). I've actually had this issue (The Config.daml not updating) off and on while working with ArcPro before, but I never could recall finding a specific solution. I tried changing the Build Action for the Config.daml to Copy Always, but nothing changes. Would you know how to correct this?&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 15:49:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1329660#M10410</guid>
      <dc:creator>MaxwellS</dc:creator>
      <dc:date>2023-09-18T15:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro Generate esriAddinX error</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1329765#M10411</link>
      <description>&lt;P&gt;I usually do a rebuild after i change the config.daml ... I can't recall why.&amp;nbsp; But if that doesn't work check if you have any other instances of ArcGIS Pro running.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 18:41:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1329765#M10411</guid>
      <dc:creator>Wolf</dc:creator>
      <dc:date>2023-09-18T18:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro Generate esriAddinX error</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1331286#M10448</link>
      <description>&lt;P&gt;Yeah, I tried rebuilding the project and the entire solution. I even went a little crazy and completely uninstalled ArcGIS Pro and the SDK in case something from 3.1 was lingering, but still, the Config.daml isn't updating.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2023 22:01:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1331286#M10448</guid>
      <dc:creator>MaxwellS</dc:creator>
      <dc:date>2023-09-21T22:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro Generate esriAddinX error</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1331436#M10454</link>
      <description>&lt;P&gt;Okay, so it appears the solution to this was changing the Config.daml Build Action back to "Content, Do Not Copy" again. It's strange, because I hadn't started changing these settings until the issues start to occur, but apparently resetting it to this value fixed things.&lt;/P&gt;&lt;P&gt;Regardless, the Config.daml is still partially working, as it did update the version from 3.1 to 3.0; however, one of the images for my Add-In buttons will not display anymore.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2023 13:13:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1331436#M10454</guid>
      <dc:creator>MaxwellS</dc:creator>
      <dc:date>2023-09-22T13:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro Generate esriAddinX error</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1331478#M10456</link>
      <description>&lt;P&gt;can you provide the Add-in button's config.daml line and also the location and the properties of the image that you are referencing in the config.daml?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2023 14:39:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1331478#M10456</guid>
      <dc:creator>Wolf</dc:creator>
      <dc:date>2023-09-22T14:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro Generate esriAddinX error</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1331568#M10460</link>
      <description>&lt;P&gt;The Config.daml line for the button is:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;/button&amp;gt;
&amp;lt;button id="TestButton" caption="TEST" className="TestButton" loadOnClick="true" smallImage="Images\Test16.png" largeImage="Images\Test32.png"&amp;gt;
  &amp;lt;tooltip heading="Test Tool"&amp;gt;Test Tool Description&amp;lt;/tooltip&amp;gt;
&amp;lt;/button&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;The image is within the root project folder Test\Test32.png (The same for Test16.png).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MaxwellS_0-1695405278759.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/81408iD5F19AB5391BB501/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MaxwellS_0-1695405278759.png" alt="MaxwellS_0-1695405278759.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The Test16.png is identical.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2023 17:55:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1331568#M10460</guid>
      <dc:creator>MaxwellS</dc:creator>
      <dc:date>2023-09-22T17:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro Generate esriAddinX error</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1578815#M12529</link>
      <description>&lt;P&gt;Because you have to &lt;STRONG&gt;increment&lt;/STRONG&gt; the Add-In date to something 'newer' that what is previously shown. If you don't, ArcGIS Pro will not load your NEW Add-In; rather it will used the cached copy from the last successful run.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 19:17:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/arcgis-pro-generate-esriaddinx-error/m-p/1578815#M12529</guid>
      <dc:creator>RichardDaniels</dc:creator>
      <dc:date>2025-01-24T19:17:52Z</dc:date>
    </item>
  </channel>
</rss>

