Skip to content

Commit e1bfd6a

Browse files
authored
WPF store package: update version minimums (#1092)
1 parent ffe0199 commit e1bfd6a

File tree

6 files changed

+105
-7
lines changed

6 files changed

+105
-7
lines changed
Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--ArcGIS Local Server Deployment Configuration-->
3+
<Packages>
4+
<!--This local server has support for ArcGIS Pro mpkx and gpkx packages. It is 64 bit only-->
5+
<Package id="Pro" name="ArcGIS Pro Compatible Server" enabled="false">
6+
<ChildPackages>
7+
<!--Including Microsoft C and C++ libraries in the runtime deployment allows for XCopy style deployments.
8+
Only include these if your setup is not installing the Microsoft redistribution package.-->
9+
<Package id="ProCRuntime" name="Microsoft C and C++ Runtime Libraries" enabled="false" />
10+
<!--Provides the ability to perform geoprocessing tasks via geoprocessing packages.-->
11+
<!--Geoprocessing packages must be created with ArcGIS Runtime support enabled.-->
12+
<Package id="ProGeoProcessing" name="Geoprocessing" enabled="false">
13+
<ChildPackages>
14+
<!--Adds 3D Analyst geoprocessing tools.-->
15+
<Package id="Pro3DAnalyst" name="3D Analyst" enabled="false" />
16+
<!--Provides the ability to use ArcGIS Locators-->
17+
<Package id="ProGeoCoding" name="Geocoding" enabled="false" />
18+
<!--Adds data consolidation, map packaging and create runtime content tools.-->
19+
<Package id="ProMapPackaging" name="Map Packaging" enabled="false" />
20+
<!--Adds the ability to produce results as Map Services.-->
21+
<Package id="ProMapServerResults" name="Map Server Results" enabled="false" />
22+
<!--Adds Network Analyst geoprocessing tools.-->
23+
<Package id="ProNetworkAnalyst" name="Network Analyst" enabled="false" />
24+
<!--Adds Spatial Analyst geoprocessing tools.-->
25+
<Package id="ProSpatialAnalyst" name="Spatial Analyst" enabled="false" />
26+
</ChildPackages>
27+
</Package>
28+
<!--Provides the ability to use Python scripts.-->
29+
<Package id="ProPythonScripting" name="Python Scripting" enabled="false" />
30+
<!--Provides additional vector and raster data format support.-->
31+
<Package id="ProAdditionalDataFormats" name="Additional Data Formats" enabled="false">
32+
<ChildPackages>
33+
<!--Provides additional raster file data format support.-->
34+
<Package id="ProRaster" name="Raster" enabled="false">
35+
<ChildPackages>
36+
<!--Provides support for ECW format Raster.-->
37+
<Package id="ProECWRasters" name="ECW Rasters" enabled="false" />
38+
<!--Provides support for Raster Mosaic Layers.-->
39+
<Package id="ProMosaicRasters" name="Mosaic Rasters" enabled="false" />
40+
</ChildPackages>
41+
</Package>
42+
<!--Provides additional vector file data format support.-->
43+
<Package id="ProVector" name="Vector" enabled="false" />
44+
<!--Adds support for direct connect to DBMS system that Esri supports. This option must be selected in conjunction with at least one of the following DBMS(s): DB2, Informix, Oracle, PostgreSQL, SQL Server, Netezza, HANA, Teradata or Alitbase.-->
45+
<!--SDE direct connect deployed. Specific database drivers also required.-->
46+
<Package id="ProSDE" name="SDE" enabled="false">
47+
<ChildPackages>
48+
<!--Adds support for direct connect to geodatabases stored in Alitbase.-->
49+
<!--Alitbase Drivers must be present on end users machine.-->
50+
<Package id="ProAlitbase" name="Alitbase" enabled="false" />
51+
<!--Adds support for direct connect to geodatabases stored in Dameng.-->
52+
<!--Dameng Drivers must be present on end users machine.-->
53+
<Package id="ProDameng" name="Dameng" enabled="false" />
54+
<!--Adds support for direct connect to geodatabases stored in DB2.-->
55+
<!--DB2 Drivers must be present on end users machine.-->
56+
<Package id="ProDB2" name="DB2" enabled="false" />
57+
<!-- Adds support for direct connect to geodatabases stored in Oracle.-->
58+
<!--Oracle Drivers must be present on end users machine.-->
59+
<Package id="ProOracle" name="Oracle" enabled="false" />
60+
<!--Adds support for direct connect to geodatabases stored in PostgreSQL.-->
61+
<!--PostgreSQL Drivers must be present on end users machine.-->
62+
<Package id="ProPostgreSQL" name="PostgreSQL" enabled="false" />
63+
<!--Adds support for direct connect to geodatabases stored in SAP HANA.-->
64+
<!--SAP HANA SQL Server Drivers must be present on end users machine.-->
65+
<Package id="ProSAPHANA" name="SAP HANA" enabled="false" />
66+
<!--Adds support for direct connect to geodatabases stored in SQL Server.-->
67+
<!--MS SQL Server Drivers must be present on end users machine.-->
68+
<Package id="ProSQLServer" name="SQL Server" enabled="false" />
69+
<!--Adds support for direct connect to geodatabases stored in SQL Server.-->
70+
<!--MS SQL Server Drivers must be present on end users machine.-->
71+
<Package id="ProSQLite" name="SQLite" enabled="false">
72+
<ChildPackages>
73+
<!--Adds support for SpatiaLite geometry type-->
74+
<Package id="ProSpatialLite" name="SpatiaLite" enabled="false" />
75+
</ChildPackages>
76+
</Package>
77+
<!--Adds support for direct connect to geodatabases stored in Teradata.-->
78+
<!--Teradata Drivers must be present on end users machine.-->
79+
<Package id="ProTeradata" name="Teradata" enabled="false" />
80+
</ChildPackages>
81+
</Package>
82+
</ChildPackages>
83+
</Package>
84+
<!--Adds more projections and geotransformations.-->
85+
<Package id="ProAdditionalProjectionEngineTransformations" name="Additional Projection Engine Transformations" enabled="false" />
86+
<!--Enables debugging options within the runtime.-->
87+
<!--Debugging options should only be used for testing purposes, and not deployed in final solutions.-->
88+
<Package id="ProDebug" name="Debug" enabled="false">
89+
<ChildPackages>
90+
<!--Adds support for runtime logging.-->
91+
<Package id="ProLogging" name="Logging" enabled="false" />
92+
</ChildPackages>
93+
</Package>
94+
</ChildPackages>
95+
</Package>
96+
</Packages>

src/WPF/ArcGISRuntime.WPF.StorePackage/ArcGISRuntime.WPF.StorePackage.wapproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@
3434
</PropertyGroup>
3535
<Import Project="$(WapProjPath)\Microsoft.DesktopBridge.props" />
3636
<PropertyGroup>
37+
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework>
3738
<ProjectGuid>13a60801-7b9a-4573-923f-9f2373e8bf84</ProjectGuid>
38-
<TargetPlatformVersion>10.0.18362.0</TargetPlatformVersion>
39-
<TargetPlatformMinVersion>10.0.18362.0</TargetPlatformMinVersion>
39+
<TargetPlatformVersion>10.0.19041.0</TargetPlatformVersion>
40+
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
4041
<DefaultLanguage>en-US</DefaultLanguage>
4142
<PackageCertificateKeyFile>ArcGISRuntime.WPF.StorePackage_TemporaryKey.pfx</PackageCertificateKeyFile>
4243
<GenerateAppInstallerFile>False</GenerateAppInstallerFile>

src/WPF/ArcGISRuntime.WPF.StorePackage/Package.appxmanifest

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap mp rescap">
3-
<Identity Name="Esri.ArcGISRuntimeSDKfor.NETSamplesWPF" Publisher="CN=Environmental Systems Research Institute Inc" Version="100.13.0.0" />
3+
<Identity Name="Esri.ArcGISRuntimeSDKfor.NETSamplesWPF" Publisher="CN=Environmental Systems Research Institute Inc" Version="100.15.0.0" />
44
<Properties>
55
<DisplayName>ArcGIS Runtime SDK for .NET Samples (WPF)</DisplayName>
66
<PublisherDisplayName>Esri, Inc.</PublisherDisplayName>
77
<Logo>Images\StoreLogo.png</Logo>
88
</Properties>
99
<Dependencies>
10-
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.18362.0" MaxVersionTested="10.0.19042.0" />
11-
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.18362.0" MaxVersionTested="10.0.19042.0" />
10+
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.19041.0" MaxVersionTested="10.0.19041.0" />
11+
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.19041.0" MaxVersionTested="10.0.19041.0" />
1212
<PackageDependency Name="Microsoft.VCLibs.140.00.UWPDesktop" MinVersion="14.0.24217.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
1313
</Dependencies>
1414
<Resources>

src/WPF/ArcGISRuntime.WPF.Viewer/ArcGISRuntime.WPF.Viewer.Net.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<PublishSingleFile Condition="'$(RuntimeIdentifier)' != ''">true</PublishSingleFile>
1616
<RuntimeIdentifiers>win-x64;win-x86</RuntimeIdentifiers>
1717
<Platforms>AnyCPU;x64;x86</Platforms>
18+
<SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion>
1819
</PropertyGroup>
1920

2021
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

src/WPF/ArcGISRuntime.WPF.Viewer/Properties/PublishProfiles/win-x64-release.pubxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
77
<PublishProtocol>FileSystem</PublishProtocol>
88
<Configuration>Release</Configuration>
99
<Platform>x64</Platform>
10-
<TargetFramework>net6.0-windows10.0.18362.0</TargetFramework>
10+
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework>
1111
<PublishDir>..\..\..\output\WPFNet\Release\net6\win-x64\publish\</PublishDir>
1212
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
1313
<SelfContained>true</SelfContained>

src/WPF/ArcGISRuntime.WPF.Viewer/Properties/PublishProfiles/win-x86-release.pubxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
77
<PublishProtocol>FileSystem</PublishProtocol>
88
<Configuration>Release</Configuration>
99
<Platform>x86</Platform>
10-
<TargetFramework>net6.0-windows10.0.18362.0</TargetFramework>
10+
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework>
1111
<PublishDir>..\..\..\output\WPFNet\Release\net6\win-x86\publish\</PublishDir>
1212
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
1313
<SelfContained>true</SelfContained>

0 commit comments

Comments
 (0)