Hello there, I am trying to build an extension using ArcGIS Pro SDK for .NET. I have ArcGIS Pro 3.3 and don't want to upgrade. In visual Studio when installing the extension, it always installs the latest version (3.4). Is there a way to install the SDK version 3.3?
I also tried installing these through the commend line but it says packages not found.
Install-Package Esri.ArcGISPro.SDK -Version 3.3.0.52636
Install-Package Esri.ArcGISPro.SDK.Utilities -Version 3.3.0.52636
Solved! Go to Solution.
Before installing the SDK, be sure to disable automatic extension updates in Visual Studio. Otherwise VS will push you right back to 3.4.
After that, head to the Github releases page (https://github.com/Esri/arcgis-pro-sdk/releases). If you scroll to the bottom of the 3.3 section and expand the Assets, you'll find the .vsix files.
Before installing the SDK, be sure to disable automatic extension updates in Visual Studio. Otherwise VS will push you right back to 3.4.
After that, head to the Github releases page (https://github.com/Esri/arcgis-pro-sdk/releases). If you scroll to the bottom of the 3.3 section and expand the Assets, you'll find the .vsix files.
That did the trick, thank you
Awesome! You're welcome.