I have been using Local Server SDK 100.12 (with arcgisruntime.localservices package 100.12 version), and I was able to load .ecw files without a problem.
When I upgraded to 100.14, suddenly my application became unable to load the ecw files. Then I checked the automatically created Deployment file (ArcGISLocalServer_100.14.AGSDeployment) and saw that there is no node with the id="ProECWRasters". ArcGISLocalServer_100.12.AGSDeployment file had this node. So I tried putting these lines manually into the deployment file (inside the child packages of the note with id="ProRaster"):
<!--Provides support for ECW format Raster.-->
<Package id="ProECWRasters" name="ECW Rasters" enabled="true" />
but the app still cannot load the ecw file. It does not raise any errors, just does nothing.
My question is, did something change for loading ECW files with Local Server 100.14? I was able to load with Local server 100.12 but now I cannot. What is the difference & what should I do in the code or in the deployment file to be able to load ecw files again?