ArcGIS Pro 1.2 SDK for .NET
Requirements
The requirements for the machine on which you develop your ArcGIS Pro add-ins are listed here.
ArcGIS Pro
- ArcGIS Pro 1.2
Supported platforms
- Windows 10 (Home, Pro, Enterprise, Education) (64 bit [EM64T])
- Windows 8.1 Basic, Professional, and Enterprise (64 bit [EM64T])
- Windows 8 Basic, Professional, and Enterprise (64 bit [EM64T])
- Windows 7 SP1 Ultimate, Enterprise, Professional, and Home Premium (64 bit [EM64T])
Supported .NET framework
- 4.5.6
- 4.5.2
- 4.5.1
- 4.5
Supported IDEs
- Visual Studio 2015 (Professional, Enterprise, and Community Editions)
- Visual Studio 2013 (Professional, Premium, Ultimate, and Community Editions)
Installing ArcGIS Pro SDK for .NET
ArcGIS Pro SDK for .NET can be downloaded and installed using either one of the following options:
- Download and install from within Visual Studio (recommended option)
- Download from MyEsri.com
Read the ProGuide: Installation and Upgrade for detailed installation instructions.
Release notes
ArcGIS Pro 1.2 SDK for .NET
These release notes describe details of the ArcGIS Pro 1.2 SDK for .NET release. Here you will find information about available functionality as well as known issues and limitations.
What's new
The following functionality is available at the ArcGIS Pro 1.2 SDK for .NET release:
1. The following four new templates have been added to ArcGIS Pro SDK for .NET:
C# | VB | Name |
---|---|---|
ArcGIS Pro Backstage Tab | ||
ArcGIS Pro Custom Control | ||
ArcGIS Pro Embeddable Control | ||
ArcGIS Pro Property Sheet |
Known issues
The following are known issues or limitations with the ArcGIS Pro 1.2 SDK for .NET release:
1. In a Visual Basic add-in, adding two items with the same name (for example, button.vb) in two different project folders causes a conflict in namespace compile error.
Visual Basic does not automatically create the .vb file prepopulated with the namespace. To fix it, open the button.vb in the folder, and enclose the Button class with the namespace. See the following example:
Namespace ProAppModule9.Test
Friend Class Button
Inherits Button
Protected Overrides Sub OnClick()
End Sub
End Class
End Namespace